dylan-smith / DiveIntelligence

1 stars 1 forks source link

Bump the angular group in /src/DivingCalculator.Web with 19 updates #174

Closed dependabot[bot] closed 4 weeks ago

dependabot[bot] commented 1 month ago

Bumps the angular group in /src/DivingCalculator.Web with 19 updates:

Package From To
@angular/animations 17.3.9 18.0.0
@angular/cdk 17.3.9 18.0.0
@angular/common 17.3.9 18.0.0
@angular/compiler 17.3.9 18.0.0
@angular/core 17.3.9 18.0.0
@angular/forms 17.3.9 18.0.0
@angular/material 17.3.9 18.0.0
@angular/platform-browser 17.3.9 18.0.0
@angular/platform-browser-dynamic 17.3.9 18.0.0
@angular/router 17.3.9 18.0.0
@angular/youtube-player 17.3.9 18.0.0
@angular-devkit/build-angular 17.3.7 18.0.1
@angular-eslint/builder 17.4.1 17.5.1
@angular-eslint/eslint-plugin 17.4.1 17.5.1
@angular-eslint/eslint-plugin-template 17.4.1 17.5.1
@angular-eslint/schematics 17.4.1 17.5.1
@angular-eslint/template-parser 17.4.1 17.5.1
@angular/cli 17.3.7 18.0.1
@angular/compiler-cli 17.3.9 18.0.0

Updates @angular/animations from 17.3.9 to 18.0.0

Release notes

Sourced from @​angular/animations's releases.

v18.0.0

18.0.0 (2024-05-22)

animations

Commit Description
refactor - bcce85af72 remove deprecated matchesElement from AnimationDriver (#55479)

common

Commit Description
refactor - d34c033902 Deprecate Local Data API functions (#54483)
refactor - 3b0de30b37 remove deprecated isPlatformWorkerApp and isPlatformWorkerUi API (#55302)

compiler

Commit Description
fix - 91b007e58f add math elements to schema (#55631)
fix - 33d0102304 allow comments between connected blocks (#55966)
fix - 7fc7f3f05f capture all control flow branches for content projection in if blocks (#54921)
fix - a369f43fbd capture switch block cases for content projection (#54921)
fix - eb625d3783 declare for loop aliases in addition to new name (#54942)
fix - f824911510 For FatalDiagnosticError, hide the message field without affecting the emit (#55160)
fix - a040fb720a maintain multiline CSS selectors during CSS scoping (#55509)
fix - 39624c6b12 output input flags as a literal (#55215)
fix - eba92cfa55 prevent usage of reserved control flow symbol in custom interpolation context. (#55809)
fix - 7d5bc1c628 remove container index from conditional instruction (#55190)
fix - 4eb0165750 remove support for unassignable expressions in two-way bindings (#55342)
fix - e1650e3b13 throw error if item name and context variables conflict (#55045)

compiler-cli

Commit Description
feat - 5bd188a394 add partial compilation support for deferred blocks (#54908)
feat - b02b31a915 drop support for TypeScript older than 5.4 (#54961)
fix - 78188e877a add diagnostic if initializer API is used outside of an initializer (#54993)
fix - 69a83993b3 do not throw when retrieving TCB symbol for signal input with restricted access (#55774)
fix - 4f4f41016e dom property binding check in signal extended diagnostic (#54324)
fix - 7a16d7e969 don't type check the bodies of control flow nodes in basic mode (#55360)
fix - 8d93597a82 fix type narrowing of @if with aliases (#55835)
fix - 9b424d7224 preserve original reference to non-deferrable dependency (#54759)
fix - 694ba79cbf report cases where initializer APIs are used in a non-directive class (#54993)
fix - 6219341d26 report errors when initializer APIs are used on private fields (#54981)
fix - c04ffb1fa6 use switch statements to narrow Angular switch blocks (#55168)

core

Commit Description
feat - a730f09ae9 Add a public API to establish events to be replayed and an attribute to mark an element with an event handler. (#55356)
feat - fdd560ea14 Add ability to configure zone change detection to use zoneless scheduler (#55252)
feat - bce5e2344f Add build target for jsaction contract binary. (#55319)
feat - 666d646575 Add event delegation library to queue up events and replay them when the application is ready (#55121)
feat - 5f06ca8f55 add HOST_TAG_NAME token (#54751)
feat - a600a39d0c add support for fallback content in ng-content (#54854)

... (truncated)

Changelog

Sourced from @​angular/animations's changelog.

18.0.0 (2024-05-22)

Blog post "Angular v18 is now available".

Breaking Changes

animations

  • Deprecated matchesElement method has been removed from AnimationDriver as it is unused.

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.

compiler-cli

    • Angular no longer supports TypeScript versions older than 5.4.

core

  • OnPush views at the root of the application need to be marked dirty for their host bindings to refresh. Previously, the host bindings were refreshed for all root views without respecting the OnPush change detection strategy.

  • OnPush views at the root of the application need to be marked dirty for their host bindings to refresh. Previously, the host bindings were refreshed for all root views without respecting the OnPush change detection strategy.

  • The ComponentFixture autoDetect feature will no longer refresh the component's host view when the component is OnPush and not marked dirty. This exposes existing issues in components which claim to be OnPush but do not correctly call markForCheck when they need to be refreshed. If this change causes test failures, the easiest fix is to change the component to ChangeDetectionStrategy.Default.

  • ComponentFixture.whenStable now matches the ApplicationRef.isStable observable. Prior to this change, stability of the fixture did not include everything that was considered in ApplicationRef. whenStable of the fixture will now include unfinished router navigations and unfinished HttpClient requests. This will cause tests that await the whenStable promise to time out when there are incomplete requests. To fix this, remove the whenStable, instead wait for another condition, or ensure HttpTestingController mocks responses for all requests. Try adding HttpTestingController.verify() before your await fixture.whenStable to identify the open requests. Also, make sure your tests wait for the stability promise. We found many examples of tests that did not, meaning the expectations did not execute within the test body.

    In addition, ComponentFixture.isStable would synchronously switch to true in some scenarios but will now always be asynchronous.

  • 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,

... (truncated)

Commits
  • 122478c refactor(core): Ensure animations are flushed before running render hooks (#5...
  • a80fa8d refactor(core): Omit listeners from out-of-zone scheduling when using ZoneJS ...
  • e3d5607 Revert "refactor(core): Ensure DOM removal happens when no app views need ref...
  • 28905ab Revert "refactor(animations): Ensure async animations applies changes when lo...
  • 9ab36cf refactor(animations): Ensure async animations applies changes when loaded in ...
  • a07ea06 refactor(core): Ensure DOM removal happens when no app views need refresh (#5...
  • bcce85a refactor(animations): remove deprecated matchesElement from `AnimationDrive...
  • 457d02c docs: Use new Urls to drop the docs url mapper (#55043)
  • See full diff in compare view


Updates @angular/cdk from 17.3.9 to 18.0.0

Release notes

Sourced from @​angular/cdk's releases.

v18.0.0

18.0.0 "satin-sasquatch" (2024-05-22)

cdk

Commit Description
fix - d8a6c3edd observers: don't observe content of comments (#28858)
fix - 81fe8f322 observers: Run content changed callback in NgZone (#28870)
fix - 108cce33b overlay: Remove use of zone onStable to detach content (#28740)
fix - d91d0d424 scrolling: fix virtual scrolling jankiness with run coalescing (#28846)
fix - c8b62a154 scrolling: fix virtual scrolling jankiness with run coalescing (#28968)

material

Commit Description
feat - 4473a379f core: add prebuilt themes based on M3
feat - e2a45bf1e core: Allow namespacing ripple-loader event handler (#28699)
feat - d679024de core: move Material 3 support into stable (#28913)
feat - 4ba4689dc core: namespace m2-specific theming APIs (#28892)
feat - 295fd67fa schematics: Add custom M3 theme schematic (#28766)
feat - b312b9491 schematics: use M3 themes in schematics
feat - f8bd658df theming: add ability to use sys variables (#28898)
fix - 49901c640 button-toggle: use radio pattern for single select Mat toggle button group (#28548)
fix - 5501d9b40 core: add migration for M2 theming APIs (#28927)
fix - 0ccc52830 core: export all available M3 palettes (#28975)
fix - a5ad288bf core: ripple loader not working in shadow DOM (#29015)
fix - ec9e83db4 datepicker: resolve repeater warnings in calendar (#29028)
fix - 6dc8f7e90 dialog: mark dialog content as scrollable (#28963)
fix - ae82909a9 schematics: Add css token renaming migration
fix - 3e9d3c394 schematics: add option to generate system variables in M3 schematic
fix - bdb17c6b3 schematics: Change themeTypes to a single select instead of a multiselect prompt in M3 theme schematic (#28997)
fix - c86359dd4 slide-toggle: no outline when selected in high contrast mode (#28979)
fix - d4e61e233 table: use ResizeObserver to react to size changes (#28783)
fix - a4fc0a097 theming: remove shadow css variable (#28953)
fix - 0bb5610d0 theming: restrict css color usage behind a flag (#28944)
perf - a332146ff core: speed up M3 compilation (#29009)

material-experimental

Commit Description
feat - c345df788 theming: add mixin for customizing checkbox tokens (#28759)
fix - c932512ba theming: avoid re-emitting the same tokens from the backwards-compatibility styles

multiple

Commit Description
feat - 4719da2c3 token overrides api (#28910)

Breaking Changes

material

  • The following APIs have been renamed. If you update using ng update, your app will be fixed automatically.
    • define-light-theme to m2-define-light-theme
    • define-dark-theme to m2-define-dark-theme
    • define-palette to m2-define-palette

... (truncated)

Changelog

Sourced from @​angular/cdk's changelog.

18.0.0 "satin-sasquatch" (2024-05-22)

Breaking Changes

material

  • The following APIs have been renamed. If you update using ng update, your app will be fixed automatically.
    • define-light-theme to m2-define-light-theme
    • define-dark-theme to m2-define-dark-theme
    • define-palette to m2-define-palette
    • get-contrast-color-from-palette to m2-get-contrast-color-from-palette
    • get-color-from-palette to m2-get-color-from-palette
    • get-color-config to m2-get-color-config
    • get-typography-config to m2-get-typography-config
    • get-density-config to m2-get-density-config
    • $red-palette to $m2-red-palette
    • $pink-palette to $m2-pink-palette
    • $indigo-palette to $m2-indigo-palette
    • $purple-palette to $m2-purple-palette
    • $deep-purple-palette to $m2-deep-purple-palette
    • $blue-palette to $m2-blue-palette
    • $light-blue-palette to $m2-light-blue-palette
    • $cyan-palette to $m2-cyan-palette
    • $teal-palette to $m2-teal-palette
    • $green-palette to $m2-green-palette
    • $light-green-palette to $m2-light-green-palette
    • $lime-palette to $m2-lime-palette
    • $yellow-palette to $m2-yellow-palette
    • $amber-palette to $m2-amber-palette
    • $orange-palette to $m2-orange-palette
    • $deep-orange-palette to $m2-deep-orange-palette
    • $brown-palette to $m2-brown-palette
    • $grey-palette to $m2-grey-palette
    • $gray-palette to $m2-gray-palette
    • $blue-grey-palette to $m2-blue-grey-palette
    • $blue-gray-palette to $m2-blue-gray-palette
    • $light-theme-background-palette to $m2-light-theme-background-palette
    • $dark-theme-background-palette to $m2-dark-theme-background-palette
    • $light-theme-foreground-palette to $m2-light-theme-foreground-palette
    • $dark-theme-foreground-palette to $m2-dark-theme-foreground-palette
    • define-typography-level to m2-define-typography-level
    • define-rem-typography-config to m2-define-rem-typography-config
    • define-typography-config to m2-define-typography-config
    • define-legacy-typography-config to m2-define-legacy-typography-config
    • typography-level to m2-typography-level
    • font-size to m2-font-size
    • line-height to m2-line-height
    • font-weight to m2-font-weight
    • letter-spacing to m2-letter-spacing
    • font-family to m2-font-family
    • font-shorthand to m2-font-shorthand

material-experimental

| Commit | Type | Description |

... (truncated)

Commits
  • d5df8ad release: cut the v18.0.0 release
  • e2694b0 build: update to Angular v18 final (#29097)
  • 452878e release: cut the v18.0.0-rc.3 release
  • b5fb30a refactor(material/dialog): simplify structural styles (#29068)
  • d6146b9 test(multiple): remove provideZoneChangeDetection for all menu tests (#29061)
  • 6c1982b docs: Make typography guide M3 specific (#29075)
  • 8299b09 fix(material/slider): resolve duplicate key warnings (#29073)
  • 4f544ea docs: Update theming your components guide for M3 and move M2 specific info (...
  • 28eedd2 docs(material/form-field): disable bubbling on prefix in example (#29069)
  • 6788194 fixup! test(material/schematics): Add test for CSS token renames
  • Additional commits viewable in compare view


Updates @angular/common from 17.3.9 to 18.0.0

Release notes

Sourced from @​angular/common's releases.

v18.0.0

18.0.0 (2024-05-22)

animations

Commit Description
refactor - bcce85af72 remove deprecated matchesElement from AnimationDriver (#55479)

common

Commit Description
refactor - d34c033902 Deprecate Local Data API functions (#54483)
refactor - 3b0de30b37 remove deprecated isPlatformWorkerApp and isPlatformWorkerUi API (#55302)

compiler

Commit Description
fix - 91b007e58f add math elements to schema (#55631)
fix - 33d0102304 allow comments between connected blocks (#55966)
fix - 7fc7f3f05f capture all control flow branches for content projection in if blocks (#54921)
fix - a369f43fbd capture switch block cases for content projection (#54921)
fix - eb625d3783 declare for loop aliases in addition to new name (#54942)
fix - f824911510 For FatalDiagnosticError, hide the message field without affecting the emit (#55160)
fix - a040fb720a maintain multiline CSS selectors during CSS scoping (#55509)
fix - 39624c6b12 output input flags as a literal (#55215)
fix - eba92cfa55 prevent usage of reserved control flow symbol in custom interpolation context. (#55809)
fix - 7d5bc1c628 remove container index from conditional instruction (#55190)
fix - 4eb0165750 remove support for unassignable expressions in two-way bindings (#55342)
fix - e1650e3b13 throw error if item name and context variables conflict (#55045)

compiler-cli

Commit Description
feat - 5bd188a394 add partial compilation support for deferred blocks (#54908)
feat - b02b31a915 drop support for TypeScript older than 5.4 (#54961)
fix - 78188e877a add diagnostic if initializer API is used outside of an initializer (#54993)
fix - 69a83993b3 do not throw when retrieving TCB symbol for signal input with restricted access (#55774)
fix - 4f4f41016e dom property binding check in signal extended diagnostic (#54324)
fix - 7a16d7e969 don't type check the bodies of control flow nodes in basic mode (#55360)
fix - 8d93597a82 fix type narrowing of @if with aliases (#55835)
fix - 9b424d7224 preserve original reference to non-deferrable dependency (#54759)
fix - 694ba79cbf report cases where initializer APIs are used in a non-directive class (#54993)
fix - 6219341d26 report errors when initializer APIs are used on private fields (#54981)
fix - c04ffb1fa6 use switch statements to narrow Angular switch blocks (#55168)

core

Commit Description
feat - a730f09ae9 Add a public API to establish events to be replayed and an attribute to mark an element with an event handler. (#55356)
feat - fdd560ea14 Add ability to configure zone change detection to use zoneless scheduler (#55252)
feat - bce5e2344f Add build target for jsaction contract binary. (#55319)
feat - 666d646575 Add event delegation library to queue up events and replay them when the application is ready (#55121)
feat - 5f06ca8f55 add HOST_TAG_NAME token (#54751)
feat - a600a39d0c add support for fallback content in ng-content (#54854)

... (truncated)

Changelog

Sourced from @​angular/common's changelog.

18.0.0 (2024-05-22)

Blog post "Angular v18 is now available".

Breaking Changes

animations

  • Deprecated matchesElement method has been removed from AnimationDriver as it is unused.

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.

compiler-cli

    • Angular no longer supports TypeScript versions older than 5.4.

core

  • OnPush views at the root of the application need to be marked dirty for their host bindings to refresh. Previously, the host bindings were refreshed for all root views without respecting the OnPush change detection strategy.

  • OnPush views at the root of the application need to be marked dirty for their host bindings to refresh. Previously, the host bindings were refreshed for all root views without respecting the OnPush change detection strategy.

  • The ComponentFixture autoDetect feature will no longer refresh the component's host view when the component is OnPush and not marked dirty. This exposes existing issues in components which claim to be OnPush but do not correctly call markForCheck when they need to be refreshed. If this change causes test failures, the easiest fix is to change the component to ChangeDetectionStrategy.Default.

  • ComponentFixture.whenStable now matches the ApplicationRef.isStable observable. Prior to this change, stability of the fixture did not include everything that was considered in ApplicationRef. whenStable of the fixture will now include unfinished router navigations and unfinished HttpClient requests. This will cause tests that await the whenStable promise to time out when there are incomplete requests. To fix this, remove the whenStable, instead wait for another condition, or ensure HttpTestingController mocks responses for all requests. Try adding HttpTestingController.verify() before your await fixture.whenStable to identify the open requests. Also, make sure your tests wait for the stability promise. We found many examples of tests that did not, meaning the expectations did not execute within the test body.

    In addition, ComponentFixture.isStable would synchronously switch to true in some scenarios but will now always be asynchronous.

  • 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,

... (truncated)

Commits
  • 5052d4c docs(common): fix FormatWidth.Short description (#55821)
  • 6906ff0 refactor(core): clean up clang comments and workarounds (#55750)
  • d9b339f fix(http): resolve withRequestsMadeViaParent behavior with withFetch (#55...
  • 516e5b5 refactor(common): increment test coverage (#55532)
  • d34c033 refactor(common): Deprecate Local Data API functions (#54483)
  • f914f6a feat(migrations): Migration schematics for HttpClientModule (#54020)
  • ef665a4 refactor(http): Deprecate HttpClientModule & related modules (#54020)
  • bac5ba3 refactor(http): remove direct usage of HttpStatusCode (#55434)
  • 6f88d80 feat(http): allow caching requests with different origins between server and ...
  • 8eacb6e feat(http): exclude caching for authenticated HTTP requests (#55034)
  • Additional commits viewable in compare view


Updates @angular/compiler from 17.3.9 to 18.0.0

Release notes

Sourced from @​angular/compiler's releases.

v18.0.0

18.0.0 (2024-05-22)

animations

Commit Description
refactor - bcce85af72 remove deprecated matchesElement from AnimationDriver (#55479)

common

Commit Description
refactor - d34c033902 Deprecate Local Data API functions (#54483)
refactor - 3b0de30b37 remove deprecated isPlatformWorkerApp and isPlatformWorkerUi API (#55302)

compiler

Commit Description
fix - 91b007e58f add math elements to schema (#55631)
fix - 33d0102304 allow comments between connected blocks (#55966)
fix - 7fc7f3f05f capture all control flow branches for content projection in if blocks (#54921)
fix - a369f43fbd capture switch block cases for content projection (#54921)
fix - eb625d3783 declare for loop aliases in addition to new name (#54942)
fix - f824911510 For FatalDiagnosticError, hide the message field without affecting the emit (#55160)
fix - a040fb720a maintain multiline CSS selectors during CSS scoping (#55509)
fix - 39624c6b12 output input flags as a literal (#55215)
fix - eba92cfa55 prevent usage of reserved control flow symbol in custom interpolation context. (#55809)
fix - 7d5bc1c628 remove container index from conditional instruction (#55190)
fix - 4eb0165750 remove support for unassignable expressions in two-way bindings (#55342)
fix - e1650e3b13 throw error if item name and context variables conflict (#55045)

compiler-cli

Commit Description
feat - 5bd188a394 add partial compilation support for deferred blocks (#54908)
...
dylan-smith commented 1 month ago

@dependabot rebase

dependabot[bot] commented 4 weeks ago

Looks like these dependencies are no longer updatable, so this is no longer needed.