This repository was archived by the owner on Aug 16, 2022. It is now read-only.
Open
Conversation
848bd71 to
bf32487
Compare
bf32487 to
e36e136
Compare
8fc8280 to
b0a8e95
Compare
b0a8e95 to
b19b273
Compare
b19b273 to
e2c624f
Compare
e2c624f to
b846d50
Compare
b846d50 to
c5d9a45
Compare
c5d9a45 to
f5c571e
Compare
f5c571e to
380b995
Compare
380b995 to
71cd2e6
Compare
1ec3369 to
7ad00c3
Compare
7ad00c3 to
7b0bab0
Compare
0abe00e to
c246c1b
Compare
c246c1b to
1741b81
Compare
54e8450 to
f27ba4e
Compare
f27ba4e to
bd0e415
Compare
bd0e415 to
d303439
Compare
774e9a3 to
a3c3026
Compare
a3c3026 to
fdd8d86
Compare
fdd8d86 to
852e599
Compare
3550d7c to
9a6b14a
Compare
9a6b14a to
4444eed
Compare
b9deb92 to
eccb3af
Compare
eccb3af to
a66058d
Compare
a66058d to
36e2ecf
Compare
36e2ecf to
386d973
Compare
386d973 to
885f324
Compare
885f324 to
91b538c
Compare
91b538c to
f687e2e
Compare
f687e2e to
1cedf75
Compare
1cedf75 to
0790ddc
Compare
0790ddc to
69da469
Compare
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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:
8.2.14->14.0.38.2.14->14.0.38.2.14->14.0.38.2.14->14.0.38.2.14->14.0.38.2.14->14.0.38.2.14->14.0.38.2.14->14.0.38.2.14->14.0.3Release Notes
angular/angular (@angular/animations)
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
Special Thanks
4javier, Andrew Kushnir, Cédric Exbrayat, Dylan Hunn, George Kalpakas, Hossein Mousavi, Jason Hendee, Joe Martin (Crowdstaffing), Kristiyan Kostadinov, Michael-Doner, Michal Materowski and Virginia Dooley
v13.3.2Compare Source
animations
Special Thanks
Alan Agius, Andrew Kushnir, Christoph Guttandin, Cédric Exbrayat, mgechev and piyush132000
v13.3.1Compare Source
13.3.1 (2022-03-30)
bazel
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.