Change record status: 
Project: 
Introduced in branch: 
8.4.x
Introduced in version: 
8.4.0
Description: 

The typehint for the request parameter of CurrentPathStack::getPath() and CurrentPathStack::setPath() is changed to Symfony\Component\HttpFoundation\Request.

CurrentPath already relied on having a Request object and using a different parameter type could previously have led to fatal errors, so this change simply makes the requirement explicit. Most modules successfully using this API should not be impacted by this change.

Before

  public function getPath($request = NULL) {
  public function setPath($path, $request = NULL) {

After

  public function getPath(Request $request = NULL) {
  public function setPath($path, Request $request = NULL) {
Impacts: 
Module developers
Updates Done (doc team, etc.)
Online documentation: 
Not done
Theming guide: 
Not done
Module developer documentation: 
Not done
Examples project: 
Not done
Coder Review: 
Not done
Coder Upgrade: 
Not done
Other: 
Other updates done