db-ui / mono

DB UX Design System Monorepo - Provides Design Tokens and components for Web UIs
https://db-ui.github.io/mono/review/main/
Apache License 2.0
27 stars 5 forks source link

chore(deps): bump the angular group with 11 updates #2583

Closed dependabot[bot] closed 3 weeks ago

dependabot[bot] commented 3 weeks ago

Bumps the angular group with 11 updates:

Package From To
@angular-devkit/build-angular 17.3.5 17.3.6
@angular/common 17.3.5 17.3.6
@angular/animations 17.3.5 17.3.6
@angular/compiler 17.3.5 17.3.6
@angular/core 17.3.5 17.3.6
@angular/forms 17.3.5 17.3.6
@angular/platform-browser 17.3.5 17.3.6
@angular/platform-browser-dynamic 17.3.5 17.3.6
@angular/router 17.3.5 17.3.6
@angular/cli 17.3.5 17.3.6
@angular/compiler-cli 17.3.5 17.3.6

Updates @angular-devkit/build-angular from 17.3.5 to 17.3.6

Release notes

Sourced from @​angular-devkit/build-angular's releases.

v17.3.6

17.3.6 (2024-04-25)

@​angular-devkit/build-angular

Commit Description
fix - dcec59799 properly configure headers for media resources and HTML page
Changelog

Sourced from @​angular-devkit/build-angular's changelog.

17.3.6 (2024-04-25)

@​angular-devkit/build-angular

Commit Type Description
dcec59799 fix properly configure headers for media resources and HTML page

18.0.0-next.3 (2024-04-17)

Breaking Changes

@​angular/cli

  • The ng doc command has been removed without a replacement. To perform searches, please visit www.angular.dev

@​angular-devkit/build-angular

  • By default, the index.html file is no longer emitted in the browser directory when using the application builder with SSR. Instead, an index.csr.html file is emitted. This change is implemented because in many cases server and cloud providers incorrectly treat the index.html file as a statically generated page. If you still require the old behavior, you can use the index option to specify the output file name.

    "architect": {
      "build": {
        "builder": "@angular-devkit/build-angular:application",
        "options": {
          "outputPath": "dist/my-app",
          "index": {
            "input": "src/index.html",
            "output": "index.html"
          }
        }
      }
    }
    

@​angular/cli

Commit Type Description
03eee0545 refactor remove ng doc command

@​angular-devkit/build-angular

Commit Type Description
83d1d233a feat enhance Sass rebasing importer for resources URL defined in variables and handling of external paths

... (truncated)

Commits
  • c6b82f6 release: cut the v17.3.6 release
  • 6f1906f docs: add explanation of how to set up a new NPM package in Wombat
  • dcec597 fix(@​angular-devkit/build-angular): properly configure headers for media reso...
  • See full diff in compare view


Updates @angular/common from 17.3.5 to 17.3.6

Release notes

Sourced from @​angular/common's releases.

v17.3.6

17.3.6 (2024-04-25)

core

Commit Description
fix - 826861b1fa DeferBlockFixture.render should not wait for stability (#55271)
fix - 5cf14da35c make ActivatedRoute inject correct instance inside @defer blocks (#55374)
fix - 8979fba2c5 skip defer timers on the server (#55480)
Changelog

Sourced from @​angular/common's changelog.

17.3.6 (2024-04-25)

core

Commit Type Description
826861b1fa fix DeferBlockFixture.render should not wait for stability (#55271)
5cf14da35c fix make ActivatedRoute inject correct instance inside @defer blocks (#55374)
8979fba2c5 fix skip defer timers on the server (#55480)

18.0.0-next.5 (2024-04-17)

Breaking Changes

common

  • The deprecated isPlatformWorkerUi and isPlatformWorkerApp have been removed without replacement, as they serve no purpose since the removal of the WebWorker platform.

compiler

  • Angular only supports writable expressions inside of two-way bindings.

core

  • Angular will ensure change detection runs, even when the state update originates from outside the zone, tests may observe additional rounds of change detection compared to the previous behavior.

    This change will be more likely to impact existing unit tests. This should usually be seen as more correct and the test should be updated, but in cases where it is too much effort to debug, the test can revert to the old behavior by adding provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly}) to the TestBed providers.

    Similarly, applications which may want to update state outside the zone and not trigger change detection can add provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly}) to the providers in bootstrapApplication or add schedulingMode: NgZoneSchedulingMode.NgZoneOnly to the BootstrapOptions of bootstrapModule.

  • Testability methods increasePendingRequestCount, decreasePendingRequestCount and getPendingRequestCount have been removed. This information is tracked with zones.

common

Commit Type Description
3b0de30b37 refactor remove deprecated isPlatformWorkerApp and isPlatformWorkerUi API (#55302)

compiler

Commit Type Description
7d5bc1c628 fix remove container index from conditional instruction (#55190)
4eb0165750 fix remove support for unassignable expressions in two-way bindings (#55342)

core

Commit Type Description
fdd560ea14 feat Add ability to configure zone change detection to use zoneless scheduler (#55252)

... (truncated)

Commits


Updates @angular/animations from 17.3.5 to 17.3.6

Release notes

Sourced from @​angular/animations's releases.

v17.3.6

17.3.6 (2024-04-25)

core

Commit Description
fix - 826861b1fa DeferBlockFixture.render should not wait for stability (#55271)
fix - 5cf14da35c make ActivatedRoute inject correct instance inside @defer blocks (#55374)
fix - 8979fba2c5 skip defer timers on the server (#55480)
Changelog

Sourced from @​angular/animations's changelog.

17.3.6 (2024-04-25)

core

Commit Type Description
826861b1fa fix DeferBlockFixture.render should not wait for stability (#55271)
5cf14da35c fix make ActivatedRoute inject correct instance inside @defer blocks (#55374)
8979fba2c5 fix skip defer timers on the server (#55480)

18.0.0-next.5 (2024-04-17)

Breaking Changes

common

  • The deprecated isPlatformWorkerUi and isPlatformWorkerApp have been removed without replacement, as they serve no purpose since the removal of the WebWorker platform.

compiler

  • Angular only supports writable expressions inside of two-way bindings.

core

  • Angular will ensure change detection runs, even when the state update originates from outside the zone, tests may observe additional rounds of change detection compared to the previous behavior.

    This change will be more likely to impact existing unit tests. This should usually be seen as more correct and the test should be updated, but in cases where it is too much effort to debug, the test can revert to the old behavior by adding provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly}) to the TestBed providers.

    Similarly, applications which may want to update state outside the zone and not trigger change detection can add provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly}) to the providers in bootstrapApplication or add schedulingMode: NgZoneSchedulingMode.NgZoneOnly to the BootstrapOptions of bootstrapModule.

  • Testability methods increasePendingRequestCount, decreasePendingRequestCount and getPendingRequestCount have been removed. This information is tracked with zones.

common

Commit Type Description
3b0de30b37 refactor remove deprecated isPlatformWorkerApp and isPlatformWorkerUi API (#55302)

compiler

Commit Type Description
7d5bc1c628 fix remove container index from conditional instruction (#55190)
4eb0165750 fix remove support for unassignable expressions in two-way bindings (#55342)

core

Commit Type Description
fdd560ea14 feat Add ability to configure zone change detection to use zoneless scheduler (#55252)

... (truncated)

Commits


Updates @angular/compiler from 17.3.5 to 17.3.6

Release notes

Sourced from @​angular/compiler's releases.

v17.3.6

17.3.6 (2024-04-25)

core

Commit Description
fix - 826861b1fa DeferBlockFixture.render should not wait for stability (#55271)
fix - 5cf14da35c make ActivatedRoute inject correct instance inside @defer blocks (#55374)
fix - 8979fba2c5 skip defer timers on the server (#55480)
Changelog

Sourced from @​angular/compiler's changelog.

17.3.6 (2024-04-25)

core

Commit Type Description
826861b1fa fix DeferBlockFixture.render should not wait for stability (#55271)
5cf14da35c fix make ActivatedRoute inject correct instance inside @defer blocks (#55374)
8979fba2c5 fix skip defer timers on the server (#55480)

18.0.0-next.5 (2024-04-17)

Breaking Changes

common

  • The deprecated isPlatformWorkerUi and isPlatformWorkerApp have been removed without replacement, as they serve no purpose since the removal of the WebWorker platform.

compiler

  • Angular only supports writable expressions inside of two-way bindings.

core

  • Angular will ensure change detection runs, even when the state update originates from outside the zone, tests may observe additional rounds of change detection compared to the previous behavior.

    This change will be more likely to impact existing unit tests. This should usually be seen as more correct and the test should be updated, but in cases where it is too much effort to debug, the test can revert to the old behavior by adding provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly}) to the TestBed providers.

    Similarly, applications which may want to update state outside the zone and not trigger change detection can add provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly}) to the providers in bootstrapApplication or add schedulingMode: NgZoneSchedulingMode.NgZoneOnly to the BootstrapOptions of bootstrapModule.

  • Testability methods increasePendingRequestCount, decreasePendingRequestCount and getPendingRequestCount have been removed. This information is tracked with zones.

common

Commit Type Description
3b0de30b37 refactor remove deprecated isPlatformWorkerApp and isPlatformWorkerUi API (#55302)

compiler

Commit Type Description
7d5bc1c628 fix remove container index from conditional instruction (#55190)
4eb0165750 fix remove support for unassignable expressions in two-way bindings (#55342)

core

Commit Type Description
fdd560ea14 feat Add ability to configure zone change detection to use zoneless scheduler (#55252)

... (truncated)

Commits


Updates @angular/core from 17.3.5 to 17.3.6

Release notes

Sourced from @​angular/core's releases.

v17.3.6

17.3.6 (2024-04-25)

core

Commit Description
fix - 826861b1fa DeferBlockFixture.render should not wait for stability (#55271)
fix - 5cf14da35c make ActivatedRoute inject correct instance inside @defer blocks (#55374)
fix - 8979fba2c5 skip defer timers on the server (#55480)
Changelog

Sourced from @​angular/core's changelog.

17.3.6 (2024-04-25)

core

Commit Type Description
826861b1fa fix DeferBlockFixture.render should not wait for stability (#55271)
5cf14da35c fix make ActivatedRoute inject correct instance inside @defer blocks (#55374)
8979fba2c5 fix skip defer timers on the server (#55480)

18.0.0-next.5 (2024-04-17)

Breaking Changes

common

  • The deprecated isPlatformWorkerUi and isPlatformWorkerApp have been removed without replacement, as they serve no purpose since the removal of the WebWorker platform.

compiler

  • Angular only supports writable expressions inside of two-way bindings.

core

  • Angular will ensure change detection runs, even when the state update originates from outside the zone, tests may observe additional rounds of change detection compared to the previous behavior.

    This change will be more likely to impact existing unit tests. This should usually be seen as more correct and the test should be updated, but in cases where it is too much effort to debug, the test can revert to the old behavior by adding provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly}) to the TestBed providers.

    Similarly, applications which may want to update state outside the zone and not trigger change detection can add provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly}) to the providers in bootstrapApplication or add schedulingMode: NgZoneSchedulingMode.NgZoneOnly to the BootstrapOptions of bootstrapModule.

  • Testability methods increasePendingRequestCount, decreasePendingRequestCount and getPendingRequestCount have been removed. This information is tracked with zones.

common

Commit Type Description
3b0de30b37 refactor remove deprecated isPlatformWorkerApp and isPlatformWorkerUi API (#55302)

compiler

Commit Type Description
7d5bc1c628 fix remove container index from conditional instruction (#55190)
4eb0165750 fix remove support for unassignable expressions in two-way bindings (#55342)

core

Commit Type Description
fdd560ea14 feat Add ability to configure zone change detection to use zoneless scheduler (#55252)

... (truncated)

Commits
  • 826861b fix(core): DeferBlockFixture.render should not wait for stability (#55271)
  • eda03d4 docs: Fix typo in waitForAsync example (#55407)
  • 8979fba fix(core): skip defer timers on the server (#55480)
  • 5cf14da fix(core): make ActivatedRoute inject correct instance inside @defer bloc...
  • See full diff in compare view


Updates @angular/forms from 17.3.5 to 17.3.6

Release notes

Sourced from @​angular/forms's releases.

v17.3.6

17.3.6 (2024-04-25)

core

Commit Description
fix - 826861b1fa DeferBlockFixture.render should not wait for stability (#55271)
fix - 5cf14da35c make ActivatedRoute inject correct instance inside @defer blocks (#55374)
fix - 8979fba2c5 skip defer timers on the server (#55480)
Changelog

Sourced from @​angular/forms's changelog.

17.3.6 (2024-04-25)

core

Commit Type Description
826861b1fa fix DeferBlockFixture.render should not wait for stability (#55271)
5cf14da35c fix make ActivatedRoute inject correct instance inside @defer blocks (#55374)
8979fba2c5 fix skip defer timers on the server (#55480)

18.0.0-next.5 (2024-04-17)

Breaking Changes

common

  • The deprecated isPlatformWorkerUi and isPlatformWorkerApp have been removed without replacement, as they serve no purpose since the removal of the WebWorker platform.

compiler

  • Angular only supports writable expressions inside of two-way bindings.

core

  • Angular will ensure change detection runs, even when the state update originates from outside the zone, tests may observe additional rounds of change detection compared to the previous behavior.

    This change will be more likely to impact existing unit tests. This should usually be seen as more correct and the test should be updated, but in cases where it is too much effort to debug, the test can revert to the old behavior by adding provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly}) to the TestBed providers.

    Similarly, applications which may want to update state outside the zone and not trigger change detection can add provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly}) to the providers in bootstrapApplication or add schedulingMode: NgZoneSchedulingMode.NgZoneOnly to the BootstrapOptions of bootstrapModule.

  • Testability methods increasePendingRequestCount, decreasePendingRequestCount and getPendingRequestCount have been removed. This information is tracked with zones.

common

Commit Type Description
3b0de30b37 refactor remove deprecated isPlatformWorkerApp and isPlatformWorkerUi API (#55302)

compiler

Commit Type Description
7d5bc1c628 fix remove container index from conditional instruction (#55190)
4eb0165750 fix remove support for unassignable expressions in two-way bindings (#55342)

core

Commit Type Description
fdd560ea14 feat Add ability to configure zone change detection to use zoneless scheduler (#55252)

... (truncated)

Commits


Updates @angular/platform-browser from 17.3.5 to 17.3.6

Release notes

Sourced from @​angular/platform-browser's releases.

v17.3.6

17.3.6 (2024-04-25)

core

Commit Description
fix - 826861b1fa DeferBlockFixture.render should not wait for stability (#55271)
fix - 5cf14da35c make ActivatedRoute inject correct instance inside @defer blocks (#55374)
fix - 8979fba2c5 skip defer timers on the server (#55480)
Changelog

Sourced from @​angular/platform-browser's changelog.

17.3.6 (2024-04-25)

core

Commit Type Description
826861b1fa fix DeferBlockFixture.render should not wait for stability (#55271)
5cf14da35c fix make ActivatedRoute inject correct instance inside @defer blocks (#55374)
8979fba2c5 fix skip defer timers on the server (#55480)

18.0.0-next.5 (2024-04-17)

Breaking Changes

common

  • The deprecated isPlatformWorkerUi and isPlatformWorkerApp have been removed without replacement, as they serve no purpose since the removal of the WebWorker platform.

compiler

  • Angular only supports writable expressions inside of two-way bindings.

core

  • Angular will ensure change detection runs, even when the state update originates from outside the zone, tests may observe additional rounds of change detection compared to the previous behavior.

    This change will be more likely to impact existing unit tests. This should usually be seen as more correct and the test should be updated, but in cases where it is too much effort to debug, the test can revert to the old behavior by adding provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly}) to the TestBed providers.

    Similarly, applications which may want to update state outside the zone and not trigger change detection can add provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly}) to the providers in bootstrapApplication or add schedulingMode: NgZoneSchedulingMode.NgZoneOnly to the BootstrapOptions of bootstrapModule.

  • Testability methods increasePendingRequestCount, decreasePendingRequestCount and getPendingRequestCount have been removed. This information is tracked with zones.

common

Commit Type Description
3b0de30b37 refactor remove deprecated isPlatformWorkerApp and isPlatformWorkerUi API (#55302)

compiler

Commit Type Description
7d5bc1c628 fix remove container index from conditional instruction (#55190)
4eb0165750 fix remove support for unassignable expressions in two-way bindings (#55342)

core

Commit Type Description
fdd560ea14 feat Add ability to configure zone change detection to use zoneless scheduler (#55252)

... (truncated)

Commits


Updates @angular/platform-browser-dynamic from 17.3.5 to 17.3.6

Release notes

Sourced from @​angular/platform-browser-dynamic's releases.

v17.3.6

17.3.6 (2024-04-25)

core

Commit Description
fix - 826861b1fa DeferBlockFixture.render should not wait for stability (#55271)
fix - 5cf14da35c make ActivatedRoute inject correct instance inside @defer blocks (#55374)
fix - 8979fba2c5 skip defer timers on the server (#55480)
Changelog

Sourced from @​angular/platform-browser-dynamic's changelog.

17.3.6 (2024-04-25)

core

Commit Type Description
826861b1fa fix DeferBlockFixture.render should not wait for stability (#55271)
5cf14da35c fix make ActivatedRoute inject correct instance inside @defer blocks (#55374)
8979fba2c5 fix skip defer timers on the server (#55480)

18.0.0-next.5 (2024-04-17)

Breaking Changes

common

  • The deprecated isPlatformWorkerUi and isPlatformWorkerApp have been removed without replacement, as they serve no purpose since the removal of the WebWorker platform.

compiler

  • Angular only supports writable expressions inside of two-way bindings.

core

  • Angular will ensure change detection runs, even when the state update originates from outside the zone, tests may observe additional rounds of change detection compared to the previous behavior.

    This change will be more likely to impact existing unit tests. This should usually be seen as more correct and the test should be updated, but in cases where it is too much effort to debug, the test can revert to the old behavior by adding provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly}) to the TestBed providers.

    Similarly, applications which may want to update state outside the zone and not trigger change detection can add provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly}) to the providers in bootstrapApplication or add schedulingMode: NgZoneSchedulingMode.NgZoneOnly to the BootstrapOptions of bootstrapModule.

  • Testability methods increasePendingRequestCount, decreasePendingRequestCount and getPendingRequestCount have been removed. This information is tracked with zones.

common

Commit Type Description
3b0de30b37 refactor remove deprecated isPlatformWorkerApp and isPlatformWorkerUi API (#55302)

compiler

Commit Type Description
7d5bc1c628 fix remove container index from conditional instruction (#55190)
4eb0165750 fix remove support for unassignable expressions in two-way bindings (#55342)

core

Commit Type Description
fdd560ea14 feat Add ability to configure zone change detection to use zoneless scheduler (#55252)

... (truncated)

Commits


Updates @angular/router from 17.3.5 to 17.3.6

Release notes

Sourced from @​angular/router's releases.

v17.3.6

17.3.6 (2024-04-25)

core

Commit Description
fix - 826861b1fa DeferBlockFixture.render should not wait for stability (#55271)
fix - 5cf14da35c make ActivatedRoute inject correct instance inside @defer blocks (#55374)
fix - 8979fba2c5 skip defer timers on the server (#55480)
Changelog

Sourced from @​angular/router's changelog.

17.3.6 (2024-04-25)

core

Commit Type Description
826861b1fa fix DeferBlockFixture.render should not wait for stability (#55271)
5cf14da35c fix make ActivatedRoute inject correct instance inside @defer blocks (#55374)
8979fba2c5 fix skip defer timers on the server (#55480)

18.0.0-next.5 (2024-04-17)

Breaking Changes

common

  • The deprecated isPlatformWorkerUi and isPlatformWorkerApp have been removed without replacement, as they serve no purpose since the removal of the WebWorker platform.

compiler

  • Angular only supports writable expressions inside of two-way bindings.

core

  • Angular will ensure change detection runs, even when the state update originates from outside the zone, tests may observe additional rounds of change detection compared to the previous behavior.

    This change will be more likely to impact existing unit tests. This should usually be seen as more correct and the test should be updated, but in cases where it is too much effort to debug, the test can revert to the old behavior by adding provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly}) to the TestBed providers.

    Similarly, applications which may want to update state outside the zone and not trigger change detection can add provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly}) to the providers in bootstrapApplication or add schedulingMode: NgZoneSchedulingMode.NgZoneOnly to the BootstrapOptions of bootstrapModule.

  • Testability methods increasePendingRequestCount, decreasePendingRequestCount and getPendingRequestCount have been removed. This information is tracked with zones.

common

Commit Type Description
3b0de30b37 refactor remove deprecated isPlatformWorkerApp and isPlatformWorkerUi API (#55302)

compiler

Commit Type Description
7d5bc1c628 fix remove container index from conditional instruction (#55190)
4eb0165750 fix remove support for unassignable expressions in two-way bindings (#55342)

core

Commit Type Description
fdd560ea14 feat Add ability to configure zone change detection to use zoneless scheduler (#55252)

... (truncated)

Commits
  • 5cf14da fix(core): make ActivatedRoute inject correct instance inside @defer bloc...
  • See full diff in compare view


Updates @angular/cli from 17.3.5 to 17.3.6

Release notes

Sourced from @​angular/cli's releases.

v17.3.6

17.3.6 (2024-04-25)

@​angular-devkit/build-angular

Commit Description
fix - dcec59799 properly configure headers for media resources and HTML page
Changelog

Sourced from @​angular/cli's changelog.

17.3.6 (2024-04-25)

@​angular-devkit/build-angular

Commit Type Description
dcec59799 fix properly configure headers for media resources and HTML page

18.0.0-next.3 (2024-04-17)

Breaking Changes

@​angular/cli

  • The ng doc command has been removed without a replacement. To perform searches, please visit www.angular.dev

@​angular-devkit/build-angular

  • By default, the index.html file is no longer emitted in the browser directory when using the application builder with SSR. Instead, an index.csr.html file is emitted. This change is implemented because in many cases server and cloud providers incorrectly treat the index.html file as a statically generated page. If you still require the old behavior, you can use the index option to specify the output file name.

    "architect": {
      "build": {
        "builder": "@angular-devkit/build-angular:application",
        "options": {
          "outputPath": "dist/my-app",
          "index": {
            "input": "src/index.html",
            "output": "index.html"
          }
        }
      }
    }
    

@​angular/cli

Commit Type Description
03eee0545 refactor remove ng doc command

@​angular-devkit/build-angular

Commit Type Description
83d1d233a feat enhance Sass rebasing importer for resources URL defined in variables and handling of external paths

... (truncated)

Commits
  • c6b82f6 release: cut the v17.3.6 release
  • 6f1906f docs: add explanation of how to set up a new NPM package in Wombat
  • dcec597 fix(@​angular-devkit/build-angular): properly configure headers for media reso...
  • See full diff in compare view


Updates @angular/compiler-cli from 17.3.5 to 17.3.6

Release notes

Sourced from @​angular/compiler-cli's releases.

v17.3.6

17.3.6 (2024-04-25)

core

Commit Description
fix - 826861b1fa DeferBlockFixture.render should not wait for stability (#55271)
fix - 5cf14da35c make ActivatedRoute inject correct instance inside @defer blocks (#55374)
fix - 8979fba2c5 skip defer timers on the server (#55480)
Changelog

Sourced from @​angular/compiler-cli's changelog.

17.3.6 (2024-04-25)

core

Commit Type Description
826861b1fa fix DeferBlockFixture.render should not wait for stability (#55271)
5cf14da35c fix make ActivatedRoute inject correct instance inside @defer blocks (#55374)
8979fba2c5 fix skip defer timers on the server (#55480)

18.0.0-next.5 (2024-04-17)

Breaking Changes

common

  • The deprecated isPlatformWorkerUi and isPlatformWorkerApp have been removed wi... _Description has been truncated_
github-actions[bot] commented 3 weeks ago

🔭🐙🐈 Test this branch here: https://db-ui.github.io/mono/review/dependabot-npm_and_yarn-angular-6d1129d977