build: update cross-repo angular dependencies to v21.0.0-next.6 (main) #31974
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:
21.0.0-next.5
->21.0.0-next.6
21.0.0-next.5
->21.0.0-next.6
21.0.0-next.5
->21.0.0-next.6
21.0.0-next.5
->21.0.0-next.6
21.0.0-next.5
->21.0.0-next.6
21.0.0-next.5
->21.0.0-next.6
21.0.0-next.5
->21.0.0-next.6
21.0.0-next.5
->21.0.0-next.6
21.0.0-next.5
->21.0.0-next.6
21.0.0-next.5
->21.0.0-next.6
Release Notes
angular/angular (@angular/common)
v21.0.0-next.6
Compare Source
Breaking Changes
elements
Fix signal input getter behavior in custom elements.
Before this change, signal inputs in custom elements required function calls to access their values (
elementRef.newInput()
), while decorator inputs were accessed directly (elementRef.oldInput
). This inconsistency caused confusion and typing difficulties.The getter behavior has been standardized so signal inputs can now be accessed directly, matching the behavior of decorator inputs:
Before:
elementRef.oldInput
elementRef.newInput()
After:
elementRef.oldInput
elementRef.newInput
common
compiler
core
elements
migrations
Configuration
📅 Schedule: Branch creation - Every 2 hours, between 12:00 AM and 10:59 PM ( * 0-22/2 * * * ) in timezone America/Tijuana, 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 Renovate Bot.