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
120 stars 6 forks source link

Bump the all-updates group with 21 updates #107

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps the all-updates group with 21 updates:

Package From To
@angular/cdk 17.3.0 17.3.1
@angular/common 17.3.0 17.3.1
@angular/core 17.3.0 17.3.1
@angular/forms 17.3.0 17.3.1
@angular/platform-browser 17.3.0 17.3.1
@angular/platform-browser-dynamic 17.3.0 17.3.1
@angular/router 17.3.0 17.3.1
@capacitor/android 5.7.3 5.7.4
@capacitor/core 5.7.3 5.7.4
@ionic/angular 7.8.0 7.8.2
filesize 10.1.0 10.1.1
ionicons 7.2.2 7.3.1
@angular-devkit/build-angular 17.3.0 17.3.2
@angular/cli 17.3.0 17.3.2
@angular/compiler 17.3.0 17.3.1
@angular/compiler-cli 17.3.0 17.3.1
@capacitor/cli 5.7.3 5.7.4
@typescript-eslint/eslint-plugin 7.3.1 7.4.0
@typescript-eslint/parser 7.3.1 7.4.0
eslint-plugin-jsdoc 48.2.1 48.2.2
typescript 5.4.2 5.4.3

Updates @angular/cdk from 17.3.0 to 17.3.1

Release notes

Sourced from @​angular/cdk's releases.

v17.3.1

17.3.1 "clay-paradox" (2024-03-20)

cdk

Commit Description
fix - 31e30883a3 drag-drop: optionally inject parent drag in preview and placeholder (#28750)
Changelog

Sourced from @​angular/cdk's changelog.

17.3.1 "clay-paradox" (2024-03-20)

cdk

Commit Type Description
31e30883a3 fix drag-drop: optionally inject parent drag in preview and placeholder (#28750)

18.0.0-next.0 "diamond-dachshund" (2024-03-14)

material

Commit Type Description
e2a45bf1e feat core: Allow namespacing ripple-loader event handler (#28699)

Commits
  • 1623d66 release: cut the v17.3.1 release
  • ef0a97e build: bump node version on CI (#28752)
  • 31e3088 fix(cdk/drag-drop): optionally inject parent drag in preview and placeholder ...
  • 85b9424 docs(material/form-field): Update example to not call function in template (#...
  • See full diff in compare view


Updates @angular/common from 17.3.0 to 17.3.1

Release notes

Sourced from @​angular/common's releases.

v17.3.1

17.3.1 (2024-03-20)

compiler

Commit Description
fix - c0788200e2 capture data bindings for content projection purposes in blocks (#54876)

compiler-cli

Commit Description
fix - 99e9474aa2 symbol feature detection for the compiler (#54711)
Changelog

Sourced from @​angular/common's changelog.

17.3.1 (2024-03-20)

compiler

Commit Type Description
c0788200e2 fix capture data bindings for content projection purposes in blocks (#54876)

compiler-cli

Commit Type Description
99e9474aa2 fix symbol feature detection for the compiler (#54711)

18.0.0-next.0 (2024-03-14)

Breaking Changes

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.
  • 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.
  • When Angular runs change detection, it will continue to refresh any views attached to ApplicationRef that are still marked for check after one round completes. In rare cases, this can result in infinite loops when certain patterns continue to mark views for check using ChangeDetectorRef.detectChanges. This will be surfaced as a runtime error with the NG0103 code.
  • The ComponentFixture.autoDetect feature now executes change detection for the fixture within ApplicationRef.tick. This more closely matches the behavior of how a component would refresh in production. The order of component refresh in tests may be slightly affected as a result, especially when dealing with additional components attached to the application, such as dialogs. Tests sensitive to this type of change (such as screenshot tests) may need to be updated. Concretely, this change means that the component will refresh before additional views attached to ApplicationRef (i.e. dialog components). Prior to this change, the fixture component would refresh after other views attached to the application.
  • The exact timing of change detection execution when using event or run coalescing with NgZone is now the first of either setTimeout or requestAnimationFrame. Code which relies on this timing (usually by accident) will need to be adjusted. If a callback needs to execute after change detection, we recommend afterNextRender instead of something like setTimeout.
  • Newly created and views marked for check and reattached

... (truncated)

Commits


Updates @angular/core from 17.3.0 to 17.3.1

Release notes

Sourced from @​angular/core's releases.

v17.3.1

17.3.1 (2024-03-20)

compiler

Commit Description
fix - c0788200e2 capture data bindings for content projection purposes in blocks (#54876)

compiler-cli

Commit Description
fix - 99e9474aa2 symbol feature detection for the compiler (#54711)
Changelog

Sourced from @​angular/core's changelog.

17.3.1 (2024-03-20)

compiler

Commit Type Description
c0788200e2 fix capture data bindings for content projection purposes in blocks (#54876)

compiler-cli

Commit Type Description
99e9474aa2 fix symbol feature detection for the compiler (#54711)

18.0.0-next.0 (2024-03-14)

Breaking Changes

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.
  • 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.
  • When Angular runs change detection, it will continue to refresh any views attached to ApplicationRef that are still marked for check after one round completes. In rare cases, this can result in infinite loops when certain patterns continue to mark views for check using ChangeDetectorRef.detectChanges. This will be surfaced as a runtime error with the NG0103 code.
  • The ComponentFixture.autoDetect feature now executes change detection for the fixture within ApplicationRef.tick. This more closely matches the behavior of how a component would refresh in production. The order of component refresh in tests may be slightly affected as a result, especially when dealing with additional components attached to the application, such as dialogs. Tests sensitive to this type of change (such as screenshot tests) may need to be updated. Concretely, this change means that the component will refresh before additional views attached to ApplicationRef (i.e. dialog components). Prior to this change, the fixture component would refresh after other views attached to the application.
  • The exact timing of change detection execution when using event or run coalescing with NgZone is now the first of either setTimeout or requestAnimationFrame. Code which relies on this timing (usually by accident) will need to be adjusted. If a callback needs to execute after change detection, we recommend afterNextRender instead of something like setTimeout.
  • Newly created and views marked for check and reattached

... (truncated)

Commits
  • e70228a refactor(core): Add hydration missmatch on the component rather than the node...
  • 1f5ab96 refactor(core): allow passing an environment injector while creating a view (...
  • c078820 fix(compiler): capture data bindings for content projection purposes in block...
  • See full diff in compare view


Updates @angular/forms from 17.3.0 to 17.3.1

Release notes

Sourced from @​angular/forms's releases.

v17.3.1

17.3.1 (2024-03-20)

compiler

Commit Description
fix - c0788200e2 capture data bindings for content projection purposes in blocks (#54876)

compiler-cli

Commit Description
fix - 99e9474aa2 symbol feature detection for the compiler (#54711)
Changelog

Sourced from @​angular/forms's changelog.

17.3.1 (2024-03-20)

compiler

Commit Type Description
c0788200e2 fix capture data bindings for content projection purposes in blocks (#54876)

compiler-cli

Commit Type Description
99e9474aa2 fix symbol feature detection for the compiler (#54711)

18.0.0-next.0 (2024-03-14)

Breaking Changes

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.
  • 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.
  • When Angular runs change detection, it will continue to refresh any views attached to ApplicationRef that are still marked for check after one round completes. In rare cases, this can result in infinite loops when certain patterns continue to mark views for check using ChangeDetectorRef.detectChanges. This will be surfaced as a runtime error with the NG0103 code.
  • The ComponentFixture.autoDetect feature now executes change detection for the fixture within ApplicationRef.tick. This more closely matches the behavior of how a component would refresh in production. The order of component refresh in tests may be slightly affected as a result, especially when dealing with additional components attached to the application, such as dialogs. Tests sensitive to this type of change (such as screenshot tests) may need to be updated. Concretely, this change means that the component will refresh before additional views attached to ApplicationRef (i.e. dialog components). Prior to this change, the fixture component would refresh after other views attached to the application.
  • The exact timing of change detection execution when using event or run coalescing with NgZone is now the first of either setTimeout or requestAnimationFrame. Code which relies on this timing (usually by accident) will need to be adjusted. If a callback needs to execute after change detection, we recommend afterNextRender instead of something like setTimeout.
  • Newly created and views marked for check and reattached

... (truncated)

Commits


Updates @angular/platform-browser from 17.3.0 to 17.3.1

Release notes

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

v17.3.1

17.3.1 (2024-03-20)

compiler

Commit Description
fix - c0788200e2 capture data bindings for content projection purposes in blocks (#54876)

compiler-cli

Commit Description
fix - 99e9474aa2 symbol feature detection for the compiler (#54711)
Changelog

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

17.3.1 (2024-03-20)

compiler

Commit Type Description
c0788200e2 fix capture data bindings for content projection purposes in blocks (#54876)

compiler-cli

Commit Type Description
99e9474aa2 fix symbol feature detection for the compiler (#54711)

18.0.0-next.0 (2024-03-14)

Breaking Changes

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.
  • 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.
  • When Angular runs change detection, it will continue to refresh any views attached to ApplicationRef that are still marked for check after one round completes. In rare cases, this can result in infinite loops when certain patterns continue to mark views for check using ChangeDetectorRef.detectChanges. This will be surfaced as a runtime error with the NG0103 code.
  • The ComponentFixture.autoDetect feature now executes change detection for the fixture within ApplicationRef.tick. This more closely matches the behavior of how a component would refresh in production. The order of component refresh in tests may be slightly affected as a result, especially when dealing with additional components attached to the application, such as dialogs. Tests sensitive to this type of change (such as screenshot tests) may need to be updated. Concretely, this change means that the component will refresh before additional views attached to ApplicationRef (i.e. dialog components). Prior to this change, the fixture component would refresh after other views attached to the application.
  • The exact timing of change detection execution when using event or run coalescing with NgZone is now the first of either setTimeout or requestAnimationFrame. Code which relies on this timing (usually by accident) will need to be adjusted. If a callback needs to execute after change detection, we recommend afterNextRender instead of something like setTimeout.
  • Newly created and views marked for check and reattached

... (truncated)

Commits


Updates @angular/platform-browser-dynamic from 17.3.0 to 17.3.1

Release notes

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

v17.3.1

17.3.1 (2024-03-20)

compiler

Commit Description
fix - c0788200e2 capture data bindings for content projection purposes in blocks (#54876)

compiler-cli

Commit Description
fix - 99e9474aa2 symbol feature detection for the compiler (#54711)
Changelog

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

17.3.1 (2024-03-20)

compiler

Commit Type Description
c0788200e2 fix capture data bindings for content projection purposes in blocks (#54876)

compiler-cli

Commit Type Description
99e9474aa2 fix symbol feature detection for the compiler (#54711)

18.0.0-next.0 (2024-03-14)

Breaking Changes

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.
  • 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.
  • When Angular runs change detection, it will continue to refresh any views attached to ApplicationRef that are still marked for check after one round completes. In rare cases, this can result in infinite loops when certain patterns continue to mark views for check using ChangeDetectorRef.detectChanges. This will be surfaced as a runtime error with the NG0103 code.
  • The ComponentFixture.autoDetect feature now executes change detection for the fixture within ApplicationRef.tick. This more closely matches the behavior of how a component would refresh in production. The order of component refresh in tests may be slightly affected as a result, especially when dealing with additional components attached to the application, such as dialogs. Tests sensitive to this type of change (such as screenshot tests) may need to be updated. Concretely, this change means that the component will refresh before additional views attached to ApplicationRef (i.e. dialog components). Prior to this change, the fixture component would refresh after other views attached to the application.
  • The exact timing of change detection execution when using event or run coalescing with NgZone is now the first of either setTimeout or requestAnimationFrame. Code which relies on this timing (usually by accident) will need to be adjusted. If a callback needs to execute after change detection, we recommend afterNextRender instead of something like setTimeout.
  • Newly created and views marked for check and reattached

... (truncated)

Commits


Updates @angular/router from 17.3.0 to 17.3.1

Release notes

Sourced from @​angular/router's releases.

v17.3.1

17.3.1 (2024-03-20)

compiler

Commit Description
fix - c0788200e2 capture data bindings for content projection purposes in blocks (#54876)

compiler-cli

Commit Description
fix - 99e9474aa2 symbol feature detection for the compiler (#54711)
Changelog

Sourced from @​angular/router's changelog.

17.3.1 (2024-03-20)

compiler

Commit Type Description
c0788200e2 fix capture data bindings for content projection purposes in blocks (#54876)

compiler-cli

Commit Type Description
99e9474aa2 fix symbol feature detection for the compiler (#54711)

18.0.0-next.0 (2024-03-14)

Breaking Changes

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.
  • 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.
  • When Angular runs change detection, it will continue to refresh any views attached to ApplicationRef that are still marked for check after one round completes. In rare cases, this can result in infinite loops when certain patterns continue to mark views for check using ChangeDetectorRef.detectChanges. This will be surfaced as a runtime error with the NG0103 code.
  • The ComponentFixture.autoDetect feature now executes change detection for the fixture within ApplicationRef.tick. This more closely matches the behavior of how a component would refresh in production. The order of component refresh in tests may be slightly affected as a result, especially when dealing with additional components attached to the application, such as dialogs. Tests sensitive to this type of change (such as screenshot tests) may need to be updated. Concretely, this change means that the component will refresh before additional views attached to ApplicationRef (i.e. dialog components). Prior to this change, the fixture component would refresh after other views attached to the application.
  • The exact timing of change detection execution when using event or run coalescing with NgZone is now the first of either setTimeout or requestAnimationFrame. Code which relies on this timing (usually by accident) will need to be adjusted. If a callback needs to execute after change detection, we recommend afterNextRender instead of something like setTimeout.
  • Newly created and views marked for check and reattached

... (truncated)

Commits


Updates @capacitor/android from 5.7.3 to 5.7.4

Release notes

Sourced from @​capacitor/android's releases.

5.7.4

5.7.4 (2024-03-20)

Bug Fixes

  • http: change proxy url generation (30a32f4)
Changelog

Sourced from @​capacitor/android's changelog.

5.7.4 (2024-03-20)

Bug Fixes

  • http: change proxy url generation (30a32f4)
Commits


Updates @capacitor/core from 5.7.3 to 5.7.4

Release notes

Sourced from @​capacitor/core's releases.

5.7.4

5.7.4 (2024-03-20)

Bug Fixes

  • http: change proxy url generation (30a32f4)
Changelog

Sourced from @​capacitor/core's changelog.

5.7.4 (2024-03-20)

Bug Fixes

  • http: change proxy url generation (30a32f4)
Commits


Updates @ionic/angular from 7.8.0 to 7.8.2

Release notes

Sourced from @​ionic/angular's releases.

v7.8.2

7.8.2 (2024-03-27)

Bug Fixes

v7.8.1

7.8.1 (2024-03-20)

Bug Fixes

Performance Improvements

Changelog

Sourced from @​ionic/angular's changelog.

7.8.2 (2024-03-27)

Bug Fixes

7.8.1 (2024-03-20)

Bug Fixes

Performance Improvements

Commits


Updates filesize from 10.1.0 to 10.1.1

Changelog

Sourced from filesize's changelog.

10.1.1

Commits
  • cf1dcb7 Version bump to release new types declaration
  • 4268a4e Merge pull request #180 from abaltuta/rework-types
  • af4a6ef fix: types for partial now return a higher order function
  • fbfc87f change: rework types to allow usages like Parameters<typeof filesize>
  • 334d549 Bump @​babel/traverse from 7.23.0 to 7.23.2 (#178)
  • b5d1ea9 Updating README.md
  • fc5d968 Updating README.md
  • d80c457 Generating CHANGELOG.md
  • See full diff in compare view


Updates ionicons from 7.2.2 to 7.3.1

Release notes

Sourced from ionicons's releases.

v7.3.1

7.3.1 (2024-03-27)

Bug Fixes

v7.3.0

7.3.0 (2024-03-20)

Features

v7.2.3

7.2.3 (2024-03-20)

Bug Fixes

  • icon: icon names with numbers are correctly converted to kebab case (#1339) (077168d), closes #1338
Changelog

Sourced from ionicons's changelog.

7.3.1 (2024-03-27)

Bug Fixes

7.3.0 (2024-03-20)

Features

7.3.0 (2024-03-20)

Features

7.2.3 (2024-03-20)

... (truncated)

Commits


Updates @angular-devkit/build-angular from 17.3.0 to 17.3.2

Release notes

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

v17.3.2

17.3.2 (2024-03-25)

@​schematics/angular

Commit Description
fix - 935f931ee rename SSR port env variable

@​angular-devkit/build-angular

Commit Description
fix - c9d436000 Internal server error: Invalid URL when using a non localhost IP
fix - 59fba38ec ensure proper resolution of linked SCSS files
fix - 27dd8f208 service-worker references non-existent named index output
fix - c12907d92 update webpack-dev-middleware to 6.1.2

v17.3.1

17.3.1 (2024-03-20)

@​schematics/angular

Commi... _Description has been truncated_
nicorac commented 3 months ago

@dependabot rebase