luxtorpeda-dev / packages

Package build scripts and support for luxtorpeda client
https://luxtorpeda.org
zlib License
35 stars 28 forks source link

Bump the angular group in /webui with 13 updates #1196

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 2 months ago

Bumps the angular group in /webui with 13 updates:

Package From To
@angular/animations 17.3.5 17.3.6
@angular/cdk 17.3.5 17.3.6
@angular/common 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/material 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-devkit/build-angular 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/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/cdk from 17.3.5 to 17.3.6

Release notes

Sourced from @​angular/cdk's releases.

v17.3.6

17.3.6 "onyx-whisper" (2024-04-24)

material

Commit Description
fix - d78c7706c6 progress-bar: avoid CSP issues for apps not using buffer mode (#28946)

cdk

Commit Description
fix - c2dc2da71e a11y: handle signal based items in list key manager (#28854)
fix - e33c436c73 drag-drop: use native popover to avoid stacking issues with preview

multiple

Commit Description
fix - 73d1e2e3cf remove label for attribute on non-native elements (#28948)
Changelog

Sourced from @​angular/cdk's changelog.

17.3.6 "onyx-whisper" (2024-04-24)

cdk

Commit Type Description
c2dc2da71e fix a11y: handle signal based items in list key manager (#28854)
e33c436c73 fix drag-drop: use native popover to avoid stacking issues with preview

material

Commit Type Description
d78c7706c6 fix progress-bar: avoid CSP issues for apps not using buffer mode (#28946)

multiple

Commit Type Description
73d1e2e3cf fix remove label for attribute on non-native elements (#28948)

18.0.0-next.5 "mercury-ant" (2024-04-17)

cdk

Commit Type Description
42cb25fe9 fix drag-drop: text selection not disabled inside shadow dom on firefox (#28835)
d8a6c3edd fix observers: don't observe content of comments (#28858)
81fe8f322 fix observers: Run content changed callback in NgZone (#28870)

material

Commit Type Description
295fd67fa feat schematics: Add custom M3 theme schematic (#28766)
2f17c69b8 fix autocomplete: panel not visible when opened from multiple triggers (#28843)
d3ea71d30 fix autocomplete: remove dependency on NgClass (#28849)
8ec47aa4b fix core: throw better error when mixin doesn't support color variants (#28880)
524fe6247 fix datepicker: remove dependency on NgClass (#28865)
9381f9065 fix menu: remove dependency on NgClass (#28877)
b3298f1b8 fix tabs: remove dependency on NgClass (#28875)

google-maps

Commit Type Description
5bcf8e016 fix make info window open method compatible with advanced marker

Commits
  • 5cdf38b release: cut the v17.3.6 release
  • 105db5f Revert "release: cut the v17.3.6 release"
  • 493703a release: cut the v17.3.6 release
  • c69ec27 build: fix patch deployment (#28959)
  • e33c436 fix(cdk/drag-drop): use native popover to avoid stacking issues with preview
  • 4826a14 refactor(cdk/drag-drop): move preview-related logic into a separate class
  • 73d1e2e fix(multiple): remove label for attribute on non-native elements (#28948)
  • d78c770 fix(material/progress-bar): avoid CSP issues for apps not using buffer mode (...
  • 6df1268 build: fix webdriver tests (#28915)
  • 0c017a2 build: fix lint error (#28907)
  • Additional commits viewable 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/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/material from 17.3.5 to 17.3.6

Release notes

Sourced from @​angular/material's releases.

v17.3.6

17.3.6 "onyx-whisper" (2024-04-24)

material

Commit Description
fix - d78c7706c6 progress-bar: avoid CSP issues for apps not using buffer mode (#28946)

cdk

Commit Description
fix - c2dc2da71e a11y: handle signal based items in list key manager (#28854)
fix - e33c436c73 drag-drop: use native popover to avoid stacking issues with preview

multiple

Commit Description
fix - 73d1e2e3cf remove label for attribute on non-native elements (#28948)
Changelog

Sourced from @​angular/material's changelog.

17.3.6 "onyx-whisper" (2024-04-24)

cdk

Commit Type Description
c2dc2da71e fix a11y: handle signal based items in list key manager (#28854)
e33c436c73 fix drag-drop: use native popover to avoid stacking issues with preview

material

Commit Type Description
d78c7706c6 fix progress-bar: avoid CSP issues for apps not using buffer mode (#28946)

multiple

Commit Type Description
73d1e2e3cf fix remove label for attribute on non-native elements (#28948)

18.0.0-next.5 "mercury-ant" (2024-04-17)

cdk

Commit Type Description
42cb25fe9 fix drag-drop: text selection not disabled inside shadow dom on firefox (#28835)
d8a6c3edd fix observers: don't observe content of comments (#28858)
81fe8f322 fix observers: Run content changed callback in NgZone (#28870)

material

Commit Type Description
295fd67fa feat schematics: Add custom M3 theme schematic (#28766)
2f17c69b8 fix autocomplete: panel not visible when opened from multiple triggers (#28843)
d3ea71d30 fix autocomplete: remove dependency on NgClass (#28849)
8ec47aa4b fix core: throw better error when mixin doesn't support color variants (#28880)
524fe6247 fix datepicker: remove dependency on NgClass (#28865)
9381f9065 fix menu: remove dependency on NgClass (#28877)
b3298f1b8 fix tabs: remove dependency on NgClass (#28875)

google-maps

Commit Type Description
5bcf8e016 fix make info window open method compatible with advanced marker

Commits
  • 5cdf38b release: cut the v17.3.6 release
  • 105db5f Revert "release: cut the v17.3.6 release"
  • 493703a release: cut the v17.3.6 release
  • c69ec27 build: fix patch deployment (#28959)
  • e33c436 fix(cdk/drag-drop): use native popover to avoid stacking issues with preview
  • 4826a14 refactor(cdk/drag-drop): move preview-related logic into a separate class
  • 73d1e2e fix(multiple): remove label for attribute on non-native elements (#28948)
  • d78c770 fix(material/progress-bar): avoid CSP issues for apps not using buffer mode (...
  • 6df1268 build: fix webdriver tests (#28915)
  • 0c017a2 build: fix lint error (#28907)
  • Additional commits viewable in compare view


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, decreaseP... _Description has been truncated_