-
Notifications
You must be signed in to change notification settings - Fork 0
fix(deps): update angular monorepo to v14 (major) #3
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
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/major-angular-monorepo
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or 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
9cc2bd5 to
1d6e097
Compare
b980284 to
56fd590
Compare
56fd590 to
0fb4eab
Compare
0fb4eab to
906565d
Compare
906565d to
c3b0e73
Compare
c3b0e73 to
106c3ea
Compare
106c3ea to
af937f5
Compare
af937f5 to
5c3d74f
Compare
5c3d74f to
f6a83b5
Compare
463d700 to
a12c4c5
Compare
a12c4c5 to
2056aab
Compare
2056aab to
dc3a9bd
Compare
dc3a9bd to
243ab5c
Compare
243ab5c to
bc40936
Compare
3945fc4 to
77a37d4
Compare
a05792f to
e820852
Compare
9f3bfd3 to
2f353e1
Compare
2f353e1 to
50f7cf4
Compare
6e63375 to
e020e0e
Compare
e020e0e to
9410a14
Compare
9410a14 to
64c3cb7
Compare
64c3cb7 to
4d41159
Compare
4d41159 to
f95e35b
Compare
f95e35b to
12f27b7
Compare
12f27b7 to
eb6d17e
Compare
eb6d17e to
f99ea5c
Compare
f99ea5c to
bb7ecfa
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:
~9.0.7->14.0.3^9.0.7->^9.0.7 || ^14.0.0~9.0.7->14.0.3~9.0.7->14.0.3~9.0.7->14.0.3^9.0.7->^9.0.7 || ^14.0.0~9.0.7->14.0.3~9.0.7->14.0.3~9.0.7->14.0.3~9.0.7->14.0.3~9.0.7->14.0.3Release Notes
angular/angular
v14.0.3Compare Source
animations
core
platform-server
Special Thanks
4javier, Aakash, Alan Agius, Andrew Kushnir, Aristeidis Bampakos, Dany Paredes, Derek Cormier, JoostK, Kristiyan Kostadinov, Paul Gschwendtner, Ramesh Thiruchelvam, behrooz bozorg chami, dario-piotrowicz, markostanimirovic, renovate[bot] and web-dave
v14.0.2Compare Source
14.0.2 (2022-06-15)
common
compiler-cli
rootDir(#46096)core
Special Thanks
Alex Rickabaugh, Andrew Scott, Badawi7, Daniel Schmitz, Derek Cormier, JoostK, Kevin Davila, Kristiyan Kostadinov, Paul Draper, Paul Gschwendtner, Tom Eustace, Totati, Younes Jaaidi, alefra, dario-piotrowicz, markostanimirovic, mgechev, piyush132000, sten-bone and vivekkoya
v14.0.1Compare Source
bazel
ng_packagerollup and type bundle actions (#46187)forms
Special Thanks
Adrien Crivelli, Alan Agius, Alex Rickabaugh, Andrew Kushnir, Andrew Scott, Dylan Hunn, Fabrizio Fallico, George Kalpakas, Jelle Bruisten, JoostK, Kristiyan Kostadinov, Krzysztof Platis, Paul Gschwendtner, Phalgun Vaddepalli, San Leen, dario-piotrowicz, mgechev and wellWINeo
v14.0.0Compare Source
Blog post "Angular v14 is now available".
Breaking Changes
animations
AnimationDriver.getParentElementmethod has become required, so anyimplementors of this interface are now required to provide an implementation
for this method. This breakage is unlikely to affect application developers,
as
AnimationDriveris not expected to be implemented in user code.common
Location does not depend on PlatformLocation anymore.
compiler
Keyframes names are now prefixed with the component's "scope name".
For example, the following keyframes rule in a component definition,
whose "scope name" is host-my-cmp:
@keyframes foo { ... }
will become:
@keyframes host-my-cmp_foo { ... }
Any TypeScript/JavaScript code which relied on the names of keyframes rules
will no longer match.
The recommended solutions in this case are to either:
NoneorShadowDomcore
Support for Node.js v12 has been removed as it will become EOL on 2022-04-30. Please use Node.js v14.15 or later.
TypeScript versions older than 4.6 are no longer supported.
Forms [email] input coercion
Forms [email] input value will be considered as true if it is defined with any value rather
than false and 'false'.
Since Ivy, TestBed doesn't use AOT summaries. The
aotSummariesfields in TestBed APIs were present, but unused. The fields were deprecated in previous major version and in v14 those fields are removed. TheaotSummariesfields were completely unused, so you can just drop them from the TestBed APIs usage.forms
Forms classes accept a generic.
Forms model classes now accept a generic type parameter. Untyped versions of these classes are available to opt-out of the new, stricter behavior.
objects with a length key set to zero will no longer validate as empty.
This is technically a breaking change, since objects with a key
lengthand value0will no longer validate as empty. This is a very minor change, and any reliance on this behavior is probably a bug anyway.http
Queries including + will now actually query for + instead of space.
Most workarounds involving custom codecs will be unaffected.
Possible server-side workarounds will need to be undone.
JSONP will throw an error when headers are set on a reques
JSONP does not support headers being set on requests. Before when
a request was sent to a JSONP backend that had headers set the headers
were ignored. The JSONP backend will now throw an error if it
receives a request that has any headers set. Any uses of JSONP
on requests with headers set will need to remove the headers
to avoid the error.
platform-browser
This change may cause a breaking change in unit tests that are implicitly depending on a specific
number and sequence of change detections in order for their assertions to pass.
This may break invalid calls to
TransferStatemethods.This tightens parameter types of
TransferStateusage, and is a minor breaking change which may reveal existing problematic calls.router
Route.pathMatchis now more strict. Places that usepathMatchwill likely need to be updated to have an explicitRoute/Routestype so that TypeScript does not infer the type asstring.Promisefrom theLoadChildrenCallback, the possible type is now restricted toType<any>|NgModuleFactory<any>rather thanany.initialNavigation: 'enabled'was deprecated in v11 and is replaced byinitialNavigation: 'enabledBlocking'.componentonActivatedRouteandActivatedRouteSnapshotincludes
string. In reality, this is not the case. The componentcannot be anything other than a component class.
initialUrlis set tostring|UrlTreebut in reality,the
Routeronly sets it to a value that will always beUrlTreeinitialUrlis documented as "The target URL passed into theRouter#navigateByUrl()call before navigation" but the valueactually gets set to something completely different. It's set to the
current internal
UrlTreeof the Router at the time navigationoccurs.
With this change, there is no exact replacement for the old value of
initialUrlbecause it was never intended to be exposed.Router.urlis likely the best replacement for this.In more specific use-cases, tracking the
finalUrlbetween successfulnavigations can also be used as a replacement.
initial set of routes are. Lazy loaded modules which have invalid Route
configs will now error. Note that this is only done in dev mode so
there is no production impact of this change.
UrlTree, the router would previously schedulethe redirect navigation within a
setTimeout. This timeout is now removed,which can result in test failures due to incorrectly written tests.
Tests which perform navigations should ensure that all timeouts are
flushed before making assertions. Tests should ensure they are capable
of handling all redirects from the original navigation.
before proceeding with the navigation and the Router would take the last
value emitted from the resolver.
The router now takes only the first emitted value by the resolvers
and then proceeds with navigation. This is now consistent with
Observablesreturned by other guards: only the first value is used.
zone.js
in TaskTrackingZoneSpec track a periodic task until it is cancelled
The breaking change is scoped only to the plugin
zone.js/plugins/task-tracking. If you usedTaskTrackingZoneSpecandchecked the pending macroTasks e.g. using
(this.ngZone as any)._inner ._parent._properties.TaskTrackingZone.getTasksFor('macroTask'), thenits behavior slightly changed for periodic macrotasks. For example,
previously the
setIntervalmacrotask was no longer tracked after itscallback was executed for the first time. Now it's tracked until
the task is explicitly cancelled, e.g with
clearInterval(id).Deprecations
common
ngModuleFactoryinput of theNgComponentOutletdirective is deprecated in favor of a newly addedngModuleinput. ThengModuleinput accepts references to the NgModule class directly, without the need to resolve module factory first.forms
initialValueIsDefaultoption has been deprecated and replaced with the otherwise-identicalnonNullableoption, for the sake of naming consistency.AbstractControlOptions and an async validators argument to a FormControl. Previously, the async validators would just be silently dropped, resulting in a probably buggy forms. Now, the constructor call is deprecated, and Angular will print a warning in devmode.router
resolverargument of theRouterOutletContract.activateWithfunction and theresolverfield of theOutletContextclass are deprecated. Passing component factory resolvers are no longer needed. TheComponentFactoryResolver-related symbols were deprecated in@angular/corepackage since v13.animations
AnimationDriver.getParentElementrequired (#45114)common
NgLocalizationtoken tree-shakable (#45118)compiler
compiler-cli
strictInjectionParametersrequirement (#44615)standaloneflag to runtime (#44973)forwardReffor component scopes (#46139)core
ApplicationRef.destroymethod (#45624)bootstrapApplicationfunction (#45674)importProvidersFromfunction (#45626)StandaloneServiceis retained after closure minification (#45783)<template>element (#43429)BrowserModuleproviders from being loaded twice (#45826)<ng-template>s (#46068)EnvironmentInjector(#45789)@NgModule.bootstrap(#45825)checkNoChangesmode to be tree-shaken in production (#45913)__ngContext__(#45051)Compiler,ApplicationRefandApplicationInitStatustree-shakable (#45102)IterableDiffersandKeyValueDifferstree-shakable (#45094)LOCALE_IDand other tokens fromApplicationModuletree-shakable (#45102)__ngContext__(#45172)aotSummariesfields in TestBed config (#45487)devtools tabs
forms
FormBuilder.nonNullable. (#45852)nonNullableoption toFormControlfor consistency.length: 0. (#33729)FormArray<T>instead ofFormArray<T[]>. (#44933)http
language-service
localize
migrations
Route/Routestype (#45084)ngcc
platform-browser
bootstrapApplication(#45885)platform-server
renderApplicationfunction (#45785)renderApplicationto moveappIdto options (#45844)router
EnvironmentInjectortoRouterOutlet.activateWith(#45597)Route.titlewith a configurableTitleStrategy(#43307)loadChildrento return aRoutearray (#45700)loadComponent(#45705)anyfromLoadChildrenCallbacktype (#45524)Navigation#initialUrlto match documentation and reality (#43863)service-worker
cacheOpaqueResponsesoption for data-groups (#44723)Special Thanks
Adrian Kunz, Alan Agius, AleksanderBodurri, Alex Rickabaugh, AlirezaEbrahimkhani, Amir Rustamzadeh, Andrew Kushnir, Andrew Scott, Chabbey François, Charles Lyding, Cédric Exbrayat, Daan De Smedt, David Schmidt, Derek Cormier, Dmitrij Kuba, Doug Parker, Dylan Hunn, Emma Twersky, George Kalpakas, George Looshch, Jan Kuehle, Jessica Janiuk, JiaLiPassion, JimMorrison723, Joe Martin (Crowdstaffing), Joey Perrott, JoostK, Kristiyan Kostadinov, Krzysztof Platis, Leosvel Pérez Espinosa, Maddie Klein, Mark Whitfeld, Martin Sikora, Michael-Doner, Michal Materowski, Minko Gechev, Paul Gschwendtner, Pawel Kozlowski, Payam Shahidi, Pusztai Tibor, Ricardo Mattiazzi Baumgartner, Roy Dorombozi, Ruslan Lekhman, Samuel Littley, Sergej Grilborzer, Sumit Arora, Tobias Speicher, Virginia Dooley, Zack Elliott, alirezaghey, ananyahs96, arturovt, cexbrayat, dario-piotrowicz, ivanwonder, kamikopi, markostanimirovic, markwhitfeld, mgechev, renovate[bot], twerske and zverbeta
v13.3.11Compare Source
Special Thanks
Andrew Scott, Billy Lando, George Kalpakas, Ian Gregory, Matt Shaffer, Rune Andersen Hartvig, dario-piotrowicz and mgechev
v13.3.10Compare Source
Special Thanks
A. J. Javier, Aristeidis Bampakos, J Rob Gant, Jerome Kruse, Joey Perrott, Nathan Nontell, Paul Gschwendtner, Roopesh Chinnakampalli, Thomas Mair, Tom Raithel, dario-piotrowicz and mgechev
v13.3.9Compare Source
This release contains API docs improvements.
Special Thanks
4javier, Bob Watson, Evan Lee, George Kalpakas, Joey Perrott, Pavan Kumar Jadda, celinetunc and mariu
v13.3.8Compare Source
language-service
Special Thanks
Andrew Scott, George Kalpakas and Joey Perrott
v13.3.7Compare Source
core
checkNoChangesmode to be tree-shaken in production (#45936)language-service
Special Thanks
Andrew Kushnir, Andrew Scott, George Kalpakas, JayMartMedia, JoostK, Paul Gschwendtner, Ted.chang, Thomas Mair, Will 保哥, dario-piotrowicz, mgechev and ᚷᛁᛟᚱᚷᛁ ᛒᚨᛚᚨᚲᚻᚨᛞᛉᛖ
v13.3.6Compare Source
Special Thanks
Andrew Kushnir, Andrew Scott, George Kalpakas, Paul Gschwendtner, Pawel Kozlowski, Ryan Day and dario-piotrowicz
v13.3.5Compare Source
13.3.5 (2022-04-27)
bazel
Special Thanks
Andrew Kushnir, George Kalpakas, Joey Perrott and dario-piotrowicz
v13.3.4Compare Source
core
language-service
Special Thanks
Andrew Kushnir, Andrew Scott, George Kalpakas, Ilya Marchik, Jeremy Elbourn, Kristiyan Kostadinov, Louis Gombert, Mangalraj, Marko Kaznovac, Paul Gschwendtner, Saurabh Kamble, dario-piotrowicz and ivanwonder
v13.3.3Compare Source
compiler
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.