-
-
Notifications
You must be signed in to change notification settings - Fork 11
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
fix(deps): update angular monorepo to v17 (major) - autoclosed #2323
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
033a65e
to
3a0ee36
Compare
e7cbae4
to
94f079c
Compare
94f079c
to
72df1f9
Compare
8f11b8b
to
b91050e
Compare
67cbd14
to
5c527fd
Compare
2203880
to
ea8e6f1
Compare
ddfa094
to
678a46e
Compare
8b34b2d
to
1298dc3
Compare
f4ea327
to
cb2c937
Compare
cb2c937
to
b8dd07b
Compare
b8dd07b
to
307c0de
Compare
61908d4
to
67110e7
Compare
67110e7
to
0c80962
Compare
0c80962
to
b0a32c6
Compare
84213de
to
38c2fc1
Compare
38c2fc1
to
4fe6c23
Compare
4fe6c23
to
acc1ef2
Compare
be98410
to
301e60f
Compare
a4da92a
to
76e873f
Compare
fcc5cb5
to
378d15e
Compare
378d15e
to
88deb04
Compare
88deb04
to
2935aad
Compare
2935aad
to
3d1959f
Compare
3d1959f
to
db8e8e3
Compare
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
15.2.9
->17.0.8
15.2.9
->17.0.8
15.2.9
->17.0.8
15.2.9
->17.0.8
15.2.9
->17.0.8
15.2.9
->17.0.8
15.2.9
->17.0.8
15.2.9
->17.0.8
15.2.9
->17.0.8
15.2.9
->17.0.8
Release Notes
angular/angular (@angular/animations)
v17.0.8
Compare Source
compiler
core
migrations
router
v17.0.7
Compare Source
compiler
compiler-cli
core
migrations
platform-browser
router
v17.0.6
Compare Source
compiler
compiler-cli
core
@for
loops (#53274)migrations
router
v17.0.5
Compare Source
core
migrations
@for
(#53238)router
v17.0.4
Compare Source
common
load
on image once it fails to load (#52990)compiler
compiler-cli
core
getDeferBlocks
is invoked in tests (#52973)migrations
v17.0.3
Compare Source
animations
core
http
content-type
to set the blobtype
. (#52840)migrations
v17.0.2
Compare Source
compiler-cli
core
@for
(#52697)v17.0.1
Compare Source
http
migrations
Web Frameworks: the internet frontier.
These are the voyages of the framework Angular.
Its continuing mission:
To explore strange, new technologies.
To seek out new users and new applications.
To boldly go where no web framework has gone before.
In honor of v17.0.1
Live long and prosper 🖖🏻
v17.0.0
Compare Source
Blog post "Angular v17 is now available".
Breaking Changes
Node.js v16 support has been removed and the minimum support version has been bumped to 18.13.0.
Node.js v16 is planned to be End-of-Life on 2023-09-11. Angular will stop supporting Node.js v16 in Angular v17. For Node.js release schedule details, please see: https://github.com/nodejs/release#release-schedule
common
migrating from the previously used ==. NgSwitch expressions and / or
individual condition values need adjusting to this stricter equality
check. The added warning message should help pinpointing NgSwitch
usages where adjustements are needed.
core
Angular now required
zone.js
version~0.14.0
Versions of TypeScript older than 5.2 are no longer supported.
The
mutate
method was removed from theWritableSignal
interface and completelydropped from the public API surface. As an alternative please use the update method and
make immutable changes to the object.
Example before:
Example after:
The
mutate
method was removed from theWritableSignal
interface and completelydropped from the public API surface. As an alternative please use the update method and
make immutable changes to the object.
Example before:
Example after:
OnPush
components that are created dynamically nowonly have their host bindings refreshed and
ngDoCheck run
during changedetection if they are dirty.
Previously, a bug in the change detection would result in the
OnPush
configuration of dynamically created components to be ignored when
executing host bindings and the
ngDoCheck
function. This israrely encountered but can happen if code has a handle on the
ComponentRef
instance and updates values read in theOnPush
component template without then calling either
markForCheck
ordetectChanges
on that component'sChangeDetectorRef
.platform-browser
REMOVE_STYLES_ON_COMPONENT_DESTROY
default value is nowtrue
. This causes CSS of components to be removed from the DOM when destroyed. You retain the previous behaviour by providing theREMOVE_STYLES_ON_COMPONENT_DESTROY
injection token.The
withNoDomReuse()
function was removed from the public API. If you need to disable hydration, you can exclude theprovideClientHydration()
call from provider list in your application (which would disable hydration features for the entire application) or usengSkipHydration
attribute to disable hydration for particular components. See this guide for additional information: https://angular.io/guide/hydration#how-to-skip-hydration-for-particular-components.router
Absolute redirects no longer prevent further redirects.
Route configurations may need to be adjusted to prevent infinite
redirects where additional redirects were previously ignored after an
absolute redirect occurred.
Routes with
loadComponent
would incorrectly causechild routes to inherit their data by default. The default
paramsInheritanceStrategy
isemptyOnly
. If parent data should beinherited in child routes, this should be manually set to
always
.urlHandlingStrategy
has been removed from the Router public API.This should instead be configured through the provideRouter or RouterModule.forRoot APIs.
The following Router properties have been removed from
the public API:
These should instead be configured through the
provideRouter
orRouterModule.forRoot
APIs.The
setupTestingRouter
function has been removed. UseRouterModule.forRoot
orprovideRouter
to setup theRouter
fortests instead.
malformedUriErrorHandler
is no longer available inthe
RouterModule.forRoot
options. URL parsing errors should instead behandled in the
UrlSerializer.parse
method.zone.js
Deep and legacy
dist/
imports likezone.js/bundles/zone-testing.js
andzone.js/dist/zone
are no longer allowed.zone-testing-bundle
andzone-testing-node-bundle
are also no longer part of the package.The proper way to import
zone.js
andzone.js/testing
is:Deprecations
animations
AnimationDriver.NOOP
symbol is deprecated, useNoopAnimationDriver
instead.core
ChangeDetectorRef.checkNoChanges
is deprecated.Test code should use
ComponentFixture
instead ofChangeDetectorRef
.Application code should not call
ChangeDetectorRef.checkNoChanges
directly.Swapping out the context object for
EmbeddedViewRef
is no longer supported. Support for this was introduced with v12.0.0, but
this pattern is rarely used. There is no replacement, but you can use
simple assignments in most cases, or
Object.assign , or alternatively still replace the full object by using a
Proxy(see
NgTemplateOutlet`as an example).
Also adds a warning if the deprecated
NgProbeToken
The
NgProbeToken
is not used internally since the transition from View Engine to Ivy. The token has no utility and can be removed from applications and libraries.animations
AnimationDriver.NOOP
(#51843)benchpress
common
DatePipeConfig
(#51287)compiler
compiler-cli
core
ChangeDetectorRef.checkNoChanges
(#52431)CompilerOptions.useJit
andCompilerOptions.missingTranslation
. (#49672)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR has been generated by Mend Renovate. View repository job log here.