Skip to content

Bump the all-updates group with 42 updates#221

Closed
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/npm_and_yarn/dev/all-updates-c1356a4dca
Closed

Bump the all-updates group with 42 updates#221
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/npm_and_yarn/dev/all-updates-c1356a4dca

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Jan 5, 2026

Bumps the all-updates group with 42 updates:

Package From To
@angular/cdk 18.2.11 18.2.14
@angular/common 18.2.11 18.2.14
@angular/core 18.2.11 18.2.14
@angular/forms 18.2.11 18.2.14
@angular/platform-browser 18.2.11 18.2.14
@angular/platform-browser-dynamic 18.2.11 18.2.14
@angular/router 18.2.11 18.2.14
@capacitor-community/contacts 6.1.1 7.1.0
@capacitor/android 6.1.2 8.0.0
@capacitor/app 6.0.1 8.0.0
@capacitor/clipboard 6.0.1 8.0.0
@capacitor/core 6.1.2 8.0.0
@capacitor/device 6.0.1 8.0.0
@capacitor/filesystem 6.0.1 8.0.0
@capacitor/preferences 6.0.2 8.0.0
@capacitor/share 6.0.2 8.0.0
@capacitor/status-bar 6.0.1 8.0.0
@capgo/capacitor-navigation-bar 6.1.64 8.0.7
@ionic/angular 8.3.4 8.7.16
capacitor-native-settings 6.0.1 7.0.2
filesize 10.1.6 11.0.13
ionicons 7.4.0 8.0.13
rxjs 7.8.1 7.8.2
zone.js 0.14.10 0.16.0
@angular-devkit/build-angular 18.2.11 18.2.21
@angular-eslint/builder 18.4.0 18.4.3
@angular-eslint/eslint-plugin 18.4.0 18.4.3
@angular-eslint/eslint-plugin-template 18.4.0 18.4.3
@angular-eslint/template-parser 18.4.0 18.4.3
@angular/cli 18.2.11 18.2.21
@angular/compiler 18.2.11 18.2.14
@angular/compiler-cli 18.2.11 18.2.14
@capacitor/cli 6.1.2 8.0.0
@ionic/angular-toolkit 12.1.1 12.3.0
@types/jasmine 5.1.4 5.1.13
@types/node 22.9.0 25.0.3
@typescript-eslint/eslint-plugin 8.14.0 8.51.0
@typescript-eslint/parser 8.14.0 8.51.0
eslint 9.14.0 9.39.2
eslint-plugin-import 2.31.0 2.32.0
eslint-plugin-jsdoc 50.4.3 61.5.0
typescript 5.5.4 5.9.3

Updates @angular/cdk from 18.2.11 to 18.2.14

Changelog

Sourced from @​angular/cdk's changelog.

18.2.14 "osmium-oracle" (2024-11-19)

cdk

Commit Type Description
3bd89ecd5 fix table: run differ for all columns (#30012)

18.2.13 "strontium-sauce" (2024-11-13)

cdk

Commit Type Description
1ea3ba383 fix listbox: make tabindex zoneless compatible (#29970)
890036064 fix table: set explicit role on all cells (#29987)
3c7de8400 fix testing: allow use of plaintext-only for contenteditable (#29999)

material

Commit Type Description
c643f04ef fix core: incorrect validation in get-theme-color (#29994)
aed9094f9 fix snack-bar: prevent override of snack bar action button color (#27511)

18.2.12 "galaxite-galaxy" (2024-11-06)

material

Commit Type Description
3fc968a59 fix datepicker: use SVG icons for calendar (#29957)

Commits
  • cfc8cf7 release: cut the v18.2.14 release
  • 3bd89ec fix(cdk/table): run differ for all columns (#30012)
  • 86120f1 refactor(cdk/testing): fix out of sync file (#30021)
  • ef9cff3 release: cut the v18.2.13 release
  • 3c7de84 fix(cdk/testing): allow use of plaintext-only for contenteditable (#29999)
  • aed9094 fix(material/snack-bar): prevent override of snack bar action button color (#...
  • c643f04 fix(material/core): incorrect validation in get-theme-color (#29994)
  • 8900360 fix(cdk/table): set explicit role on all cells (#29987)
  • 1ea3ba3 fix(cdk/listbox): make tabindex zoneless compatible (#29970)
  • ccbdb6d release: cut the v18.2.12 release
  • Additional commits viewable in compare view

Updates @angular/common from 18.2.11 to 18.2.14

Release notes

Sourced from @​angular/common's releases.

18.2.14

core

Commit Description
fix - 9d1fb33f5e introduce BootstrapContext for improved server bootstrapping (#63640)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

For more information please see: GHSA-68x2-mx4q-78m7

Changelog

Sourced from @​angular/common's changelog.

18.2.14 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9d2314b4f2bcf3df83ae01552a6fc49834)

core

Commit Type Description
9d1fb33f5e fix introduce BootstrapContext for improved server bootstrapping (#63640)

19.2.15 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

... (truncated)

Commits

Updates @angular/core from 18.2.11 to 18.2.14

Release notes

Sourced from @​angular/core's releases.

18.2.14

core

Commit Description
fix - 9d1fb33f5e introduce BootstrapContext for improved server bootstrapping (#63640)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

For more information please see: GHSA-68x2-mx4q-78m7

Changelog

Sourced from @​angular/core's changelog.

18.2.14 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9d2314b4f2bcf3df83ae01552a6fc49834)

core

Commit Type Description
9d1fb33f5e fix introduce BootstrapContext for improved server bootstrapping (#63640)

19.2.15 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

... (truncated)

Commits
  • 1c30234 ci: update dev-infra github actions to latest SHA (#63640)
  • 9d1fb33 fix(core): introduce BootstrapContext for improved server bootstrapping (#6...
  • 06d70a2 fix(migrations): take care of tests that import both HttpClientModule & HttpC...
  • See full diff in compare view

Updates @angular/forms from 18.2.11 to 18.2.14

Release notes

Sourced from @​angular/forms's releases.

18.2.14

core

Commit Description
fix - 9d1fb33f5e introduce BootstrapContext for improved server bootstrapping (#63640)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

For more information please see: GHSA-68x2-mx4q-78m7

Changelog

Sourced from @​angular/forms's changelog.

18.2.14 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9d2314b4f2bcf3df83ae01552a6fc49834)

core

Commit Type Description
9d1fb33f5e fix introduce BootstrapContext for improved server bootstrapping (#63640)

19.2.15 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

... (truncated)

Commits

Updates @angular/platform-browser from 18.2.11 to 18.2.14

Release notes

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

18.2.14

core

Commit Description
fix - 9d1fb33f5e introduce BootstrapContext for improved server bootstrapping (#63640)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

For more information please see: GHSA-68x2-mx4q-78m7

Changelog

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

18.2.14 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9d2314b4f2bcf3df83ae01552a6fc49834)

core

Commit Type Description
9d1fb33f5e fix introduce BootstrapContext for improved server bootstrapping (#63640)

19.2.15 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

... (truncated)

Commits
  • 1c30234 ci: update dev-infra github actions to latest SHA (#63640)
  • 9d1fb33 fix(core): introduce BootstrapContext for improved server bootstrapping (#6...
  • See full diff in compare view

Updates @angular/platform-browser-dynamic from 18.2.11 to 18.2.14

Release notes

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

18.2.14

core

Commit Description
fix - 9d1fb33f5e introduce BootstrapContext for improved server bootstrapping (#63640)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

For more information please see: GHSA-68x2-mx4q-78m7

Changelog

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

18.2.14 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9d2314b4f2bcf3df83ae01552a6fc49834)

core

Commit Type Description
9d1fb33f5e fix introduce BootstrapContext for improved server bootstrapping (#63640)

19.2.15 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

... (truncated)

Commits

Updates @angular/router from 18.2.11 to 18.2.14

Release notes

Sourced from @​angular/router's releases.

18.2.14

core

Commit Description
fix - 9d1fb33f5e introduce BootstrapContext for improved server bootstrapping (#63640)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

For more information please see: GHSA-68x2-mx4q-78m7

Changelog

Sourced from @​angular/router's changelog.

18.2.14 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9d2314b4f2bcf3df83ae01552a6fc49834)

core

Commit Type Description
9d1fb33f5e fix introduce BootstrapContext for improved server bootstrapping (#63640)

19.2.15 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

... (truncated)

Commits

Updates @capacitor-community/contacts from 6.1.1 to 7.1.0

Release notes

Sourced from @​capacitor-community/contacts's releases.

v7.1.0

What's Changed

New Contributors

Full Changelog: capacitor-community/contacts@v7.0.0...v7.1.0

v7.0.0

https://github.com/capacitor-community/contacts/blob/main/CHANGELOG.md#700-2025-04-08

Commits

Updates @capacitor/android from 6.1.2 to 8.0.0

Release notes

Sourced from @​capacitor/android's releases.

8.0.0

8.0.0 (2025-12-08)

Bug Fixes

  • cli: Android apk name multi flavor dimensions parsing (#7598) (2dc20ee)
  • cli: make migrate update to 8.0.0 (#8250) (ee8ba7b)
  • ios: move PrivacyInfo.xcprivacy to resource_bundles to fix build… (#8264) (e6f50b8)

Features

  • android: Improving SystemBars inset handling (#8268) (81ae30a)

8.0.0-beta.0

8.0.0-beta.0 (2025-11-14)

Bug Fixes

  • android-template: replace deprecated Gradle property name syntax (#8204) (e48694b)
  • android: add command not changing namespace (#8224) (60cf666)
  • android: remove kotlin-bom dependency (#8237) (a894749)
  • android: replace deprecated Gradle property name syntax (b68ac9e)
  • cli: fix cap run command for yarn pnp mode (#7754) (79ace5c)
  • cli: replace deprecated Gradle property name syntax (#8207) (3912030)
  • ios: use ReturnPromise for SystemBars returnType (#8239) (eb51288)
  • make Plugin.resolve act consistently (#8225) (06aeb9e)

Features

  • android-template: Update com.google.gms:google-service version (#8195) (ba05dd3)
  • cli: Select a cap run target by target name (#8199) (b30c472)
  • iOS: Allow plugins to hook into handling WebView URL authentication challenges (#8216) (e8507cf)
  • System Bars Plugin (#8180) (a32216a)

8.0.0-alpha.3

8.0.0-alpha.3 (2025-10-22)

Bug Fixes

  • cli: change SPM incompatible plugin message (#8129) (28c2a96)
  • cli: Don't exclude Cordova plugins from SPM management (#8140) (69bbd3d)
  • cli: prefer studio executable over studio.sh on linux if available (#8110) (62bd16f)
  • ios: also call bridge.reset() on webViewWebContentProcessDidTerminate (#8143) (1de1f15)
  • ios: Remove Cordova UIView extension (#8189) (0c7bcd3)
  • ios: replace deprecation warnings (#8156) (e76b29b)

... (truncated)

Changelog

Sourced from @​capacitor/android's changelog.

8.0.0 (2025-12-08)

Bug Fixes

  • cli: Android apk name multi flavor dimensions parsing (#7598) (2dc20ee)
  • cli: make migrate update to 8.0.0 (#8250) (ee8ba7b)
  • ios: move PrivacyInfo.xcprivacy to resource_bundles to fix build… (#8264) (e6f50b8)

Features

  • android: Improving SystemBars inset handling (#8268) (81ae30a)

8.0.0-beta.0 (2025-11-14)

Bug Fixes

  • android-template: replace deprecated Gradle property name syntax (#8204) (e48694b)
  • android: add command not changing namespace (#8224) (60cf666)
  • android: remove kotlin-bom dependency (#8237) (a894749)
  • android: replace deprecated Gradle property name syntax (b68ac9e)
  • cli: fix cap run command for yarn pnp mode (#7754) (79ace5c)
  • cli: replace deprecated Gradle property name syntax (#8207) (3912030)
  • ios: use ReturnPromise for SystemBars returnType (#8239) (eb51288)
  • make Plugin.resolve act consistently (#8225) (06aeb9e)

Features

  • android-template: Update com.google.gms:google-service version (#8195) (ba05dd3)
  • cli: Select a cap run target by target name (#8199) (b30c472)
  • iOS: Allow plugins to hook into handling WebView URL authentication challenges (#8216) (e8507cf)
  • System Bars Plugin (#8180) (a32216a)

8.0.0-alpha.3 (2025-10-22)

Bug Fixes

  • cli: change SPM incompatible plugin message (#8129) (28c2a96)
  • cli: Don't exclude Cordova plugins from SPM management (#8140) (69bbd3d)
  • cli: prefer studio executable over studio.sh on linux if available (#8110) (62bd16f)
  • ios: also call bridge.reset() on webViewWebContentProcessDidTerminate (#8143) (1de1f15)
  • ios: Remove Cordova UIView extension (#8189) (0c7bcd3)
  • ios: replace deprecation warnings (#8156) (e76b29b)
  • ios: Silence WKProcessPool warning (#8184) (b6abcb7)

8.0.0-alpha.2 (2025-08-20)

Note: Version bump only for package capacitor

8.0.0-alpha.1 (2025-08-20)

... (truncated)

Commits
  • 1ef73a3 Release 8.0.0
  • a74a364 chore(cli): Add google-maps plugin to migrate command (#8265)
  • 81ae30a feat(android): Improving SystemBars inset handling (#8268)
  • e6f50b8 fix(ios): move PrivacyInfo.xcprivacy to resource_bundles to fix build… (#8264)
  • 2dc20ee fix(cli): Android apk name multi flavor dimensions parsing (#7598)
  • 5b27fdf docs(core): fix typo in HttpResponse url description (#8260)
  • ee8ba7b fix(cli): make migrate update to 8.0.0 (#8250)
  • 441208e chore(cli): Add geolocation to migrate cmd plugin changes (#8253)
  • d3c0c19 Release 8.0.0-beta.0
  • 0de935b docs(system-bars): publish file on npm (#8240)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by capacitor-plugin-bot, a new releaser for @​capacitor/android since your current version.


Updates @capacitor/app from 6.0.1 to 8.0.0

Release notes

Sourced from @​capacitor/app's releases.

@​capacitor/app-launcher@​8.0.0

8.0.0 (2025-12-08)

Note: Version bump only for package @​capacitor/app-launcher

@​capacitor/app@​8.0.0

8.0.0 (2025-12-08)

Note: Version bump only for package @​capacitor/app

@​capacitor/app-launcher@​8.0.0-beta.0

8.0.0-beta.0 (2025-11-14)

Note: Version bump only for package @​capacitor/app-launcher

@​capacitor/app@​8.0.0-beta.0

8.0.0-beta.0 (2025-11-14)

Note: Version bump only for package @​capacitor/app

@​capacitor/app@​7.1.1

7.1.1 (2025-11-26)

Note: Version bump only for package @​capacitor/app

@​capacitor/app-launcher@​7.0.3

7.0.3 (2025-11-26)

Note: Version bump only for package @​capacitor/app-launcher

@​capacitor/app-launcher@​6.0.4

6.0.4 (2025-11-26)

Note: Version bump only for package @​capacitor/app-launcher

@​capacitor/app@​6.0.3

6.0.3 (2025-11-26)

Note: Version bump only for package @​capacitor/app

Commits
  • c1fe562 chore(release): publish [skip ci]
  • 77bb93b chore: Use Capacitor 8 stable version (#2452)
  • 8152fc1 docs(splash-screen): fix typo in README regarding Android 12 issues (#2456)
  • a58d05e docs(README): Indicate that plugins are for Capacitor 8 (#2453)
  • 87a4d5f chore(screen-orientation): fix small typo screen orientation (#2449)
  • 0303a85 fix(ios): handle deprecation warning on status-bar (#2448)
  • 06921fb chore(release): publish [skip ci]
  • 4c05924 chore: upgrade npm dependencies for all plugins (#2440)
  • 8068706 fix(status-bar)!: remove notification related extensions (#2442)
  • 1a4e989 chore(ios): update spm from 7.0.0 to 8.0.0-beta (#2434)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by capacitor-plugin-bot, a new releaser for @​capacitor/app since your current version.


Updates @capacitor/clipboard from 6.0.1 to 8.0.0

Release notes

Sourced from @​capacitor/clipboard's releases.

@​capacitor/clipboard@​8.0.0

8.0.0 (2025-12-08)

Note: Version bump only for package @​capacitor/clipboard

@​capacitor/clipboard@​8.0.0-beta.0

8.0.0-beta.0 (2025-11-14)

Note: Version bump only for package @​capacitor/clipboard

@​capacitor/clipboard@​7.0.3

7.0.3 (2025-11-26)

Note: Version bump only for package @​capacitor/clipboard

@​capacitor/clipboard@​6.0.3

6.0.3 (2025-11-26)

Note: Version bump only for package @​capacitor/clipboard

Commits
  • c1fe562 chore(release): publish [skip ci]
  • 77bb93b chore: Use Capacitor 8 stable version (

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jan 5, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/dev/all-updates-c1356a4dca branch from 5ee32b5 to fe4e2f8 Compare March 2, 2026 17:12
Bumps the all-updates group with 42 updates:

| Package | From | To |
| --- | --- | --- |
| [@angular/cdk](https://github.com/angular/components) | `18.2.11` | `18.2.14` |
| [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common) | `18.2.11` | `18.2.14` |
| [@angular/core](https://github.com/angular/angular/tree/HEAD/packages/core) | `18.2.11` | `18.2.14` |
| [@angular/forms](https://github.com/angular/angular/tree/HEAD/packages/forms) | `18.2.11` | `18.2.14` |
| [@angular/platform-browser](https://github.com/angular/angular/tree/HEAD/packages/platform-browser) | `18.2.11` | `18.2.14` |
| [@angular/platform-browser-dynamic](https://github.com/angular/angular/tree/HEAD/packages/platform-browser-dynamic) | `18.2.11` | `18.2.14` |
| [@angular/router](https://github.com/angular/angular/tree/HEAD/packages/router) | `18.2.11` | `18.2.14` |
| [@capacitor-community/contacts](https://github.com/capacitor-community/contacts) | `6.1.1` | `7.1.0` |
| [@capacitor/android](https://github.com/ionic-team/capacitor) | `6.1.2` | `8.0.0` |
| [@capacitor/app](https://github.com/ionic-team/capacitor-plugins) | `6.0.1` | `8.0.0` |
| [@capacitor/clipboard](https://github.com/ionic-team/capacitor-plugins) | `6.0.1` | `8.0.0` |
| [@capacitor/core](https://github.com/ionic-team/capacitor) | `6.1.2` | `8.0.0` |
| [@capacitor/device](https://github.com/ionic-team/capacitor-plugins) | `6.0.1` | `8.0.0` |
| [@capacitor/filesystem](https://github.com/ionic-team/capacitor-filesystem) | `6.0.1` | `8.0.0` |
| [@capacitor/preferences](https://github.com/ionic-team/capacitor-plugins) | `6.0.2` | `8.0.0` |
| [@capacitor/share](https://github.com/ionic-team/capacitor-plugins) | `6.0.2` | `8.0.0` |
| [@capacitor/status-bar](https://github.com/ionic-team/capacitor-plugins) | `6.0.1` | `8.0.0` |
| [@capgo/capacitor-navigation-bar](https://github.com/Cap-go/capacitor-navigation-bar) | `6.1.64` | `8.0.7` |
| [@ionic/angular](https://github.com/ionic-team/ionic-framework) | `8.3.4` | `8.7.16` |
| [capacitor-native-settings](https://github.com/RaphaelWoude/capacitor-native-settings) | `6.0.1` | `7.0.2` |
| [filesize](https://github.com/avoidwork/filesize.js) | `10.1.6` | `11.0.13` |
| [ionicons](https://github.com/ionic-team/ionicons) | `7.4.0` | `8.0.13` |
| [rxjs](https://github.com/reactivex/rxjs) | `7.8.1` | `7.8.2` |
| [zone.js](https://github.com/angular/angular/tree/HEAD/packages/zone.js) | `0.14.10` | `0.16.0` |
| [@angular-devkit/build-angular](https://github.com/angular/angular-cli) | `18.2.11` | `18.2.21` |
| [@angular-eslint/builder](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/builder) | `18.4.0` | `18.4.3` |
| [@angular-eslint/eslint-plugin](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin) | `18.4.0` | `18.4.3` |
| [@angular-eslint/eslint-plugin-template](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin-template) | `18.4.0` | `18.4.3` |
| [@angular-eslint/template-parser](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/template-parser) | `18.4.0` | `18.4.3` |
| [@angular/cli](https://github.com/angular/angular-cli) | `18.2.11` | `18.2.21` |
| [@angular/compiler](https://github.com/angular/angular/tree/HEAD/packages/compiler) | `18.2.11` | `18.2.14` |
| [@angular/compiler-cli](https://github.com/angular/angular/tree/HEAD/packages/compiler-cli) | `18.2.11` | `18.2.14` |
| [@capacitor/cli](https://github.com/ionic-team/capacitor) | `6.1.2` | `8.0.0` |
| [@ionic/angular-toolkit](https://github.com/ionic-team/angular-toolkit) | `12.1.1` | `12.3.0` |
| [@types/jasmine](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jasmine) | `5.1.4` | `5.1.13` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.9.0` | `25.0.3` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.14.0` | `8.51.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.14.0` | `8.51.0` |
| [eslint](https://github.com/eslint/eslint) | `9.14.0` | `9.39.2` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.31.0` | `2.32.0` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `50.4.3` | `61.5.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.4` | `5.9.3` |


Updates `@angular/cdk` from 18.2.11 to 18.2.14
- [Release notes](https://github.com/angular/components/releases)
- [Changelog](https://github.com/angular/components/blob/main/CHANGELOG.md)
- [Commits](angular/components@18.2.11...18.2.14)

Updates `@angular/common` from 18.2.11 to 18.2.14
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/18.2.14/packages/common)

Updates `@angular/core` from 18.2.11 to 18.2.14
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/18.2.14/packages/core)

Updates `@angular/forms` from 18.2.11 to 18.2.14
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/18.2.14/packages/forms)

Updates `@angular/platform-browser` from 18.2.11 to 18.2.14
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/18.2.14/packages/platform-browser)

Updates `@angular/platform-browser-dynamic` from 18.2.11 to 18.2.14
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/18.2.14/packages/platform-browser-dynamic)

Updates `@angular/router` from 18.2.11 to 18.2.14
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/18.2.14/packages/router)

Updates `@capacitor-community/contacts` from 6.1.1 to 7.1.0
- [Release notes](https://github.com/capacitor-community/contacts/releases)
- [Changelog](https://github.com/capacitor-community/contacts/blob/main/CHANGELOG.md)
- [Commits](capacitor-community/contacts@v6.1.1...v7.1.0)

Updates `@capacitor/android` from 6.1.2 to 8.0.0
- [Release notes](https://github.com/ionic-team/capacitor/releases)
- [Changelog](https://github.com/ionic-team/capacitor/blob/main/CHANGELOG.md)
- [Commits](ionic-team/capacitor@6.1.2...8.0.0)

Updates `@capacitor/app` from 6.0.1 to 8.0.0
- [Release notes](https://github.com/ionic-team/capacitor-plugins/releases)
- [Changelog](https://github.com/ionic-team/capacitor-plugins/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/app@6.0.1...@capacitor/app@8.0.0)

Updates `@capacitor/clipboard` from 6.0.1 to 8.0.0
- [Release notes](https://github.com/ionic-team/capacitor-plugins/releases)
- [Changelog](https://github.com/ionic-team/capacitor-plugins/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/clipboard@6.0.1...@capacitor/clipboard@8.0.0)

Updates `@capacitor/core` from 6.1.2 to 8.0.0
- [Release notes](https://github.com/ionic-team/capacitor/releases)
- [Changelog](https://github.com/ionic-team/capacitor/blob/main/CHANGELOG.md)
- [Commits](ionic-team/capacitor@6.1.2...8.0.0)

Updates `@capacitor/device` from 6.0.1 to 8.0.0
- [Release notes](https://github.com/ionic-team/capacitor-plugins/releases)
- [Changelog](https://github.com/ionic-team/capacitor-plugins/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/device@6.0.1...@capacitor/device@8.0.0)

Updates `@capacitor/filesystem` from 6.0.1 to 8.0.0
- [Release notes](https://github.com/ionic-team/capacitor-filesystem/releases)
- [Changelog](https://github.com/ionic-team/capacitor-filesystem/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ionic-team/capacitor-filesystem/commits/v8.0.0)

Updates `@capacitor/preferences` from 6.0.2 to 8.0.0
- [Release notes](https://github.com/ionic-team/capacitor-plugins/releases)
- [Changelog](https://github.com/ionic-team/capacitor-plugins/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/preferences@6.0.2...@capacitor/preferences@8.0.0)

Updates `@capacitor/share` from 6.0.2 to 8.0.0
- [Release notes](https://github.com/ionic-team/capacitor-plugins/releases)
- [Changelog](https://github.com/ionic-team/capacitor-plugins/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/share@6.0.2...@capacitor/share@8.0.0)

Updates `@capacitor/status-bar` from 6.0.1 to 8.0.0
- [Release notes](https://github.com/ionic-team/capacitor-plugins/releases)
- [Changelog](https://github.com/ionic-team/capacitor-plugins/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/status-bar@6.0.1...@capacitor/status-bar@8.0.0)

Updates `@capgo/capacitor-navigation-bar` from 6.1.64 to 8.0.7
- [Release notes](https://github.com/Cap-go/capacitor-navigation-bar/releases)
- [Changelog](https://github.com/Cap-go/capacitor-navigation-bar/blob/main/CHANGELOG.md)
- [Commits](Cap-go/capacitor-navigation-bar@6.1.64...8.0.7)

Updates `@ionic/angular` from 8.3.4 to 8.7.16
- [Release notes](https://github.com/ionic-team/ionic-framework/releases)
- [Changelog](https://github.com/ionic-team/ionic-framework/blob/main/CHANGELOG.md)
- [Commits](ionic-team/ionic-framework@v8.3.4...v8.7.16)

Updates `capacitor-native-settings` from 6.0.1 to 7.0.2
- [Release notes](https://github.com/RaphaelWoude/capacitor-native-settings/releases)
- [Commits](RaphaelWoude/capacitor-native-settings@v6.0.1...v7.0.2)

Updates `filesize` from 10.1.6 to 11.0.13
- [Changelog](https://github.com/avoidwork/filesize.js/blob/master/CHANGELOG.md)
- [Commits](avoidwork/filesize.js@10.1.6...11.0.13)

Updates `ionicons` from 7.4.0 to 8.0.13
- [Release notes](https://github.com/ionic-team/ionicons/releases)
- [Commits](ionic-team/ionicons@v7.4.0...v8.0.13)

Updates `rxjs` from 7.8.1 to 7.8.2
- [Release notes](https://github.com/reactivex/rxjs/releases)
- [Changelog](https://github.com/ReactiveX/rxjs/blob/7.8.2/CHANGELOG.md)
- [Commits](ReactiveX/rxjs@7.8.1...7.8.2)

Updates `zone.js` from 0.14.10 to 0.16.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/packages/zone.js/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/zone.js-0.16.0/packages/zone.js)

Updates `@angular-devkit/build-angular` from 18.2.11 to 18.2.21
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md)
- [Commits](angular/angular-cli@18.2.11...18.2.21)

Updates `@angular-eslint/builder` from 18.4.0 to 18.4.3
- [Release notes](https://github.com/angular-eslint/angular-eslint/releases)
- [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/builder/CHANGELOG.md)
- [Commits](https://github.com/angular-eslint/angular-eslint/commits/v18.4.3/packages/builder)

Updates `@angular-eslint/eslint-plugin` from 18.4.0 to 18.4.3
- [Release notes](https://github.com/angular-eslint/angular-eslint/releases)
- [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/angular-eslint/angular-eslint/commits/v18.4.3/packages/eslint-plugin)

Updates `@angular-eslint/eslint-plugin-template` from 18.4.0 to 18.4.3
- [Release notes](https://github.com/angular-eslint/angular-eslint/releases)
- [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin-template/CHANGELOG.md)
- [Commits](https://github.com/angular-eslint/angular-eslint/commits/v18.4.3/packages/eslint-plugin-template)

Updates `@angular-eslint/template-parser` from 18.4.0 to 18.4.3
- [Release notes](https://github.com/angular-eslint/angular-eslint/releases)
- [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/template-parser/CHANGELOG.md)
- [Commits](https://github.com/angular-eslint/angular-eslint/commits/v18.4.3/packages/template-parser)

Updates `@angular/cli` from 18.2.11 to 18.2.21
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md)
- [Commits](angular/angular-cli@18.2.11...18.2.21)

Updates `@angular/compiler` from 18.2.11 to 18.2.14
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/18.2.14/packages/compiler)

Updates `@angular/compiler-cli` from 18.2.11 to 18.2.14
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/18.2.14/packages/compiler-cli)

Updates `@capacitor/cli` from 6.1.2 to 8.0.0
- [Release notes](https://github.com/ionic-team/capacitor/releases)
- [Changelog](https://github.com/ionic-team/capacitor/blob/main/CHANGELOG.md)
- [Commits](ionic-team/capacitor@6.1.2...8.0.0)

Updates `@ionic/angular-toolkit` from 12.1.1 to 12.3.0
- [Release notes](https://github.com/ionic-team/angular-toolkit/releases)
- [Changelog](https://github.com/ionic-team/angular-toolkit/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ionic-team/angular-toolkit/compare/@ionic/angular-toolkit@12.1.1...@ionic/angular-toolkit@12.3.0)

Updates `@types/jasmine` from 5.1.4 to 5.1.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jasmine)

Updates `@types/node` from 22.9.0 to 25.0.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@typescript-eslint/eslint-plugin` from 8.14.0 to 8.51.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.51.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.14.0 to 8.51.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.51.0/packages/parser)

Updates `eslint` from 9.14.0 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.14.0...v9.39.2)

Updates `eslint-plugin-import` from 2.31.0 to 2.32.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.31.0...v2.32.0)

Updates `eslint-plugin-jsdoc` from 50.4.3 to 61.5.0
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Commits](gajus/eslint-plugin-jsdoc@v50.4.3...v61.5.0)

Updates `typescript` from 5.5.4 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.5.4...v5.9.3)

---
updated-dependencies:
- dependency-name: "@angular/cdk"
  dependency-version: 18.2.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@angular/common"
  dependency-version: 18.2.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@angular/core"
  dependency-version: 18.2.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@angular/forms"
  dependency-version: 18.2.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@angular/platform-browser"
  dependency-version: 18.2.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@angular/platform-browser-dynamic"
  dependency-version: 18.2.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@angular/router"
  dependency-version: 18.2.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@capacitor-community/contacts"
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@capacitor/android"
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@capacitor/app"
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@capacitor/clipboard"
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@capacitor/core"
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@capacitor/device"
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@capacitor/filesystem"
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@capacitor/preferences"
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@capacitor/share"
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@capacitor/status-bar"
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@capgo/capacitor-navigation-bar"
  dependency-version: 8.0.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@ionic/angular"
  dependency-version: 8.7.16
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: capacitor-native-settings
  dependency-version: 7.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: filesize
  dependency-version: 11.0.13
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: ionicons
  dependency-version: 8.0.13
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: rxjs
  dependency-version: 7.8.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: zone.js
  dependency-version: 0.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@angular-devkit/build-angular"
  dependency-version: 18.2.21
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@angular-eslint/builder"
  dependency-version: 18.4.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@angular-eslint/eslint-plugin"
  dependency-version: 18.4.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@angular-eslint/eslint-plugin-template"
  dependency-version: 18.4.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@angular-eslint/template-parser"
  dependency-version: 18.4.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@angular/cli"
  dependency-version: 18.2.21
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@angular/compiler"
  dependency-version: 18.2.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@angular/compiler-cli"
  dependency-version: 18.2.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@capacitor/cli"
  dependency-version: 8.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@ionic/angular-toolkit"
  dependency-version: 12.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@types/jasmine"
  dependency-version: 5.1.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@types/node"
  dependency-version: 25.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.51.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.51.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: eslint
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: eslint-plugin-import
  dependency-version: 2.32.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: eslint-plugin-jsdoc
  dependency-version: 61.5.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/dev/all-updates-c1356a4dca branch from fe4e2f8 to 75abd8d Compare March 9, 2026 17:10
@nicorac nicorac closed this May 1, 2026
@nicorac nicorac deleted the dependabot/npm_and_yarn/dev/all-updates-c1356a4dca branch May 1, 2026 12:17
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 1, 2026

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant