nicorac / bcr-gui

BCR-GUI is a companion app for the great BCR (Basic Call Recorder) Android application and other supported ROMs with embedded call recorders.
https://coolsoft.altervista.org
GNU General Public License v3.0
146 stars 7 forks source link

Bump the all-updates group across 1 directory with 24 updates #140

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the all-updates group with 24 updates in the / directory:

Package From To
@angular/cdk 18.1.0 18.1.2
@angular/common 18.1.0 18.1.2
@angular/core 18.1.0 18.1.2
@angular/forms 18.1.0 18.1.2
@angular/platform-browser 18.1.0 18.1.2
@angular/platform-browser-dynamic 18.1.0 18.1.2
@angular/router 18.1.0 18.1.2
@capacitor/android 6.1.0 6.1.1
@capacitor/core 6.1.0 6.1.1
@capgo/capacitor-navigation-bar 6.1.24 6.1.32
@ionic/angular 8.2.5 8.2.6
capacitor-native-settings 6.0.0 6.0.1
zone.js 0.14.7 0.14.8
@angular-devkit/build-angular 18.1.0 18.1.2
@angular/cli 18.1.0 18.1.2
@angular/compiler 18.1.0 18.1.2
@angular/compiler-cli 18.1.0 18.1.2
@capacitor/cli 6.1.0 6.1.1
@types/node 20.14.10 22.0.0
@typescript-eslint/eslint-plugin 7.16.0 7.17.0
@typescript-eslint/parser 7.16.0 7.17.0
eslint 9.7.0 9.8.0
eslint-plugin-jsdoc 48.7.0 48.9.2
typescript 5.5.3 5.5.4

Updates @angular/cdk from 18.1.0 to 18.1.2

Release notes

Sourced from @​angular/cdk's releases.

v18.1.2

18.1.2 "velvet-violin" (2024-07-24)

material

Commit Description
fix - cf61af53bd chips: remove button is too small (#29351)
fix - c79ec264aa form-field: hiding a label after it has been (#29461)
fix - 15238d255f input: Number input not changing on wheel interaction (#29449)

Breaking Changes

material

  • updates chip remove button touch target to increase accessibility of the button especially on touch/mobile devices.
  • refactor(material/chips): chip remove touch target size is insufficient

Updates fix to Autocomplete Component Chips component where the touch target size is too small and fails minimum accessibility size of 48x48 px. Addresses nit fixes from PR review.

Fixes b/286959517

  • updates padding size of remove touch target to satisfy minimum 48x48 accessibility size.

    • fix(material/chip): remove button is too small

    Fixes Angular Components Chip component where the touch target of the remove button of a chip is too small. Updates .mat-mdc-chip-remove to target more specific styles to override original style of padding: 8px so that the user has a larger touch target particularly on mobile devices.

    Fixes b/286959517

    • refactor(material/chips): remove button is too small

    Fixes lint errors from previous commit for Angular Components Chip component where the remove button touch target is too small, particularly for touch/mobile devices. Increases padding on all sides.

    Fixes b/286959517

    • fix(material/chips): increase chip remove button touch target size

    Fixes issue with Angular Component Chip's touch target size by increasing the padding on chips with a trailing icon that has an action.

    Fixes b/286959517

  • updates chip remove button touch target to increase accessibility of the button especially on touch/mobile devices.

... (truncated)

Changelog

Sourced from @​angular/cdk's changelog.

18.1.2 "velvet-violin" (2024-07-24)

material

Commit Type Description
cf61af53bd fix chips: remove button is too small (#29351)
c79ec264aa fix form-field: hiding a label after it has been (#29461)
15238d255f fix input: Number input not changing on wheel interaction (#29449)

18.1.1 "tantalum-tale" (2024-07-17)

cdk

Commit Type Description
ca634cb7b fix drag-drop: remove preview after animate to placeholder animation completes (#29439)

material

Commit Type Description
b7959c241 fix button: support palettes for icon button in M3 (#29433)
ffe1c35c0 fix chips: fix focus issue (#29427)
57cc0b04b fix core: require theme for option typography (#29416)
2e5e415ec fix tabs: prevent tab header from collapsing when empty inside a drop list (#29418)

18.2.0-next.1 "osmium-opal" (2024-07-17)

Deprecations

material

  • Tree controller deprecated. Use one of levelAccessor or childrenAccessor instead. To be removed in a future version.

    • BaseTreeControl, TreeControl, FlatTreeControl, and NestedTreeControl deprecated
    • CdkTree#treeControl deprecated. Provide one of CdkTree#levelAccessor or CdkTree#childrenAccessor instead.
    • MatTreeFlattener deprecated. Use MatTree#childrenAccessor and MatTreeNode#isExpandable instead.
    • MatTreeFlatDataSource deprecated. Use one of levelAccessor or childrenAccessor instead of TreeControl.

    Note when upgrading: isExpandable works differently on Trees using treeControl than trees using childrenAccessor or levelAccessor. Nodes on trees that have a treeControl are expandable by default. Nodes on trees using childrenAccessor or levelAccessor are not expandable by default. Provide isExpandable to override default behavior.

  • Setting tabindex of tree nodes deprecated. By default, Tree ignores tabindex passed to tree nodes.

    • MatTreeNode#tabIndex deprecated. MatTreeNode ignores Input tabIndex and manages its own focus behavior.
    • MatTreeNode#defaultTabIndex deprecated. MatTreeNode ignores defaultTabIndex and manages its own focus behavior.
    • MatNestedTreeNode#tabIndex deprecated. MatTreeNode ignores Input defaultTabIndex and manages its own focus behavior.
    • LegacyTreeKeyManager and LEGACY_TREE_KEY_MANAGER_FACTORY_PROVIDER deprecated. Inject a TreeKeyManagerFactory to customize keyboard behavior.

    Note when upgrading: an opt-out is available for keyboard functionality changes. Provide LEGACY_TREE_KEY_MANAGER_FACTORY_PROVIDER to opt-out of Tree managing its own focus. When provided, Tree does not manage it’s own focus and respects tabindex passed to TreeNode. When provided, have the same focus behavior as before this commit is applied.

    Add Legacy Keyboard Interface demo, which shows usage of LEGACY_TREE_KEY_MANAGER_FACTORY_PROVIDER. Add Custom Key Manager, which shows usage of injecting a TreeKeyManagerStrategy

  • disabled renamed to isDisabled.

    • CdkTreeNode#disabled deprecated and alias to CdkTreeNode#isDisabled

material

| Commit | Type | Description |

... (truncated)

Commits
  • dcc411a release: cut the v18.1.2 release
  • 26a8158 docs(material/chips): describe how to use chips in forms #22906 (#29405)
  • 6f17ccd build: remove unused dependencies (#29472)
  • 9af3494 build: docs incorrectly outputting function parameters with object literal ty...
  • 1f9d800 refactor(material/core): simplify typography setup (#29464)
  • 3e2853d refactor(material/core): simplify elevation styles (#29462)
  • 37a04ff refactor(material/core): vendor the M3 token definitions (#29468)
  • 133c5e8 docs(material/table): table multiple row example #27621 (#29421)
  • c79ec26 fix(material/form-field): hiding a label after it has been (#29461)
  • 15238d2 fix(material/input): Number input not changing on wheel interaction (#29449)
  • Additional commits viewable in compare view


Updates @angular/common from 18.1.0 to 18.1.2

Release notes

Sourced from @​angular/common's releases.

v18.1.2

18.1.2 (2024-07-24)

compiler

Commit Description
fix - 463945003d limit the number of chained instructions (#57069)

compiler-cli

Commit Description
fix - e904f34020 add warning for unused let declarations (#57033)

core

Commit Description
fix - 9e52c1c840 afterNextRender hooks return that callback value. (#57031)
fix - b9fb98c67c tree shake dev mode error message (#57035)

v18.1.1

18.1.1 (2024-07-17)

common

Commit Description
fix - a1cb9dfc0d Don't run preconnect assertion on the server. (#56213)

compiler

Commit Description
fix - daf0317bdc JIT mode incorrectly interpreting host directive configuration in partial compilation (#57002)
fix - d7dca6dbb6 use strict equality for 'code' comparison (#56944)

compiler-cli

Commit Description
fix - c94a897248 avoid emitting references to typecheck files in TS 5.4 (#56961)

core

Commit Description
fix - 5682527d94 not all callbacks running when registered at the same time (#56981)

migrations

Commit Description
fix - b666d2c20f fix common module removal (#56968)
Changelog

Sourced from @​angular/common's changelog.

18.1.2 (2024-07-24)

compiler

Commit Type Description
463945003d fix limit the number of chained instructions (#57069)

compiler-cli

Commit Type Description
e904f34020 fix add warning for unused let declarations (#57033)

core

Commit Type Description
9e52c1c840 fix afterNextRender hooks return that callback value. (#57031)
b9fb98c67c fix tree shake dev mode error message (#57035)

18.2.0-next.1 (2024-07-17)

common

Commit Type Description
2c4613a002 fix Don't run preconnect assertion on the server. (#56213)

compiler

Commit Type Description
9167fc815c fix JIT mode incorrectly interpreting host directive configuration in partial compilation (#57002)
107173c14d fix use strict equality for 'code' comparison (#56944)

compiler-cli

Commit Type Description
98ed5b609e feat run JIT transform on classes with jit: true opt-out (#56892)
f0d6d0688d fix avoid emitting references to typecheck files in TS 5.4 (#56961)

core

Commit Type Description
e504ad97d4 fix not all callbacks running when registered at the same time (#56981)

language-service

Commit Type Description
4bb558ab0c feat support writing code refactorings (#56895)
7663debce1 perf quick exit if no code fixes can exist (#57000)

migrations

Commit Type Description
0ea6a4a361 fix fix common module removal (#56968)

... (truncated)

Commits


Updates @angular/core from 18.1.0 to 18.1.2

Release notes

Sourced from @​angular/core's releases.

v18.1.2

18.1.2 (2024-07-24)

compiler

Commit Description
fix - 463945003d limit the number of chained instructions (#57069)

compiler-cli

Commit Description
fix - e904f34020 add warning for unused let declarations (#57033)

core

Commit Description
fix - 9e52c1c840 afterNextRender hooks return that callback value. (#57031)
fix - b9fb98c67c tree shake dev mode error message (#57035)

v18.1.1

18.1.1 (2024-07-17)

common

Commit Description
fix - a1cb9dfc0d Don't run preconnect assertion on the server. (#56213)

compiler

Commit Description
fix - daf0317bdc JIT mode incorrectly interpreting host directive configuration in partial compilation (#57002)
fix - d7dca6dbb6 use strict equality for 'code' comparison (#56944)

compiler-cli

Commit Description
fix - c94a897248 avoid emitting references to typecheck files in TS 5.4 (#56961)

core

Commit Description
fix - 5682527d94 not all callbacks running when registered at the same time (#56981)

migrations

Commit Description
fix - b666d2c20f fix common module removal (#56968)
Changelog

Sourced from @​angular/core's changelog.

18.1.2 (2024-07-24)

compiler

Commit Type Description
463945003d fix limit the number of chained instructions (#57069)

compiler-cli

Commit Type Description
e904f34020 fix add warning for unused let declarations (#57033)

core

Commit Type Description
9e52c1c840 fix afterNextRender hooks return that callback value. (#57031)
b9fb98c67c fix tree shake dev mode error message (#57035)

18.2.0-next.1 (2024-07-17)

common

Commit Type Description
2c4613a002 fix Don't run preconnect assertion on the server. (#56213)

compiler

Commit Type Description
9167fc815c fix JIT mode incorrectly interpreting host directive configuration in partial compilation (#57002)
107173c14d fix use strict equality for 'code' comparison (#56944)

compiler-cli

Commit Type Description
98ed5b609e feat run JIT transform on classes with jit: true opt-out (#56892)
f0d6d0688d fix avoid emitting references to typecheck files in TS 5.4 (#56961)

core

Commit Type Description
e504ad97d4 fix not all callbacks running when registered at the same time (#56981)

language-service

Commit Type Description
4bb558ab0c feat support writing code refactorings (#56895)
7663debce1 perf quick exit if no code fixes can exist (#57000)

migrations

Commit Type Description
0ea6a4a361 fix fix common module removal (#56968)

... (truncated)

Commits
  • 1a606b0 refactor(core): Switch to using concat rather than spread operator for events...
  • b9fb98c fix(core): tree shake dev mode error message (#57035)
  • 142c2df refactor(core): Allow manual renderer listens to contribute to event delegati...
  • 9e52c1c fix(core): afterNextRender hooks return that callback value. (#57031)
  • f3014c5 refactor(core): Move logic into early event contract files. (#56994)
  • 5682527 fix(core): not all callbacks running when registered at the same time (#56981)
  • daf0317 fix(compiler): JIT mode incorrectly interpreting host directive configuration...
  • b666d2c fix(migrations): fix common module removal (#56968)
  • a7b774c refactor(core): Refactor EarlyEventContract to prepare for using it as a co...
  • 4b82b98 refactor(core): Remove unused A11Y_CLICK_SUPPORT define. (#56901)
  • See full diff in compare view


Updates @angular/forms from 18.1.0 to 18.1.2

Release notes

Sourced from @​angular/forms's releases.

v18.1.2

18.1.2 (2024-07-24)

compiler

Commit Description
fix - 463945003d limit the number of chained instructions (#57069)

compiler-cli

Commit Description
fix - e904f34020 add warning for unused let declarations (#57033)

core

Commit Description
fix - 9e52c1c840 afterNextRender hooks return that callback value. (#57031)
fix - b9fb98c67c tree shake dev mode error message (#57035)

v18.1.1

18.1.1 (2024-07-17)

common

Commit Description
fix - a1cb9dfc0d Don't run preconnect assertion on the server. (#56213)

compiler

Commit Description
fix - daf0317bdc JIT mode incorrectly interpreting host directive configuration in partial compilation (#57002)
fix - d7dca6dbb6 use strict equality for 'code' comparison (#56944)

compiler-cli

Commit Description
fix - c94a897248 avoid emitting references to typecheck files in TS 5.4 (#56961)

core

Commit Description
fix - 5682527d94 not all callbacks running when registered at the same time (#56981)

migrations

Commit Description
fix - b666d2c20f fix common module removal (#56968)
Changelog

Sourced from @​angular/forms's changelog.

18.1.2 (2024-07-24)

compiler

Commit Type Description
463945003d fix limit the number of chained instructions (#57069)

compiler-cli

Commit Type Description
e904f34020 fix add warning for unused let declarations (#57033)

core

Commit Type Description
9e52c1c840 fix afterNextRender hooks return that callback value. (#57031)
b9fb98c67c fix tree shake dev mode error message (#57035)

18.2.0-next.1 (2024-07-17)

common

Commit Type Description
2c4613a002 fix Don't run preconnect assertion on the server. (#56213)

compiler

Commit Type Description
9167fc815c fix JIT mode incorrectly interpreting host directive configuration in partial compilation (#57002)
107173c14d fix use strict equality for 'code' comparison (#56944)

compiler-cli

Commit Type Description
98ed5b609e feat run JIT transform on classes with jit: true opt-out (#56892)
f0d6d0688d fix avoid emitting references to typecheck files in TS 5.4 (#56961)

core

Commit Type Description
e504ad97d4 fix not all callbacks running when registered at the same time (#56981)

language-service

Commit Type Description
4bb558ab0c feat support writing code refactorings (#56895)
7663debce1 perf quick exit if no code fixes can exist (#57000)

migrations

Commit Type Description
0ea6a4a361 fix fix common module removal (#56968)

... (truncated)

Commits


Updates @angular/platform-browser from 18.1.0 to 18.1.2

Release notes

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

v18.1.2

18.1.2 (2024-07-24)

compiler

Commit Description
fix - 463945003d limit the number of chained instructions (#57069)

compiler-cli

Commit Description
fix - e904f34020 add warning for unused let declarations (#57033)

core

Commit Description
fix - 9e52c1c840 afterNextRender hooks return that callback value. (#57031)
fix - b9fb98c67c tree shake dev mode error message (#57035)

v18.1.1

18.1.1 (2024-07-17)

common

Commit Description
fix - a1cb9dfc0d Don't run preconnect assertion on the server. (#56213)

compiler

Commit Description
fix - daf0317bdc JIT mode incorrectly interpreting host directive configuration in partial compilation (#57002)
fix - d7dca6dbb6 use strict equality for 'code' comparison (#56944)

compiler-cli

Commit Description
fix - c94a897248 avoid emitting references to typecheck files in TS 5.4 (#56961)

core

Commit Description
fix - 5682527d94 not all callbacks running when registered at the same time (#56981)

migrations

Commit Description
fix - b666d2c20f fix common module removal (#56968)
Changelog

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

18.1.2 (2024-07-24)

compiler

Commit Type Description
463945003d fix limit the number of chained instructions (#57069)

compiler-cli

Commit Type Description
e904f34020 fix add warning for unused let declarations (#57033)

core

Commit Type Description
9e52c1c840 fix afterNextRender hooks return that callback value. (#57031)
b9fb98c67c fix tree shake dev mode error message (#57035)

18.2.0-next.1 (2024-07-17)

common

Commit Type Description
2c4613a002 fix Don't run preconnect assertion on the server. (#56213)

compiler

Commit Type Description
9167fc815c fix JIT mode incorrectly interpreting host directive configuration in partial compilation (#57002)
107173c14d fix use strict equality for 'code' comparison (#56944)

compiler-cli

Commit Type Description
98ed5b609e feat run JIT transform on classes with jit: true opt-out (#56892)
f0d6d0688d fix avoid emitting references to typecheck files in TS 5.4 (#56961)

core

Commit Type Description
e504ad97d4 fix not all callbacks running when registered at the same time (#56981)

language-service

Commit Type Description
4bb558ab0c feat support writing code refactorings (#56895)
7663debce1 perf quick exit if no code fixes can exist (#57000)

migrations

Commit Type Description
0ea6a4a361 fix fix common module removal (#56968)

... (truncated)

Commits


Updates @angular/platform-browser-dynamic from 18.1.0 to 18.1.2

Release notes

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

v18.1.2

18.1.2 (2024-07-24)

compiler

Commit Description
fix - 463945003d limit the number of chained instructions (#57069)

compiler-cli

Commit Description
fix - e904f34020 add warning for unused let declarations (#57033)

core

Commit Description
fix - 9e52c1c840 afterNextRender hooks return that callback value. (#57031)
fix - b9fb98c67c tree shake dev mode error message (#57035)

v18.1.1

18.1.1 (2024-07-17)

common

Commit Description
fix - a1cb9dfc0d Don't run preconnect assertion on the server. (#56213)

compiler

Commit Description
fix - daf0317bdc JIT mode incorrectly interpreting host directive configuration in partial compilation (#57002)
fix - d7dca6dbb6 use strict equality for 'code' comparison (#56944)

compiler-cli

Commit Description
fix - c94a897248 avoid emitting references to typecheck files in TS 5.4 (#56961)

core

Commit Description
fix - 5682527d94 not all callbacks running when registered at the same time (#56981)

migrations

Commit Description
fix - b666d2c20f fix common module removal (#56968)
Changelog

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

18.1.2 (2024-07-24)

compiler

Commit Type Description
463945003d fix limit the number of chained instructions (#57069)

compiler-cli

dependabot[bot] commented 1 month ago

Superseded by #141.

Commit Type Description
e904f34020 fix add warning for unused let declarations (#57033)