Skip to content

Update Fundamental NGX and Angular (major)#27

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-fundamental-ngx-and-angular
Open

Update Fundamental NGX and Angular (major)#27
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-fundamental-ngx-and-angular

Conversation

@renovate

@renovate renovate Bot commented Mar 31, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@angular-devkit/build-angular 21.2.722.0.0 age confidence
@angular/animations (source) ^21.2.1^21.2.1 || ^22.0.0 age confidence
@angular/animations (source) ^21.2.0^21.2.0 || ^22.0.0 age confidence
@angular/build ^21.2.7^22.0.0 age confidence
@angular/cli 21.2.722.0.0 age confidence
@angular/common (source) ^21.2.1^21.2.1 || ^22.0.0 age confidence
@angular/common (source) ^21.2.0^21.2.0 || ^22.0.0 age confidence
@angular/compiler (source) ^21.2.1^21.2.1 || ^22.0.0 age confidence
@angular/compiler (source) ^21.2.0^21.2.0 || ^22.0.0 age confidence
@angular/compiler-cli (source) 21.2.1222.0.0 age confidence
@angular/core (source) ^21.2.1^21.2.1 || ^22.0.0 age confidence
@angular/core (source) ^21.2.0^21.2.0 || ^22.0.0 age confidence
@angular/elements (source) ^21.2.1^21.2.1 || ^22.0.0 age confidence
@angular/elements (source) ^21.2.0^21.2.0 || ^22.0.0 age confidence
@angular/forms (source) ^21.2.1^21.2.1 || ^22.0.0 age confidence
@angular/forms (source) ^21.2.0^21.2.0 || ^22.0.0 age confidence
@angular/platform-browser (source) ^21.2.1^21.2.1 || ^22.0.0 age confidence
@angular/platform-browser (source) ^21.2.0^21.2.0 || ^22.0.0 age confidence
ng-packagr ^21.1.0^22.0.0 age confidence
typescript (source) 5.9.36.0.3 age confidence

Release Notes

angular/angular-cli (@​angular-devkit/build-angular)

v22.0.0

Compare Source

@​angular/cli
Commit Type Description
f05343a42 fix expand package groups for newly added peer dependencies in update schematic
@​schematics/angular
Commit Type Description
4fbc60891 fix preserve Jasmine stub-by-default semantics for bare spies
@​angular/build
Commit Type Description
418abd825 fix prevent esbuild service child process leakage
@​angular/ssr
Commit Type Description
8471ba634 fix support server-side rendering configuration options

v21.2.14

Compare Source

@​angular/cli
Commit Type Description
aed448748 fix expand package groups for newly added peer dependencies in update schematic
@​angular/build
Commit Type Description
d46c082fb fix prevent esbuild service child process leakage

v21.2.13

Compare Source

@​angular-devkit/build-angular
Commit Type Description
3c6d26a31 fix remove unconditional CORS wildcard from webpack dev-server
@​angular/build
Commit Type Description
2b3e95517 fix assert that asset input paths are within workspace root

v21.2.12

Compare Source

@​angular/build
Commit Type Description
cbad57579 fix ignore virtual esbuild paths with (disabled):

v21.2.11

Compare Source

@​angular/cli
Commit Type Description
bbd63b7a5 fix robustly parse npm manifest from array
@​angular/ssr
Commit Type Description
eafe1a719 fix allow all hosts in common engine rendering options to prevent validation errors
7a116a80d fix remove stateful flag from URL_PARAMETER_REGEXP

v21.2.10

Compare Source

@​angular/cli
Commit Type Description
bb8611913 fix restrict MCP workspace access to allowed client roots during resolution

v21.2.9

Compare Source

@​angular/cli
Commit Type Description
233deef01 fix fix broken img ref in ai-tutor
7cea9885c fix introduce initial package manager workspace awareness
5b1a5b743 fix remove standalone true ref in ai tutor
@​schematics/angular
Commit Type Description
e7abeb5c7 fix add missing imports for focus and skip APIs in refactor-jasmine-vitest
@​angular/ssr
Commit Type Description
94023f62c fix introduce trustProxyHeaders option to safely validate and sanitize proxy headers
5ffe5c309 fix add support for configuring trusted proxy headers via environment variable
930ada9b7 fix decode route segments when building and matching route tree
0dc8a440c fix use router to normalize URLs for comparison

v21.2.8: 21.2.8

Compare Source

@​angular/cli
Commit Description
fix - e91280c05 dynamically resolve project Angular CLI executable inside MCP tools
fix - 01af6741b ignore EBADF file system errors during MCP project scan
fix - f7a3e6ed8 use headless option in MCP test tool
@​angular-devkit/build-angular
Commit Description
fix - 00336c037 ensure route has leading slash in prerender builder
fix - e87d302d6 fix app-shell route format and
@​angular/build
Commit Description
fix - c93140a54 use rootDir for HMR component updates path resolution
fix - 6df2b1488 validate V8 coverage support for browsers in Vitest
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](https://redirect.github.com/angular/angular/com

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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 was generated by Mend Renovate. View the repository job log.

@renovate

renovate Bot commented Mar 31, 2026

Copy link
Copy Markdown
Contributor 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: package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm. See `npm help npmrc` for supported config options.
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: @openmfp/webcomponents@0.12.9
npm error Found: @angular/router@21.2.12
npm error node_modules/@angular/router
npm error   peer @angular/router@"^21.0.0" from @fundamental-ngx/ui5-webcomponents@0.59.1
npm error   node_modules/@fundamental-ngx/ui5-webcomponents
npm error     peer @fundamental-ngx/ui5-webcomponents@"0.59.1" from the root project
npm error     peer @fundamental-ngx/ui5-webcomponents@"0.59.1" from @fundamental-ngx/ui5-webcomponents-fiori@0.59.1
npm error     node_modules/@fundamental-ngx/ui5-webcomponents-fiori
npm error       peer @fundamental-ngx/ui5-webcomponents-fiori@"0.59.1" from the root project
npm error   peer @angular/router@"^21.0.0" from @fundamental-ngx/ui5-webcomponents-base@0.59.1
npm error   node_modules/@fundamental-ngx/ui5-webcomponents-base
npm error     @fundamental-ngx/ui5-webcomponents-base@"0.59.1" from @fundamental-ngx/ui5-webcomponents@0.59.1
npm error     node_modules/@fundamental-ngx/ui5-webcomponents
npm error       peer @fundamental-ngx/ui5-webcomponents@"0.59.1" from the root project
npm error       1 more (@fundamental-ngx/ui5-webcomponents-fiori)
npm error     @fundamental-ngx/ui5-webcomponents-base@"0.59.1" from @fundamental-ngx/ui5-webcomponents-fiori@0.59.1
npm error     node_modules/@fundamental-ngx/ui5-webcomponents-fiori
npm error       peer @fundamental-ngx/ui5-webcomponents-fiori@"0.59.1" from the root project
npm error   1 more (@fundamental-ngx/ui5-webcomponents-fiori)
npm error
npm error Could not resolve dependency:
npm error dev @angular-devkit/build-angular@"22.0.0" from the root project
npm error
npm error Conflicting peer dependency: @angular/router@22.0.0
npm error node_modules/@angular/router
npm error   peer @angular/router@"^22.0.0" from @angular/ssr@22.0.0
npm error   node_modules/@angular/ssr
npm error     peerOptional @angular/ssr@"^22.0.0" from @angular-devkit/build-angular@22.0.0
npm error     node_modules/@angular-devkit/build-angular
npm error       dev @angular-devkit/build-angular@"22.0.0" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry this command with --force or --legacy-peer-deps to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2026-06-10T20_43_10_268Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-06-10T20_43_10_268Z-debug-0.log

@coderabbitai

coderabbitai Bot commented Mar 31, 2026

Copy link
Copy Markdown

Important

Review skipped

Bot user detected.

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

⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Free

Run ID: 9c281841-1f50-4c28-b9cd-f66a9064f6c3

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

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

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

@renovate renovate Bot force-pushed the renovate/major-fundamental-ngx-and-angular branch 5 times, most recently from 12393cd to 75f44f1 Compare March 31, 2026 13:52
@renovate renovate Bot changed the title Update dependency typescript to v6 chore(deps): update dependency typescript to v6 Mar 31, 2026
@renovate renovate Bot force-pushed the renovate/major-fundamental-ngx-and-angular branch 9 times, most recently from 9f4022f to bb4a12b Compare April 6, 2026 20:31
@renovate renovate Bot force-pushed the renovate/major-fundamental-ngx-and-angular branch from bb4a12b to df9bc4a Compare April 8, 2026 13:54
@renovate renovate Bot changed the title chore(deps): update dependency typescript to v6 Update dependency typescript to v6 Apr 8, 2026
@renovate renovate Bot force-pushed the renovate/major-fundamental-ngx-and-angular branch 8 times, most recently from 9291eee to a1db60a Compare April 20, 2026 16:42
@renovate renovate Bot force-pushed the renovate/major-fundamental-ngx-and-angular branch 3 times, most recently from 9ecdf07 to 6517d01 Compare April 21, 2026 12:17
@renovate renovate Bot force-pushed the renovate/major-fundamental-ngx-and-angular branch 8 times, most recently from 52a3932 to c8c9b83 Compare May 7, 2026 16:21
@renovate renovate Bot force-pushed the renovate/major-fundamental-ngx-and-angular branch 16 times, most recently from 034da0b to 0cf90a3 Compare May 17, 2026 17:30
@renovate renovate Bot force-pushed the renovate/major-fundamental-ngx-and-angular branch 5 times, most recently from 54b5a5c to 09de7aa Compare May 19, 2026 12:48
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants