Skip to content

build: update cross-repo angular dependencies (main)#33279

Open
angular-robot wants to merge 1 commit into
angular:mainfrom
angular-robot:ng-renovate/main-cross-repo-angular-dependencies
Open

build: update cross-repo angular dependencies (main)#33279
angular-robot wants to merge 1 commit into
angular:mainfrom
angular-robot:ng-renovate/main-cross-repo-angular-dependencies

Conversation

@angular-robot
Copy link
Copy Markdown
Contributor

@angular-robot angular-robot commented Jun 1, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
@angular/animations dependencies digest 4422ba9dac6b9f
@angular/animations (source) devDependencies patch 22.0.0-rc.222.0.0 age adoption passing confidence
@angular/cdk dependencies digest f409388ca075f6
@angular/cdk devDependencies patch 22.0.0-rc.222.0.0 age adoption passing confidence
@angular/common dependencies digest 51528cd408689f
@angular/common (source) devDependencies patch 22.0.0-rc.222.0.0 age adoption passing confidence
@angular/compiler dependencies digest b7f196f9273a62
@angular/compiler (source) devDependencies patch 22.0.0-rc.222.0.0 age adoption passing confidence
@angular/compiler-cli dependencies digest c74e3cbaa1c0d5
@angular/compiler-cli (source) devDependencies patch 22.0.0-rc.222.0.0 age adoption passing confidence
@angular/compiler-cli (source) dependencies patch 22.0.0-rc.222.0.0 age adoption passing confidence
@angular/core dependencies digest cd9acb5a508371
@angular/core (source) devDependencies patch 22.0.0-rc.222.0.0 age adoption passing confidence
@angular/forms dependencies digest c7bc5a03b4cbdc
@angular/forms (source) devDependencies patch 22.0.0-rc.222.0.0 age adoption passing confidence
@angular/language-service dependencies digest 85c4efc112e613
@angular/localize dependencies digest a916111eab2cf8
@angular/localize devDependencies patch 22.0.0-rc.222.0.0 age adoption passing confidence
@angular/material dependencies digest 2a93b9f3a4297e
@angular/material devDependencies patch 22.0.0-rc.222.0.0 age adoption passing confidence
@angular/material-moment-adapter dependencies digest d5940dd5089ff7
@angular/ng-dev devDependencies digest a450a242606bcf
@angular/platform-browser dependencies digest c4b1ffba2ea587
@angular/platform-browser (source) devDependencies patch 22.0.0-rc.222.0.0 age adoption passing confidence
@angular/platform-browser-dynamic dependencies digest 19610b493a28eb
@angular/platform-server dependencies digest dc98a1060f7e68
@angular/platform-server (source) devDependencies patch 22.0.0-rc.222.0.0 age adoption passing confidence
@angular/router dependencies digest 583c40fdfec819
@angular/router (source) devDependencies patch 22.0.0-rc.222.0.0 age adoption passing confidence
@angular/service-worker dependencies digest 1fc98db66617a2
@angular/service-worker (source) devDependencies patch 22.0.0-rc.222.0.0 age adoption passing confidence
devinfra git_override digest 9ee8a686a613f2
ng-packagr devDependencies minor 22.0.0-rc.022.1.0-next.1 age adoption passing confidence
rules_angular git_override digest c898ddb0ee3ac5
rules_browsers git_override digest 45441c7fe03af5

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


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

Release Notes

angular/angular (@​angular/animations)

v22.0.0

Compare Source

Blog post "Announcing Angular v22".

Breaking Changes

compiler
  • This change will trigger the nullishCoalescingNotNullable and optionalChainNotNullable diagnostics on exisiting projects.
    You might want to disable those 2 diagnotiscs in your tsconfig temporarily.
  • data prefixed attribute no-longer bind inputs nor outputs.
  • The compiler will throw when there a when inputs, outputs or model are binding to the same input/outputs.
  • in variables will throw in template expressions.
compiler-cli
  • Elements with multiple matching selectors will now throw at compile time.
core
  • The second arguement of appRef.bootstrap does not accept any anymore. Make sure the element you pass is not nullable.
    • TypeScript versions older than 6.0 are no longer supported.
  • Leave animations are no longer limited to the element being removed.
  • Component with undefined changeDetection property are now OnPush by default. Specify changeDetection: ChangeDetectionStrategy.Eager to keep the previous behavior.
  • change AnimationCallbackEvent.animationComplete signature
  • ChangeDetectorRef.checkNoChanges was removed. In tests use fixture.detectChanges() instead.
  • createNgModuleRef was removed, use createNgModule instead
  • ComponentFactoryResolver and ComponentFactory are no longer available. Pass the component class directly to APIs that previously required a factory, such as ViewContainerRef.createComponent or use the standalone createComponentFunction.
  • ComponentFactoryResolver and ComponentFactory are no longer available. Pass the component class directly to APIs that previously required a factory, such as ViewContainerRef.createComponent or use the standalone createComponent function.
forms
  • min and max validation rules no longer support
    string values. Bound values must be numbers or null.
http
  • Use the HttpXhrBackend with provideHttpClient(withXhr) if you want to keep supporting upload progress reports.
platform-browser
  • This removes styles when they appear to no longer be used by an associated host. However other DOM on the page may still be affected by those styles if not leveraging ViewEncapsulation.Emulated or if those styles are used by elements outside of Angular, potentially causing other DOM to appear unstyled.
  • Hammer.js integration has been removed. Use your own implementation.
router
  • The return type for TitleStrategy.getResolvedTitleForRoute
    was previously 'any' while the actual return type could only be either string
    or undefined. The return type now reflects the possible values correctly.
    Code that reads the value may need to be adjusted.

    (cherry picked from commit ad37f52)

  • The currentSnapshot parameter in CanMatchFn and the canMatch method of the CanMatch interface is now required. While this was already the behavior of the Router at runtime, existing class implementations of CanMatch must now include the third argument to satisfy the interface.

  • paramsInheritanceStrategy now defaults to 'always'

    The default value of paramsInheritanceStrategy has been changed from 'emptyOnly' to 'always'. This means that route parameters are inherited from all parent routes by default. To restore the previous behavior, set paramsInheritanceStrategy to 'emptyOnly' in your router configuration.

  • provideRoutes() has been removed. Use provideRouter() or ROUTES as multi token if necessary.

upgrade
  • Deprecated getAngularLib/setAngularLib have been removed use getAngularJSGlobal/setAngularJSGlobal instead.

Deprecations

http
  • withFetch is now deprecated, it can be safely removed.
  • The reportProgress option is deprecated please use reportUploadProgress & reportDownloadProgress instead.
compiler
Commit Type Description
47fcbc4704 feat allow safe navigation to correctly narrow down nullables
2896c93cc1 feat Angular expressions with optional chaining returns undefined
e850643b1b feat Support comments in html element.
96be4f429b fix abstract emitter producing incorrect code for dynamic imports
488d962bc7 fix Don't bind inputs/outputs for data- attributes
2c5aabb9da fix don't escape dollar sign in literal expression
c7aef8ec5d fix enforce parentheses containing arguments for :host-context
b225a5d902 fix invalid type checking code if field name needs to be quoted
ab9154ab75 fix normalize tag names with custom namespaces in DomElementSchemaRegistry (#​68868)
8a1533c9ad fix preserve leading commas in animation definitions
194f723f66 fix remove dedicated support for legacy shadow DOM selectors
4c25a42e98 fix remove deprecated shadow CSS encapsulation polyfills
6ff620a033 fix sanitize dynamic href and xlink:href bindings on SVG a elements (#​68868)
7dc1017e51 fix simplify handling of colon host with a selector list
d99ab0e040 fix stop generating unused field
03db2aefaa fix throw on duplicate input/outputs
786ef8261f fix throw on invalid in expressions
ccb7d427e4 fix type check invalid for loops
compiler-cli
Commit Type Description
b8d3f36ed9 feat add support for Node.js 26.0.0
7f9450219f feat Adds warning for prefetch without main defer trigger
2eae497a04 feat support external TCBs with copied content in specific mode
e5f96c2d88 fix animation events not type checked properly when bound through HostListener decorator
9218140348 fix resolve TCB mapping failure for safe property reads with as any
7a0d6b8df2 fix transform dropping exclamationToken from properties
ca67828ee2 refactor introduce NG8023 compile-time diagnostic for duplicate selectors
core
Commit Type Description
17d3ea44e2 feat add IdleRequestOptions support to IdleService
3b0ae5fef0 feat add provideWebMcpTools
444b024d49 feat Add a injectAsync helper function
3bc095d508 feat Add a schematics to migrate provideHttpClient to keep using the HttpXhrBackend implementation.
5a7c1e62dc feat add ability to cache resources for SSR
cb4cb77053 feat Add migration to add ChangeDetectionStrategy.Eager where applicable
2206efa55f feat add special return statuses for resource params
246a984a5d feat add TestBed.getFixture
b918beda32 feat allow debouncing signals
8bc31a515f feat Allow other expression for exhaustive typechecking
4e331062e8 feat allow synchronous values for stream Resources
a0aa8304cd feat bootstrap via ApplicationRef with config
9c55fcb3e6 feat de-duplicate host directives
8fe025f514 feat drop support for TypeScript 5.9
2f5ab541ea feat enhance profiling with documentation URLs
ef1810197b feat export experimental declareWebMcpTool support
75f2cb8f56 feat implement Angular DI graph in-page AI tool
8f3d0b9d97 feat introduce @Service decorator
df659b8d0c feat re-introduce nested leave animations scoped to component boundaries
8ce9cc4f6b feat register AI runtime debugging tools
eae8f7e30b feat Set default Component changeDetection strategy to OnPush
cdda51a3b2 feat support bootstrapping Angular applications underneath shadow roots
a5981b83a6 feat support customization of @​defer's on idle behavior
98eb24cea0 feat Support optional timeout for idle deferred triggers
dc3131c639 feat TestBed.getFixture -> TestBed.getLastFixture and update implementation
9f479ae964 feat Update Testability to use PendingTasks for stability indicator
8ebae1de33 fix allow service with factory on abstract classes
f9d8da6924 fix bind global context to idle callback shims in @​defer's idle service
61a48e99aa fix do not register dom triggers when defer blocks are in manual mode
49748b5c79 fix enforce return type for service factory
16adbbf423 fix ensure custom controls resolve transitive host directives
50e599e73e fix lazy-initialize debounced state to prevent computation cycle
7aad302c3e fix mark service decorator as stable
a08e4fb93c fix normalize tag names in runtime i18n attribute security context lookup (#​68868)
b20f0fe078 fix prevent rxResource from leaking a subscription
22f8b0a500 fix resolver function not matching expected type
88d138ccc8 fix support prefix-insensitive DOM schema lookups and compile-time i18n attribute validation
bfe6f6c2a5 fix synchronize core sanitization schema with compiler
5e99ae9f00 fix widen type for directive inputs/outputs
b9b5c279b4 refactor enhance AnimationCallbackEvent.animationComplete signature
69fb1614ef refactor remove checkNoChanges from the public API.
36936872c9 refactor remove createNgModuleRef
9d76ac8229 refactor remove ComponentFactoryResolver & ComponentFactory from the api surface
b1f5181ffd refactor remove ComponentFactoryResolver & ComponentFactory from the api surface""
forms
Commit Type Description
74f76d8075 feat add reloadValidation to Signal Forms to manually trigger async validation
24e52d450d feat add debounce option to validateAsync and validateHttp
709f5a390c feat add FieldState.getError()
7745365910 feat graduate signal forms APIs to public API
f9f24fc669 feat shim legacy NG_VALIDATORS into parseErrors for CVA mode (#​67943)
41b1410cb8 feat support binding `number nullto`
3983080236 feat support ngNoCva as an opt-out for ControlValueAccessors
c4ce3f345f feat template & reactive support for FVC
3524de29f3 fix Add support for range type with outside of native bounds
de56d74da3 fix align FormField CVA selection priority with standard forms
0eeb1b5f03 fix allow FormRoot to be used without submission options (#​67727)
394ad0c2a2 fix allow late-bound input types for signals forms
ee8d2098cb fix change FieldState optional properties to non-optional undefined
df8b020299 fix clear native date inputs correctly in signal forms when changed via native UI
2e9aeea0fe fix deduplicate writeValue calls in CVA interop
0ea50ffe5a fix ensure debounced async validators produce pending status during debounce
3c44d7c90b fix fix orphan field error on blur during array removal
849dba6c65 fix implement custom control reset propagation
5835a5e3a7 fix prevent orphan field crashes in debounceSync and async validation
3e7ce0dafc fix restrict SignalFormsConfig to a readonly API
fb166772d2 fix split the touched model into an input and touch output
83032e3605 fix support generic unions in signal form schemas
68c3abbe09 fix synchronize controls with the model on reset
2061fd8253 fix Untrack setValue in reactive forms
72d3ace03c fix use controlValue in NgControl for CVA interop (#​67943)
3b4ef1e2ff perf avoid redundant invalidations in parser errors signal
07a9358157 perf avoid spurious recomputation in FormField.parseErrors
98c5afdb02 perf lazily instantiate signal form fields
e0536091f5 perf optimize reactivity by using shallow array equality
9b9769479b perf shortcut deepSignal writes if value is unchanged
592a12d6c9 refactor remove string support from min and max validation rules (#​68001)
http
Commit Type Description
5c432fb8bb feat Use FetchBackend as default for the HttpBackend implementation
f7b3ed8db2 fix Introduce a max buffer size for fetch requests on SSR
e6cfaf5672 fix prevent httpResource from leaking a subscription
7c8c3347ef refactor Add reportUploadProgress & reportDownloadProgress options
language-service
Commit Type Description
5a6d88626b feat add angular template inlay hints support
cfd0f9950c feat add Document Symbols support for Angular templates
c6f98c723c feat Add support for idle timeout in defer blocks
dc9c72da9b fix Add support for @Input with transforms
migrations
Commit Type Description
8216d34976 feat Add migration for CanMatchFn snapshot parameter (#​67452)
682aaf943f feat add strictTemplates to tsconfig during ng update
6a435658e2 feat Disabling nullishCoalescingNotNullable & optionalChainNotNullable on ng update
8f8972b0fd feat model + output migrations
f01901d766 fix avoid generating invalid code in ChangeDetectionStrategy.Eager migration
1415d86980 fix Fix typo for strict-template migration
9d9855a415 fix Make the safe optional chaining idempotent
0f2160c410 fix remove compiler import from safe optional chaining migration
platform-browser
Commit Type Description
68628dd45b feat make incremental hydration default behavior
d45b7a91f9 fix remove unused styles when associated host is dropped
f99e7ed20f refactor remove Hammer integration
router
Commit Type Description
89c9a4de30 feat Add options optional parameter for withComponentInputBinding
c84642ac16 feat add unmatchedInputBehavior option to componentInputBinding
3683902234 feat adds browserUrl input support to router links
3e7117d690 fix Add strict typing on 'getResolvedTitleForRoute'
579440170b fix make currentSnapshot required in CanMatchFn (#​67452)
17d10f7a99 fix set default paramsInheritanceStrategy to 'always'
bdb6ae9dbc refactor remove deprecated provideRoutes function.
service-worker
Commit Type Description
836094c072 fix resolve TS 6.0 compatibility for messageerror listener
upgrade
Commit Type Description
01a179577b refactor remove getAngularLib/setAngularLib

v22.0.0-rc.3: 22.0.0-rc.3

Compare Source

common
Commit Description
fix - 4795b35d5b only strip a literal /index.html suffix from URLs
compiler
Commit Description
fix - 2891f7e787 move projection attributes into constants
core
Commit Description
fix - e3e25b5a53 use Object.create(null) for LOCALE_DATA as a hardening measure
migrations
Commit Description
fix - 9d9855a415 Make the safe optional chaining idempotent
platform-server
Commit Description
fix - 7b9130931d throw on suspicious URLs and restrict protocol-relative URLs
angular/components (@​angular/cdk)

v22.0.0

[Compare Source](https://redirect.github.com/angular/components/compare/v2

Note

PR body was truncated to here.

@angular-robot angular-robot added action: merge The PR is ready for merge by the caretaker area: build & ci Related the build and CI infrastructure of the project target: automation This PR is targeted to only merge into the branch defined in Github [bot use only] labels Jun 1, 2026
Copy link
Copy Markdown

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request updates the snapshot build commit hashes for @angular/cdk, @angular/material, and @angular/material-moment-adapter in the tests/e2e/ng-snapshot/package.json file. There are no review comments, and I have no feedback to provide.

@angular-robot angular-robot force-pushed the ng-renovate/main-cross-repo-angular-dependencies branch 13 times, most recently from f28408a to b728bd6 Compare June 3, 2026 14:24
@angular-robot angular-robot force-pushed the ng-renovate/main-cross-repo-angular-dependencies branch 2 times, most recently from 6d8b9b6 to 8cddb69 Compare June 3, 2026 17:02
See associated pull request for more information.
@angular-robot angular-robot force-pushed the ng-renovate/main-cross-repo-angular-dependencies branch from 8cddb69 to 091c64d Compare June 3, 2026 18:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

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: automation This PR is targeted to only merge into the branch defined in Github [bot use only]

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants