Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 7, 2025

This PR contains the following updates:

Package Change Age Confidence
@angular/common (source) 20.0.5 -> 20.3.6 age confidence
@angular/compiler (source) 20.0.5 -> 20.3.6 age confidence
@angular/core (source) 20.0.5 -> 20.3.6 age confidence
@angular/platform-browser (source) 20.0.5 -> 20.3.6 age confidence

Release Notes

angular/angular (@​angular/common)

v20.3.6

Compare Source

core
Commit Type Description
911d6822cb fix update animation scheduling (#​64441)
platform-browser
Commit Type Description
2ece42866d fix DomEventsPlugin should always be the last plugin to be called for supports(). (#​50394)

v20.3.5

Compare Source

compiler-cli
Commit Type Description
8dec92ff9f fix capture metadata for undecorated fields (#​63957) (#​64317)
c2e817b0ef perf fix performance of "interpolated signal not invoked" check (#​64410)
core
Commit Type Description
f15cfa4cc4 fix fixes regression in animate.leave function bindings (#​64413)
d54dd674ca fix Prevents early style pruning with leave animations (#​64335)
migrations
Commit Type Description
554573e524 fix migrating input with more than 1 usage in a method (#​64367)
2c79ca0b57 fix remove error for no matching files in control flow migration (#​64253) (#​64314)
router
Commit Type Description
6e4bcc7d22 fix Scroll restoration should use instant scroll behavior for traversals (#​64299)

v20.3.4

Compare Source

core
Commit Type Description
853ed169a8 fix ensure missing leave animations don't queue leave animations (#​64226)
6fed986b7a fix Fixes animations in conjunction with content projection (#​63776)
76fe5599fe fix handle undefined CSS time values in parseCssTimeUnitsToMs function (#​64181)
3b959105be fix prevent early exit from leave animations when multiple transitions are present (#​64225)
migrations
Commit Type Description
65884895ff fix preserve component imports when pruning NgModules in standalone migration (#​64186)

v20.3.3

Compare Source

compiler
Commit Type Description
f51ab32fb3 fix recover template literals with broken expressions (#​64150)
core
Commit Type Description
542cd0019a fix do not rename ARIA property bindings to attributes (#​64089)
0e928fbc4a fix Fixes animations in conjunction with content projection (#​63776)
e5157bd933 fix prevents unintended early termination of leave animations and hoisting (#​64088)
migrations
Commit Type Description
1710cbd7d4 fix handle shorthand property declarations in NgModule (#​64160)
77b6305a4b fix skip migration for inputs with 'this' references (#​64142)

v20.3.2

Compare Source

compiler-cli
Commit Type Description
ba40153ac0 fix capture metadata for undecorated fields (#​63904)
1d4f81c8ee fix resolve import alias in defer blocks (#​63966)
core
Commit Type Description
9515a70933 fix fix narrowing of Resource.hasValue() (#​63994)
e78451cf8a fix prevent animations renderer from impacting animate.leave (#​63921)
forms
Commit Type Description
1fd8d5d446 fix Emit FormResetEvent when resetting control (#​64034)
migrations
Commit Type Description
16d0d43ad4 fix handle import aliases to the same module name (#​63934)
3ebaeccb46 fix handle reused templates in control flow migration (#​63996)

v20.3.1

Compare Source

compiler
Commit Type Description
7fb5a8087e fix Add support for aria-invalid (#​63748)
compiler-cli
Commit Type Description
8843707919 fix only bind inputs that are part of microsyntax to a structural directive (#​52453)
38c9921ff3 fix signal not invoked diagnostic not raised when input has same name in template (#​63754)
core
Commit Type Description
802dbcc2a0 fix prevent animation events from being cleaned up on destroy (#​63414)
3ec8a5c753 fix Prevent leave animations on a move operation (#​63745)
migrations
Commit Type Description
6e54bdfdcb fix fix route-lazy-loading migration (#​63818)

v20.3.0

Compare Source

Breaking Changes

core
  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9)

Commit Type Description
a3f808d7c8 fix remove refresh button from transfer state tab (#​63592)
core
Commit Type Description
6117ccee2e feat introduce BootstrapContext for improved server bootstrapping (#​63636)

v20.2.4

Compare Source

core
Commit Type Description
dc64f3e478 fix Fixed inject migration schematics for migrate destructured properties (#​62832)
platform-server
Commit Type Description
d1d32db972 fix prevent false warning for duplicate state serialization (#​63525)

v20.2.3

Compare Source

compiler
Commit Type Description
479a919f42 fix fixes regression with event parsing and animate prefix (#​63470)
core
Commit Type Description
f87fad3fff fix avoid injecting internal error handler from a destroyed injector (#​62275)
114906d2d6 fix Fix cancellation of animation enter classes (#​63442)
596b545130 fix Prevent an error on cleanup when an rxResource stream threw before returning an Observable (#​63342)

v20.2.2

Compare Source

compiler
Commit Type Description
d7b6045d61 fix fixes animations on elements with structural directives (#​63390)
core
Commit Type Description
6c421ed65d fix Ensures @for loop animations never get cancelled (#​63328)
9093e0e132 fix fix memory leak with leaving nodes tracking (#​63328)
c8f07daf8f fix Fixes animate.leave binding to a string with spaces (#​63366)

v20.2.1

Compare Source

compiler
Commit Type Description
a28672fb70 fix Keep paraenthesis in Nullish + Boolean expression. (#​63292)

v20.2.0

Compare Source

Deprecations

animations
core
router
  • The Router.getCurrentNavigation method is deprecated. Use the Router.currentNavigation signal instead.
  • The Router.getCurrentNavigation method is deprecated. Use the Router.currentNavigation signal instead.
animations
Commit Type Description
9766116cea refactor deprecate the animations package (#​62795)
compiler
Commit Type Description
7767aa640c fix allow more characters in square-bracketed attribute names (#​62742)
7b51728813 fix fixes animation event host bindings not firing (#​63217)
compiler-cli
Commit Type Description
5abfe4a899 feat add diagnostic for uninvoked functions in text interpolation (#​59191)
c4917074f1 fix display proper function in NG8117 message (#​62842)
812463c563 fix Ignore diagnostics on ngTemplateContextGuard lines in TCB (#​63054)
45b030b5ce fix prevent dom event assertion in TCB generation on older angular versions (#​63053)
core
Commit Type Description
6b1f4b9e8b feat add enter and leave animation instructions (#​62682)
cec91c0035 feat add option to infer the tag names of components in tests (#​62283)
141bb75ff2 feat Promote zoneless to stable (#​62699)
4138aca91f feat render ARIA property bindings as attributes (#​62630)
a409534d6c feat support as aliases on else if blocks (#​63047)
745ea44394 feat support TypeScript 5.9 (#​62541)
593cc8a368 fix checks if body exists before continuing (#​62768)
bdc31675b7 fix ensure animate events do not have duplicate elements (#​63216)
de3a0c5cf3 fix Fix animate.enter class removal when composing classes (#​62981)
6597ac0af7 fix fix support for space separated strings in leave animations (#​62979)
ebd622b344 fix fixes empty animations when recalculating styles (#​63007)
455b147488 fix fixes timing issues with enter animations (#​62925)
f9d73cc687 fix handle cases where classes added have no animations (#​63242)
6a1184600c fix prevents duplicate nodes when @if toggles with leave animations (#​63048)
063b5e166f fix switch check to documentElement with chaining (#​62773)
320de4e96d refactor deprecate animations field on component interface (#​62895)
forms
Commit Type Description
c353497a01 feat add support for pushing an array of controls to formarray (#​57102)
http
Commit Type Description
0984b30388 feat Add redirected property to HttpResponse and HttpErrorResponse (#​62675)
be811fee79 feat add referrer & integrity support for fetch requests in httpResource (#​62461)
1cf9d9064c feat Add support for fetch referrer & integrity options in HttpClient (#​62417)
1408baff45 fix Add missing timeout and transferCache options to HttpClient (#​62586)
language-service
Commit Type Description
c81e345e72 feat support auto-import for attribute completions (#​62797)
d64dd27a02 feat support to report the deprecated API in the template (#​62054)
591c7e2ec8 fix Support to resolve the re-export component. (#​62585)
platform-browser
Commit Type Description
52b8e07d6e feat Warns on conflicting hydration and blocking navigation (#​62963)
router
Commit Type Description
d00b3fed58 feat add a currentNavigation signal to the Router service. (#​62971)
687c374826 feat add a currentNavigation signal to the Router service. (#​63011)
9c45c322d1 fix ensure preloaded components are properly activated (#​62502)
service-worker
Commit Type Description
8255e0cf15 feat add messageerror event handling and logging (#​62834)
5220b51e75 feat Adds for type in provideServiceWorker (#​62831)
4ac6171b09 feat Adds support for updateViaCache in provideServiceWorker (#​62721)
b65c3d5e19 feat Improves storage full detection in data caching (#​62737)
3b214d2040 feat Logs unhandled promise rejections in service worker (#​63059)
6d011687ec feat notify clients about version failures (#​62718)

v20.1.8

Compare Source

compiler
Commit Type Description
691f5ed033 fix error when ng-content fallback has translated children (#​63156)
b1dec9bc50 fix incorrect source span for expression AST inside template attribute (#​63175)
compiler-cli
Commit Type Description
cda402f1d8 fix account for expression with type arguments during HMR extraction (#​63261)

v20.1.7

Compare Source

compiler
Commit Type Description
d9e37908a5 fix incorrect spans for AST inside input value with leading space (#​63082)
compiler-cli
Commit Type Description
4aa120ac00 fix error when type checking host bindings of generic directive (#​63061)
core
Commit Type Description
322042c5b3 fix destroying the effect on afterRenderEffect (#​63001)
router
Commit Type Description
5fd79424e3 fix attempt to resolve component resources in JIT mode (#​63062)

v20.1.6

Compare Source

v20.1.5

Compare Source

compiler-cli
Commit Type Description
3b2e8efcac fix correctly type check host listeners to own outputs (#​62965)
core
Commit Type Description
c9f3976eba fix properly recognize failed fetch responses when loading external resources in JIT (#​62992)
http
Commit Type Description
ae443f8eb0 fix Reset headers, progress, and statusCode when using set() in HttpResource (#​62873)
migrations
Commit Type Description
7a5851e4b0 fix incorrect filtering in inject migration (#​62913)

v20.1.4

Compare Source

compiler
Commit Type Description
db3c5826ee fix exclude more safe reads expression from 2way-binding (#​62852)
core
Commit Type Description
c633b63e56 fix update symbols for new signals api (#​62284)
http
Commit Type Description

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

coderabbitai bot commented Jul 7, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@ellipsis-dev ellipsis-dev bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

Looks good to me! 👍

Reviewed everything up to de5d3a8 in 34 seconds. Click for details.
  • Reviewed 34 lines of code in 2 files
  • Skipped 1 files when reviewing.
  • Skipped posting 2 draft comments. View those below.
  • Modify your settings and rules to customize what types of comments Ellipsis leaves. And don't forget to react with 👍 or 👎 to teach Ellipsis.
1. packages/unuse-angular/package.json:33
  • Draft comment:
    Angular devDependencies updated from 20.0.5 to 20.0.6. Verify release notes for any necessary migration steps.
  • Reason this comment was not posted:
    Confidence changes required: 0% <= threshold 50% None
2. packages/unuse/package.json:34
  • Draft comment:
    Angular devDependencies updated to 20.0.6; ensure consistency with peerDependencies (>=20).
  • Reason this comment was not posted:
    Confidence changes required: 0% <= threshold 50% None

Workflow ID: wflow_i1IHUnh23Xf2yYUi

You can customize Ellipsis by changing your verbosity settings, reacting with 👍 or 👎, replying to comments, or adding code review rules.

Copy link
Contributor

github-actions bot commented Jul 7, 2025

Coverage Report

Status Category Percentage Covered / Total
🔴 Lines 83.17% (🎯 90%)
🟰 ±0%
1261 / 1516
🔴 Statements 83.17% (🎯 90%)
🟰 ±0%
1261 / 1516
🔴 Functions 81.55% (🎯 90%)
🟰 ±0%
84 / 103
🟢 Branches 86.56% (🎯 85%)
🟰 ±0%
348 / 402
File Coverage
File Stmts Branches Functions Lines Uncovered Lines
Unchanged Files
packages/unuse-angular/src/index.ts 94.2% 100% 83.33% 94.2% 143-146
packages/unuse-react/src/index.ts 69.86% 68.18% 100% 69.86% 49-55, 58-71, 139-143, 152
packages/unuse-reactivity/src/index.ts 100% 100% 100% 100%
packages/unuse-reactivity/src/unComputed/index.ts 96% 93.33% 100% 96% 78-79
packages/unuse-reactivity/src/unEffect/index.ts 100% 100% 100% 100%
packages/unuse-reactivity/src/unEffectScope/index.ts 100% 100% 100% 100%
packages/unuse-reactivity/src/unReactiveSystem/index.ts 87.41% 88.88% 80% 87.41% 38-44, 92-93, 96-97, 100-103, 154-155, 188-189
packages/unuse-reactivity/src/unSignal/index.ts 100% 100% 100% 100%
packages/unuse-reactivity/src/unWatch/index.ts 100% 100% 100% 100%
packages/unuse-solid/src/index.ts 83.09% 86.95% 100% 83.09% 52-59, 69, 141-145
packages/unuse-vue/src/index.ts 100% 100% 100% 100%
packages/unuse/src/index.ts 0% 0% 0% 0% 1-15
packages/unuse/src/_framework/index.ts 81.53% 62.5% 100% 81.53% 48-49, 67-68, 76-77, 85-86, 94-95, 102-103
packages/unuse/src/_testUtils/angular.ts 100% 100% 100% 100%
packages/unuse/src/_testUtils/react.ts 100% 100% 100% 100%
packages/unuse/src/_testUtils/solid.ts 100% 100% 100% 100%
packages/unuse/src/_testUtils/vue.ts 100% 100% 100% 100%
packages/unuse/src/isClient/index.ts 100% 0% 100% 100%
packages/unuse/src/isObject/index.ts 100% 100% 100% 100%
packages/unuse/src/isWorker/index.ts 66.66% 0% 100% 66.66% 5
packages/unuse/src/toArray/index.ts 100% 50% 100% 100%
packages/unuse/src/toUnSignal/index.ts 87.71% 92.85% 100% 87.71% 81-87, 98-99, 113-120, 130
packages/unuse/src/tryOnScopeDispose/index.ts 77.77% 80% 50% 77.77% 11-14, 23-24, 35-36, 40-41
packages/unuse/src/unAccess/index.ts 73% 80% 66.66% 73% 43-44, 48-49, 66-67, 71, 80-81, 84-93, 97-98, 104-105, 114-115, 118-119, 122-123
packages/unuse/src/unRefElement/index.ts 75% 33.33% 100% 75% 29, 36-37
packages/unuse/src/unResolve/index.ts 92.66% 97.22% 71.42% 92.66% 71-72, 93-94, 125-128
packages/unuse/src/useEventListener/index.ts 96.34% 86.66% 100% 96.34% 192-193, 198
packages/unuse/src/useIntervalFn/index.ts 100% 100% 100% 100%
packages/unuse/src/useToggle/index.ts 100% 100% 100% 100%
packages/unuse/src/useWebSocket/index.ts 46.66% 41.66% 33.33% 46.66% 161-163, 203-212, 216-218, 222-224, 233-235, 244-256, 262-263, 270-275, 278-308, 311-312, 315-326, 330-355, 367-368
Generated in workflow #360 for commit 2f9960f by the Vitest Coverage Report Action

@renovate renovate bot force-pushed the renovate/angular branch from de5d3a8 to ce4d721 Compare July 9, 2025 20:36
@renovate renovate bot changed the title chore(deps): update angular to v20.0.6 chore(deps): update angular to v20.1.0 Jul 9, 2025
Copy link

changeset-bot bot commented Jul 9, 2025

⚠️ No Changeset found

Latest commit: 2f9960f

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/angular branch from ce4d721 to c84a209 Compare July 16, 2025 19:43
@renovate renovate bot changed the title chore(deps): update angular to v20.1.0 chore(deps): update angular to v20.1.1 Jul 16, 2025
Copy link

socket-security bot commented Jul 16, 2025

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Added@​angular/​platform-browser@​20.3.6100100759780
Added@​angular/​common@​20.3.6100100809760
Added@​angular/​compiler@​20.3.61001007997100
Added@​angular/​core@​20.3.6100100809780

View full report

@renovate renovate bot force-pushed the renovate/angular branch from c84a209 to 70be869 Compare July 18, 2025 01:33
@renovate renovate bot changed the title chore(deps): update angular to v20.1.1 chore(deps): update angular to v20.1.2 Jul 18, 2025
@renovate renovate bot force-pushed the renovate/angular branch from 70be869 to 3892cc5 Compare July 23, 2025 22:46
@renovate renovate bot changed the title chore(deps): update angular to v20.1.2 chore(deps): update angular to v20.1.3 Jul 23, 2025
@renovate renovate bot force-pushed the renovate/angular branch from 3892cc5 to 8afc8fe Compare July 31, 2025 12:00
@renovate renovate bot changed the title chore(deps): update angular to v20.1.3 chore(deps): update angular to v20.1.4 Jul 31, 2025
@renovate renovate bot force-pushed the renovate/angular branch from 8afc8fe to 9e60dea Compare August 6, 2025 17:42
@renovate renovate bot changed the title chore(deps): update angular to v20.1.4 chore(deps): update angular to v20.1.5 Aug 6, 2025
@renovate renovate bot force-pushed the renovate/angular branch from 9e60dea to 22b0316 Compare August 6, 2025 21:25
@renovate renovate bot changed the title chore(deps): update angular to v20.1.5 chore(deps): update angular to v20.1.6 Aug 6, 2025
@renovate renovate bot force-pushed the renovate/angular branch from 22b0316 to 705b45f Compare August 13, 2025 21:03
@renovate renovate bot changed the title chore(deps): update angular to v20.1.6 chore(deps): update angular to v20.1.7 Aug 13, 2025
@renovate renovate bot force-pushed the renovate/angular branch from 705b45f to 3ec2f04 Compare August 20, 2025 19:01
@renovate renovate bot changed the title chore(deps): update angular to v20.1.7 chore(deps): update angular to v20.2.0 Aug 20, 2025
@renovate renovate bot force-pushed the renovate/angular branch from 3ec2f04 to 48792b6 Compare August 21, 2025 17:57
@renovate renovate bot changed the title chore(deps): update angular to v20.2.0 chore(deps): update angular to v20.2.1 Aug 21, 2025
@renovate renovate bot force-pushed the renovate/angular branch from 48792b6 to f382478 Compare August 27, 2025 21:25
@renovate renovate bot changed the title chore(deps): update angular to v20.2.1 chore(deps): update angular to v20.2.2 Aug 27, 2025
@renovate renovate bot force-pushed the renovate/angular branch from f382478 to 1ba0ab2 Compare August 31, 2025 08:53
@renovate renovate bot changed the title chore(deps): update angular to v20.2.2 chore(deps): update angular to v20.2.3 Aug 31, 2025
@renovate renovate bot force-pushed the renovate/angular branch from 1ba0ab2 to 6996272 Compare September 6, 2025 19:00
@renovate renovate bot changed the title chore(deps): update angular to v20.2.3 chore(deps): update angular to v20.2.4 Sep 6, 2025
@renovate renovate bot force-pushed the renovate/angular branch from 6996272 to aeb1956 Compare September 10, 2025 18:08
@renovate renovate bot changed the title chore(deps): update angular to v20.2.4 chore(deps): update angular to v20.3.0 Sep 10, 2025
@renovate renovate bot force-pushed the renovate/angular branch from aeb1956 to cf12152 Compare September 17, 2025 21:44
@renovate renovate bot changed the title chore(deps): update angular to v20.3.0 chore(deps): update angular to v20.3.1 Sep 17, 2025
@renovate renovate bot force-pushed the renovate/angular branch from cf12152 to b0d86cd Compare September 25, 2025 00:39
@renovate renovate bot changed the title chore(deps): update angular to v20.3.1 chore(deps): update angular to v20.3.2 Sep 25, 2025
@renovate renovate bot force-pushed the renovate/angular branch from b0d86cd to e4fb6bd Compare October 2, 2025 15:23
@renovate renovate bot changed the title chore(deps): update angular to v20.3.2 chore(deps): update angular to v20.3.3 Oct 2, 2025
@renovate renovate bot force-pushed the renovate/angular branch from e4fb6bd to 654926f Compare October 8, 2025 16:31
@renovate renovate bot changed the title chore(deps): update angular to v20.3.3 chore(deps): update angular to v20.3.4 Oct 8, 2025
@renovate renovate bot force-pushed the renovate/angular branch from 654926f to 6ae529a Compare October 15, 2025 21:55
@renovate renovate bot changed the title chore(deps): update angular to v20.3.4 chore(deps): update angular to v20.3.5 Oct 15, 2025
@renovate renovate bot force-pushed the renovate/angular branch from 6ae529a to 2f9960f Compare October 16, 2025 21:05
@renovate renovate bot changed the title chore(deps): update angular to v20.3.5 chore(deps): update angular to v20.3.6 Oct 16, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants