Skip to content

Conversation

angular-robot
Copy link
Collaborator

@angular-robot angular-robot commented Mar 5, 2025

This PR contains the following updates:

Package Type Update Change
@angular/animations dependencies digest c4bba40 -> 36cd551
@angular/bazel devDependencies digest cb6cc91 -> 40b05a0
@angular/cdk dependencies digest caaec34 -> 383bfab
@angular/cdk devDependencies major 19.2.1 -> 20.0.0-next.0
@angular/common dependencies digest 975a6d3 -> 464b4d1
@angular/common (source) peerDependencies major ^19.0.0 -> ^20.0.0-next
@angular/compiler dependencies digest 2cd4556 -> 613f052
@angular/compiler-cli dependencies digest cc9e103 -> a7a02f3
@angular/core dependencies digest 35c6798 -> b585243
@angular/core (source) peerDependencies major ^19.0.0 -> ^20.0.0-next
@angular/forms dependencies digest 5c06485 -> 17f11eb
@angular/language-service dependencies digest 33767cd -> 10ca6e3
@angular/localize dependencies digest f73ab93 -> a286b54
@angular/material dependencies digest f586e8b -> 559f22b
@angular/material devDependencies major 19.2.1 -> 20.0.0-next.0
@angular/material-moment-adapter dependencies digest 4f5b570 -> 3c70abc
@angular/ng-dev devDependencies digest 4b26728 -> dbcf3af
@angular/platform-browser dependencies digest 8883f6e -> 8ff3838
@angular/platform-browser-dynamic dependencies digest fa13964 -> e7af1cf
@angular/platform-server dependencies digest 16b052a -> cd275f9
@angular/router dependencies digest 0a6fd5d -> 3894b6f
@angular/service-worker dependencies digest 82aa74a -> f1dd84d
angular/dev-infra action digest bf0dd63 -> 60ad70b

🔡 If you wish to disable git hash updates, add ":disableDigestUpdates" to the extends array in your config.


Release Notes

angular/components (@​angular/cdk)

v20.0.0-next.0

Compare Source

Breaking Changes

material
  • tabindex values set as [attr.tabindex] set on a Material button might not work as expected. Use tabindex for static values, or [tabindex]/[tabIndex] for dynamic ones.
multiple
    • DialogConfig.componentFactoryResolver has been removed.
    • The constructor of DomPortalOutlet has changed.
    • ComponentPortal.componentFactoryResolver has been removed.
    • The constructor signature of ComponentPortal has changed.
    • MatDialogConfig.componentFactoryResolver has been removed.
cdk-experimental
Commit Type Description
fc46997442 feat ui-patterns: listbox ui pattern (#​30495)
material
Commit Type Description
6a5943d8b0 fix button: combine MatButton and MatAnchor (#​30492)
cdk
Commit Type Description
69eedd75f7 fix drag-drop: incorrect type DragConstrainPosition (#​30510)
multiple
Commit Type Description
cda5c8e686 fix remove remaining references to ComponentFactoryResolver (#​30569)

v19.2.2

Compare Source

cdk
Commit Type Description
c31c7fe22a fix stepper: emitting interacted event when item has not changed (#​30579)
material
Commit Type Description
f89ed8115c fix bottom-sheet: focus first tabbable element by default (#​30549)
8754784ec5 fix schematics: remove NoopAnimationsModule from generated tests (#​30562)
bfdbc23b8c fix timepicker: unable to reopen if closed by scroll strategy (#​30561)
material-angular-io
Commit Type Description
cd40ee0f37 fix sidenav links not updating (#​30564)
multiple
Commit Type Description
3c68b6d6b7 fix resolve host binding issues (#​30570)
angular/angular (@​angular/common)

v20.0.0-next.1

Compare Source

Breaking Changes

common
  • AsyncPipe now directly catches unhandled errors in
    subscriptions and promises and reports them to the application's
    ErrorHandler. For Zone-based applications, these errors would have
    been caught by ZoneJS and reported to ErrorHandler so the result is
    generally the same. The change to the exact mechanism for reporting can
    result in differences in test environments that will require test
    updates.
core
    • TypeScript versions less than 5.8 are no longer supported.
  • PendingTasks.run no longer returns the result of the
    async function. If this behavior is desired, it can be re-implemented
    manually with the PendingTasks.add. Be aware, however, that promise rejections
    will need to be handled or they can cause the node process to shut down
    when using SSR.
common
Commit Type Description
36b60a9705 fix clean up onUrlChange listener when root scope is destroyed (#​60004)
739cadae62 fix Handle errors in async pipe subscriptions (#​60057)
compiler
Commit Type Description
51b8ff23ce feat support tagged template literals in expressions (#​59947)
4fe489f1b4 fix exponentiation should be right-to-left associative (#​60101)
b70ad3c4e6 fix proper handling of typeof, void in RecursiveAstVisitor (#​60101)
compiler-cli
Commit Type Description
f9043e24ac fix ensure template IDs are not reused if a source file changes (#​60152)
ffb19e64f1 fix preserve required parens for nullish coalescing (#​60060)
7c9b4892e9 fix preserve required parens in exponentiation expressions (#​60101)
core
Commit Type Description
fe57332fc5 feat add input binding support to dynamically-created components (#​60137)
82aa2c1a52 feat add the ability to apply directives to dynamically-created components (#​60137)
326d48afb4 feat drop support for TypeScript older than 5.8 (#​60197)
d260ca3091 feat emit template function for template related profiler hooks (#​60174)
4812215a7b feat Expose Injector.destroy on Injector created with Injector.create (#​60054)
809b5b4596 feat introduce new DI profiling event (#​60158)
be44cc8f40 feat support listening to outputs on dynamically-created components (#​60137)
7eb59d3887 fix added @​angular/compiler as a peer dependency (#​55610)
af02914852 fix cache ComponentRef inputs and outputs (#​60156)
7232ce5b17 fix Catch and report rejections in async function of PendingTasks.run (#​60044)
fd12220a35 fix defer block render failures should report to application error handler (#​60149)
3459faadbf fix do not allow setInput to be used with inputBinding (#​60137)
ea5eb28865 fix input targeting not checking if input exists on host (#​60137)
0dbf693a4d fix prevent invoking replay listeners on disconnected nodes (#​60103)
7ab0a8d1e7 fix prevents event replay from being called on comment nodes (#​60130)
language-service
Commit Type Description
d5e91e04ff fix Forward the tags for quick info from the type definition (#​59524)

v20.0.0-next.0

Compare Source

Breaking Changes

common
  • Using the Y formatter (week-numbering year) without also including w (week number) is now detected as suspicious date pattern, as y is typically intended.
compiler
  • void in an expression now refers to the operator

    Previously an expression in the template like {{void}} referred to a
    property on the component class. After this change it now refers to the
    void operator, which would make the above example invalid. If you have
    existing expressions that need to refer to a property named void,
    change the expression to use this.void instead: {{this.void}}.

common
Commit Type Description
74cceba587 feat throw error for suspicious date patterns (#​59798)
compiler
Commit Type Description
f2d5cf7edd feat support exponentiation operator in templates (#​59894)
0361c2d81f feat support void operator in templates (#​59894)
core
Commit Type Description
962b59b14e fix Ensure ComponentFixture does not duplicate error reporting from FakeAsync (#​60104)
491b0a4ead fix Remove duplicate reporting of errors in CDR.detectChanges (#​60056)
router
Commit Type Description
7c12cb1df9 feat Allow resolvers to read resolved data from ancestors (#​59860)
db2f2d99c8 fix Scroller should scroll as soon as change detection completes (#​60086)

Configuration

📅 Schedule: Branch creation - "after 10:00pm every weekday,before 4:00am every weekday,every weekend" 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Renovate Bot.

@angular-robot angular-robot added action: merge The PR is ready for merge by the caretaker target: minor This PR is targeted for the next minor release labels Mar 5, 2025
@angular-robot
Copy link
Collaborator Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
/bin/sh: 1: pnpm: not found

@angular-robot angular-robot bot added the area: build & ci Related the build and CI infrastructure of the project label Mar 5, 2025
@angular-robot angular-robot force-pushed the ng-renovate/angular branch 4 times, most recently from 688f410 to ebb3ca7 Compare March 5, 2025 15:04
@angular-robot angular-robot force-pushed the ng-renovate/angular branch 8 times, most recently from 813a58a to d05b5c7 Compare March 6, 2025 15:06
@alan-agius4 alan-agius4 merged commit 29243fb into angular:main Mar 6, 2025
41 checks passed
@alan-agius4 alan-agius4 deleted the ng-renovate/angular branch March 6, 2025 16:20
@angular-automatic-lock-bot
Copy link

This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

This action has been performed automatically by a bot.

@angular-automatic-lock-bot angular-automatic-lock-bot bot locked and limited conversation to collaborators Apr 6, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

action: merge The PR is ready for merge by the caretaker area: build & ci Related the build and CI infrastructure of the project target: minor This PR is targeted for the next minor release

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants