Skip to content

Bump the all-npm-dependencies group across 1 directory with 5 updates#15

Merged
JonathanPiaget merged 1 commit intomainfrom
dependabot/npm_and_yarn/all-npm-dependencies-9ca07201f0
Oct 24, 2025
Merged

Bump the all-npm-dependencies group across 1 directory with 5 updates#15
JonathanPiaget merged 1 commit intomainfrom
dependabot/npm_and_yarn/all-npm-dependencies-9ca07201f0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 20, 2025

Bumps the all-npm-dependencies group with 5 updates in the / directory:

Package From To
vue 3.5.18 3.5.22
@biomejs/biome 2.1.3 2.2.6
@wxt-dev/module-vue 1.0.2 1.0.3
typescript 5.9.2 5.9.3
vue-tsc 3.0.5 3.1.1

Updates vue from 3.5.18 to 3.5.22

Release notes

Sourced from vue's releases.

v3.5.22

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.21

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.20

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.19

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

Changelog

Sourced from vue's changelog.

3.5.22 (2025-09-25)

Bug Fixes

  • compiler-core: identifiers in switch-case should not be inferred as references (#13923) (5953c9f)
  • compiler-dom: nodes with v-once shouldn't be stringified (#13878) (95c1975)
  • compiler-sfc: add support for @vue-ignore in runtime type resolution (#13906) (ba7f7f9)
  • compiler-sfc: enhance inferRuntimeType to support TSMappedType with indexed access (#13848) (e388f1a), closes #13847
  • compiler-sfc: ensure css custom properties do not start with a digit (#13870) (9c27951)
  • compiler-sfc: ensure props bindings register before compiling template (#13922) (abd5638), closes #13920
  • compiler-ssr: ensure v-show has a higher priority in SSR (#12171) (836b829), closes #12162
  • custom-element: properly mount multiple Teleports in custom element component w/ shadowRoot false (#13900) (5e1e791), closes #13899
  • custom-element: set prop runs pending mutations before disconnect (#13897) (c4a88cd), closes #13315
  • custom-element: use PatchFlags.BAIL for slot when props are present (#13907) (5358bca), closes #13904
  • reactivity: respect readonly during ref unwrapping (#13905) (aba7fed), closes #13903
  • reactivity: update iterator to check for completion instead of value presence (#13761) (2078f8b)
  • runtime-core: simplify block-tracking disabling in h helper (#13841) (75220c7)
  • transition-group: run forceReflow on the correct document (fix #13849) (#13853) (1be5ddf)
  • types: more precise types for Events and added missing definitions (#9675) (8bb8fb2)
  • types: set dom stub type to never instead of {} (#13915) (8620a61), closes #11564
  • types: widen directive arg type from string to any (#13758) (4b71706), closes #13757

Features

  • custom-element: allow specifying additional options for shadowRoot in custom elements (#12965) (47e628d), closes #12964

Reverts

  • Revert "fix(hmr): prevent VUE_HMR_RUNTIME from being overwritten by vue runtime in 3rd-party libraries" (#13925) (6b68f72), closes #13925

3.5.21 (2025-09-02)

Bug Fixes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for vue since your current version.


Updates @biomejs/biome from 2.1.3 to 2.2.6

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.2.6

2.2.6

Patch Changes

  • #7071 a8e7301 Thanks @​ptkagori! - Added the useQwikMethodUsage lint rule for the Qwik domain.

    This rule validates Qwik hook usage. Identifiers matching useXxx must be called only within serialisable reactive contexts (for example, inside component$, route loaders/actions, or within other Qwik hooks), preventing common Qwik antipatterns.

    Invalid:

    // Top-level hook call is invalid.
    const state = useStore({ count: 0 });
    function helper() {
    // Calling a hook in a non-reactive function is invalid.
    const loc = useLocation();
    }

    Valid:

    component$(() => {
      const state = useStore({ count: 0 }); // OK inside component$.
      return <div>{state.count}</div>;
    });
    const handler = $(() => {
    const loc = useLocation(); // OK inside a $-wrapped closure.
    console.log(loc.params);
    });

  • #7685 52071f5 Thanks @​denbezrukov! - Fixed #6981: The NoUnknownPseudoClass rule no longer reports local pseudo-classes when CSS Modules are used.

  • #7640 899f7b2 Thanks @​arendjr! - Fixed #7638: useImportExtensions no longer emits diagnostics on valid import paths that end with a query or hash.

    Example

    // This no longer warns if `index.css` exists:
    import style from "../theme/index.css?inline";
  • #7071 a8e7301 Thanks @​ptkagori! - Added the useQwikValidLexicalScope rule to the Qwik domain.

    This rule helps you avoid common bugs in Qwik components by checking that your variables and functions are declared in the correct place.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.2.6

Patch Changes

  • #7071 a8e7301 Thanks @​ptkagori! - Added the useQwikMethodUsage lint rule for the Qwik domain.

    This rule validates Qwik hook usage. Identifiers matching useXxx must be called only within serialisable reactive contexts (for example, inside component$, route loaders/actions, or within other Qwik hooks), preventing common Qwik antipatterns.

    Invalid:

    // Top-level hook call is invalid.
    const state = useStore({ count: 0 });
    function helper() {
    // Calling a hook in a non-reactive function is invalid.
    const loc = useLocation();
    }

    Valid:

    component$(() => {
      const state = useStore({ count: 0 }); // OK inside component$.
      return <div>{state.count}</div>;
    });
    const handler = $(() => {
    const loc = useLocation(); // OK inside a $-wrapped closure.
    console.log(loc.params);
    });

  • #7685 52071f5 Thanks @​denbezrukov! - Fixed #6981: The NoUnknownPseudoClass rule no longer reports local pseudo-classes when CSS Modules are used.

  • #7640 899f7b2 Thanks @​arendjr! - Fixed #7638: useImportExtensions no longer emits diagnostics on valid import paths that end with a query or hash.

    Example

    // This no longer warns if `index.css` exists:
    import style from "../theme/index.css?inline";
  • #7071 a8e7301 Thanks @​ptkagori! - Added the useQwikValidLexicalScope rule to the Qwik domain.

    This rule helps you avoid common bugs in Qwik components by checking that your variables and functions are declared in the correct place.

    Invalid:

... (truncated)

Commits

Updates @wxt-dev/module-vue from 1.0.2 to 1.0.3

Release notes

Sourced from @​wxt-dev/module-vue's releases.

@​wxt-dev/module-vue v1.0.3

compare changes

🏡 Chore

  • Add funding links to package.json files (#1446)
  • Use PNPM 10's new catelog feature (#1493)
  • Move production dependencies to PNPM 10 catelog (#1494)
  • Stop using PNPM catalog (#1644)
  • Upgrade @aklinker1/check to v2 (#1647)
  • Wxt & @​wxt-dev/module-vue support Vite 7 (#1771)
  • deps: Upgrade typescript from 5.8.3 to 5.9.2 (a6eef643)
  • Create script for managing dependency upgrades (#1875)
  • deps: Upgrade all dev dependencies (#1876)

❤️ Contributors

Changelog

Sourced from @​wxt-dev/module-vue's changelog.

v1.0.3

compare changes

🏡 Chore

  • Add funding links to package.json files (#1446)
  • Use PNPM 10's new catelog feature (#1493)
  • Move production dependencies to PNPM 10 catelog (#1494)
  • Stop using PNPM catalog (#1644)
  • Upgrade @aklinker1/check to v2 (#1647)
  • Wxt & @​wxt-dev/module-vue support Vite 7 (#1771)
  • deps: Upgrade typescript from 5.8.3 to 5.9.2 (a6eef643)
  • Create script for managing dependency upgrades (#1875)
  • deps: Upgrade all dev dependencies (#1876)

❤️ Contributors

Commits
  • 55fed67 chore(release): @​wxt-dev/module-vue v1.0.3
  • 7a81472 chore(deps): Upgrade all dev dependencies (#1876)
  • 9399d8d chore: Create script for managing dependency upgrades (#1875)
  • a6eef64 chore(deps): Upgrade typescript from 5.8.3 to 5.9.2
  • e7db119 chore: wxt & @​wxt-dev/module-vue support Vite 7 (#1771)
  • 6f970ef chore: Upgrade @aklinker1/check to v2 (#1647)
  • 4add882 chore: Stop using PNPM catalog (#1644)
  • 28cff9c chore: Move production dependencies to PNPM 10 catelog (#1494)
  • 8ce197b chore: Use PNPM 10's new catelog feature (#1493)
  • e20de4c chore: Add funding links to package.json files (#1446)
  • Additional commits viewable in compare view

Updates typescript from 5.9.2 to 5.9.3

Release notes

Sourced from typescript's releases.

TypeScript 5.9.3

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

Commits
  • c63de15 Bump version to 5.9.3 and LKG
  • 8428ca4 🤖 Pick PR #62438 (Fix incorrectly ignored dts file fr...) into release-5.9 (#...
  • a131cac 🤖 Pick PR #62351 (Add missing Float16Array constructo...) into release-5.9 (#...
  • 0424333 🤖 Pick PR #62423 (Revert PR 61928) into release-5.9 (#62425)
  • bdb641a 🤖 Pick PR #62311 (Fix parenthesizer rules for manuall...) into release-5.9 (#...
  • 0d9b9b9 🤖 Pick PR #61978 (Restructure CI to prepare for requi...) into release-5.9 (#...
  • 2dce0c5 Intentionally regress one buggy declaration output to an older version (#62163)
  • See full diff in compare view

Updates vue-tsc from 3.0.5 to 3.1.1

Release notes

Sourced from vue-tsc's releases.

v3.1.1

Features

  • feat(language-server): support --tsdk command line arg (#5691)

Bug Fixes

  • fix(language-core): tolerate non-literal export default (#5675) - Thanks to @​KazariEX!
  • fix(language-core): use component instance props as fallthrough attributes (#5686) - Thanks to @​KazariEX!
  • fix(typescript-plugin): determine if variable is Ref by RefSymbol property (#5687) - Thanks to @​KazariEX!
  • fix(language-core): exclude effect of comments on root node (#5689) - Thanks to @​KazariEX!
  • fix(typescript-plugin): place __vue__ in project instead of program (#5690)
  • fix(component-type-helpers): remove deprecated $scopedSlots support for Vue 2
  • fix(language-core): replace markdown links after sfc blocks processing (#5695) - Thanks to @​KazariEX!
  • fix(language-core): do not report unused error on __VLS_export (#5696) - Thanks to @​KazariEX!

Other Changes

  • refactor(language-core): reimplement writeGlobalTypes without side effects

❤️ Thanks to Our Sponsors

... (truncated)

Changelog

Sourced from vue-tsc's changelog.

3.1.1 (2025-10-07)

Features

  • feat(language-server): support --tsdk command line arg (#5691)

Bug Fixes

  • fix(language-core): tolerate non-literal export default (#5675) - Thanks to @​KazariEX!
  • fix(language-core): use component instance props as fallthrough attributes (#5686) - Thanks to @​KazariEX!
  • fix(typescript-plugin): determine if variable is Ref by RefSymbol property (#5687) - Thanks to @​KazariEX!
  • fix(language-core): exclude effect of comments on root node (#5689) - Thanks to @​KazariEX!
  • fix(typescript-plugin): place __vue__ in project instead of program (#5690)
  • fix(component-type-helpers): remove deprecated $scopedSlots support for Vue 2
  • fix(language-core): replace markdown links after sfc blocks processing (#5695) - Thanks to @​KazariEX!
  • fix(language-core): do not report unused error on __VLS_export (#5696) - Thanks to @​KazariEX!

Other Changes

  • refactor(language-core): reimplement writeGlobalTypes without side effects

3.1.0 (2025-09-28)

Performance

Other Changes

  • refactor: drop Vue 2 support (#5636) - Thanks to @​KazariEX!
  • chore(lint): enforce use of type-only imports (#5658) - Thanks to @​so1ve!
  • ci: upgrade node version (#5668) - Thanks to @​so1ve!
  • refactor(typescript-plugin): move reactivity analysis logic to a seperate typescript plugin (#5672) - Thanks to @​KazariEX!

3.0.9 (2025-10-07)

Features

  • feat(language-server): support --tsdk command line arg (#5691)

3.0.8 (2025-09-23)

Features

  • feat(vscode): introduce vue.server.path setting (#5647)

Bug Fixes

  • fix(language-core): initialize properties of VueVirtualCode in constructor (#5635) - Thanks to @​KazariEX!
  • fix(vscode): flatten reactivity visualization decorators (#5642) - Thanks to @​KazariEX!

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all-npm-dependencies group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [vue](https://github.com/vuejs/core) | `3.5.18` | `3.5.22` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.1.3` | `2.2.6` |
| [@wxt-dev/module-vue](https://github.com/wxt-dev/wxt/tree/HEAD/packages/module-vue) | `1.0.2` | `1.0.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.2` | `5.9.3` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `3.0.5` | `3.1.1` |



Updates `vue` from 3.5.18 to 3.5.22
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.18...v3.5.22)

Updates `@biomejs/biome` from 2.1.3 to 2.2.6
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.2.6/packages/@biomejs/biome)

Updates `@wxt-dev/module-vue` from 1.0.2 to 1.0.3
- [Release notes](https://github.com/wxt-dev/wxt/releases)
- [Changelog](https://github.com/wxt-dev/wxt/blob/main/packages/module-vue/CHANGELOG.md)
- [Commits](https://github.com/wxt-dev/wxt/commits/module-vue-v1.0.3/packages/module-vue)

Updates `typescript` from 5.9.2 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.9.2...v5.9.3)

Updates `vue-tsc` from 3.0.5 to 3.1.1
- [Release notes](https://github.com/vuejs/language-tools/releases)
- [Changelog](https://github.com/vuejs/language-tools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vuejs/language-tools/commits/v3.1.1/packages/tsc)

---
updated-dependencies:
- dependency-name: vue
  dependency-version: 3.5.22
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: "@biomejs/biome"
  dependency-version: 2.2.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: "@wxt-dev/module-vue"
  dependency-version: 1.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: vue-tsc
  dependency-version: 3.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Oct 20, 2025
@JonathanPiaget JonathanPiaget merged commit 3b5ff02 into main Oct 24, 2025
5 checks passed
@JonathanPiaget JonathanPiaget deleted the dependabot/npm_and_yarn/all-npm-dependencies-9ca07201f0 branch October 24, 2025 11:07
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