-
Notifications
You must be signed in to change notification settings - Fork 26.5k
fix(router): Remove deprecated Router properties #51502
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Nit: You could also update the deprecation guide in this PR also. |
This commit removes deprecated properties on the Router. These are meant to be configured through DI and not meant to be changed during runtime. BREAKING CHANGE: The following Router properties have been removed from the public API: - canceledNavigationResolution - paramsInheritanceStrategy - titleStrategy - urlUpdateStrategy - malformedUriErrorHandler These should instead be configured through the `provideRouter` or `RouterModule.forRoot` APIs.
5cfbfb0
to
601fc14
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Reviewed-for: public-api
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed-for: public-api
This PR was merged into the repository by commit c62e680. |
This commit removes deprecated properties on the Router. These are meant to be configured through DI and not meant to be changed during runtime. BREAKING CHANGE: The following Router properties have been removed from the public API: - canceledNavigationResolution - paramsInheritanceStrategy - titleStrategy - urlUpdateStrategy - malformedUriErrorHandler These should instead be configured through the `provideRouter` or `RouterModule.forRoot` APIs. PR Close angular#51502
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
This commit removes deprecated properties on the Router. These are meant to be configured through DI and not meant to be changed during runtime. BREAKING CHANGE: The following Router properties have been removed from the public API: - canceledNavigationResolution - paramsInheritanceStrategy - titleStrategy - urlUpdateStrategy - malformedUriErrorHandler These should instead be configured through the `provideRouter` or `RouterModule.forRoot` APIs. PR Close angular#51502
This commit removes deprecated properties on the Router. These are meant to be configured through DI and not meant to be changed during runtime.
BREAKING CHANGE: The following Router properties have been removed from the public API:
These should instead be configured through the
provideRouter
orRouterModule.forRoot
APIs.