Build(deps): Bump @angular/compiler from 18.2.6 to 18.2.7 in /angular
Bumps @angular/compiler from 18.2.6 to 18.2.7.
Release notes
Sourced from @angular/compiler
's releases.
v18.2.7
18.2.7 (2024-10-02)
common
Commit Description execute checks and remove placeholder when image is already loaded (#55444) prevent warning about oversize image twice (#58021) skip checking whether SVGs are oversized (#57966) compiler-cli
Commit Description correctly get the type of nested function call expressions (#57010) core
Commit Description provide flag to opt into manual cleanup for after render hooks (#57917) http
Commit Description cleanup JSONP script listeners once loading completed (#57877) migrations
Commit Description delete constructor if it only has super call (#58013) upgrade
Commit Description support input signal bindings (#57020)
Changelog
Sourced from @angular/compiler
's changelog.
18.2.7 (2024-10-02)
common
Commit Type Description 249d0260f9 fix execute checks and remove placeholder when image is already loaded (#55444) 46a2ad39f5 fix prevent warning about oversize image twice (#58021) 8f2b0ede59 fix skip checking whether SVGs are oversized (#57966) compiler-cli
Commit Type Description 901c1e1a7f fix correctly get the type of nested function call expressions (#57010) core
Commit Type Description 2f347ef8fc fix provide flag to opt into manual cleanup for after render hooks (#57917) http
Commit Type Description ca637fe6a9 fix cleanup JSONP script listeners once loading completed (#57877) migrations
Commit Type Description b9d846dad7 fix delete constructor if it only has super call (#58013) upgrade
Commit Type Description e40a4fa3c7 fix support input signal bindings (#57020) 19.0.0-next.7 (2024-09-25)
Breaking Changes
core
Changes to effect timing which generally has two implications:
effects which are triggered outside of change detection run as part of the change detection process instead of as a microtask. Depending on the specifics of application/test setup, this can result in them executing earlier or later (or requiring additional test steps to trigger; see below examples).
effects which are triggered during change detection (e.g. by input signals) run earlier, before the component's template.
We've seen a few common failure cases:
- Tests which used to rely on the
Promise
timing of effects now need toawait whenStable()
or call.detectChanges()
in order for effects to run.
... (truncated)
Commits
- See full diff in compare view
Dependabot commands
You can trigger Dependabot actions by commenting on this MR
-
$dependabot recreate
will recreate this MR rewriting all the manual changes and resolving conflicts