Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the minor group across 1 directory with 13 updates #1848

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 11, 2024

Bumps the minor group with 13 updates in the / directory:

Package From To
@fontsource-variable/source-code-pro 5.0.20 5.0.21
@fontsource-variable/source-sans-3 5.0.22 5.0.23
@playwright/experimental-ct-vue 1.46.1 1.47.0
@playwright/test 1.46.1 1.47.0
typescript 5.5.4 5.6.2
vue-router 4.4.3 4.4.4
vue 3.4.38 3.5.4
@vue/compiler-dom 3.4.38 3.5.4
@nuxt/devtools 1.4.1 1.4.2
@nuxt/module-builder 0.8.3 0.8.4
@nuxt/test-utils 3.14.1 3.14.2
@nuxtjs/i18n 8.5.1 8.5.3
nuxt 3.13.0 3.13.1

Updates @fontsource-variable/source-code-pro from 5.0.20 to 5.0.21

Commits

Updates @fontsource-variable/source-sans-3 from 5.0.22 to 5.0.23

Commits

Updates @playwright/experimental-ct-vue from 1.46.1 to 1.47.0

Release notes

Sourced from @​playwright/experimental-ct-vue's releases.

v1.47.0

Network Tab improvements

The Network tab in the UI mode and trace viewer has several nice improvements:

  • filtering by asset type and URL
  • better display of query string parameters
  • preview of font assets

Network tab now has filters

Credit to @​kubajanik for these wonderful improvements!

--tsconfig CLI option

By default, Playwright will look up the closest tsconfig for each imported file using a heuristic. You can now specify a single tsconfig file in the command line, and Playwright will use it for all imported files, not only test files:

# Pass a specific tsconfig
npx playwright test --tsconfig tsconfig.test.json

APIRequestContext now accepts URLSearchParams and string as query parameters

You can now pass URLSearchParams and string as query parameters to APIRequestContext:

test('query params', async ({ request }) => {
  const searchParams = new URLSearchParams();
  searchParams.set('userId', 1);
  const response = await request.get(
      'https://jsonplaceholder.typicode.com/posts',
      {
        params: searchParams // or as a string: 'userId=1'
      }
  );
  // ...
});

Miscellaneous

  • The mcr.microsoft.com/playwright:v1.47.0 now serves a Playwright image based on Ubuntu 24.04 Noble. To use the 22.04 jammy-based image, please use mcr.microsoft.com/playwright:v1.47.0-jammy instead.
  • The :latest/:focal/:jammy tag for Playwright Docker images is no longer being published. Pin to a specific version for better stability and reproducibility.
  • New option behavior in page.removeAllListeners(), browser.removeAllListeners() and browserContext.removeAllListeners() to wait for ongoing listeners to complete.
  • TLS client certificates can now be passed from memory by passing cert and key as buffers instead of file paths.
  • Attachments with a text/html content type can now be opened in a new tab in the HTML report. This is useful for including third-party reports or other HTML content in the Playwright test report and distributing it to your team.
  • noWaitAfter in locator.selectOption() was deprecated.
  • We've seen reports of WebGL in Webkit misbehaving on GitHub Actions macos-13. We recommend upgrading GitHub Actions to macos-14.

... (truncated)

Commits

Updates @playwright/test from 1.46.1 to 1.47.0

Release notes

Sourced from @​playwright/test's releases.

v1.47.0

Network Tab improvements

The Network tab in the UI mode and trace viewer has several nice improvements:

  • filtering by asset type and URL
  • better display of query string parameters
  • preview of font assets

Network tab now has filters

Credit to @​kubajanik for these wonderful improvements!

--tsconfig CLI option

By default, Playwright will look up the closest tsconfig for each imported file using a heuristic. You can now specify a single tsconfig file in the command line, and Playwright will use it for all imported files, not only test files:

# Pass a specific tsconfig
npx playwright test --tsconfig tsconfig.test.json

APIRequestContext now accepts URLSearchParams and string as query parameters

You can now pass URLSearchParams and string as query parameters to APIRequestContext:

test('query params', async ({ request }) => {
  const searchParams = new URLSearchParams();
  searchParams.set('userId', 1);
  const response = await request.get(
      'https://jsonplaceholder.typicode.com/posts',
      {
        params: searchParams // or as a string: 'userId=1'
      }
  );
  // ...
});

Miscellaneous

  • The mcr.microsoft.com/playwright:v1.47.0 now serves a Playwright image based on Ubuntu 24.04 Noble. To use the 22.04 jammy-based image, please use mcr.microsoft.com/playwright:v1.47.0-jammy instead.
  • The :latest/:focal/:jammy tag for Playwright Docker images is no longer being published. Pin to a specific version for better stability and reproducibility.
  • New option behavior in page.removeAllListeners(), browser.removeAllListeners() and browserContext.removeAllListeners() to wait for ongoing listeners to complete.
  • TLS client certificates can now be passed from memory by passing cert and key as buffers instead of file paths.
  • Attachments with a text/html content type can now be opened in a new tab in the HTML report. This is useful for including third-party reports or other HTML content in the Playwright test report and distributing it to your team.
  • noWaitAfter in locator.selectOption() was deprecated.
  • We've seen reports of WebGL in Webkit misbehaving on GitHub Actions macos-13. We recommend upgrading GitHub Actions to macos-14.

... (truncated)

Commits

Updates typescript from 5.5.4 to 5.6.2

Release notes

Sourced from typescript's releases.

TypeScript 5.6

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • a7e3374 Bump version to 5.6.2 and LKG
  • 2063357 🤖 Pick PR #59708 (LEGO: Pull request from lego/hb_537...) into release-5.6 (#...
  • 4fe7e41 🤖 Pick PR #59670 (fix(59649): ts Move to a new file d...) into release-5.6 (#...
  • 1a03e53 🤖 Pick PR #59761 (this can be nullish) into release-5.6 (#59762)
  • 6212132 Update LKG
  • bbb5faf 🤖 Pick PR #59542 (Fixing delay caused in vscode due t...) into release-5.6 (#...
  • e6914a5 Bump version to 5.6.1-rc and LKG
  • 34121c4 Update LKG
  • 2a30c2a Merge remote-tracking branch 'origin/main' into release-5.6
  • 936a79b Expose TypeChecker. getAwaitedType to public (#59268)
  • Additional commits viewable in compare view

Updates vue-router from 4.4.3 to 4.4.4

Release notes

Sourced from vue-router's releases.

v4.4.4

Please refer to CHANGELOG.md for details.

Commits
  • be68148 release: vue-router@4.4.4
  • 5ff2cd0 feat(loaders): internal mods in route records
  • 4861467 fix(ssr): handle symboless Modules in dynamic imports (#2355)
  • ba3ab9a docs: fix small colors
  • 99c7251 docs: refactor and fix become sponsor button colors
  • 00dd266 chore: pin vue versions because of withDefaults bug in compiler
  • 4d49e2b chore: up deps
  • 9f6a723 chore: up pnpm
  • 7205e38 docs: vue.js de banner removal
  • 8d28f20 docs: Vuejsde conf banner high res (#2352)
  • Additional commits viewable in compare view

Updates vue from 3.4.38 to 3.5.4

Release notes

Sourced from vue's releases.

v3.5.4

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

v3.5.3

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

v3.5.2

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

v3.5.1

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

v3.5.0

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

v3.5.0-rc.1

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

v3.5.0-beta.3

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

v3.5.0-beta.2

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

v3.5.0-beta.1

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

v3.5.0-alpha.5

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

v3.5.0-alpha.4

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

v3.5.0-alpha.3

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

v3.5.0-alpha.2

For stable releases, please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vue's changelog.

3.5.4 (2024-09-10)

Bug Fixes

  • compiler-sfc: correct scoped injection for nesting selector (#11854) (b1de75e), closes #10567
  • reactivity: fix markRaw error on already marked object (#11864) (67d6596), closes #11862
  • Revert "fix: Revert "fix(reactivity): self-referencing computed should refresh"" (e596378)
  • runtime-core: handle shallow reactive arrays in renderList correctly (#11870) (ced59ab), closes #11869
  • types: correctly infer TypeEmits with both tuple and function syntax (#11840) (dad6738), closes #11836

Performance Improvements

  • reactivity: trigger deps directly instead of storing in an array first (#11695) (f80d447)

3.5.3 (2024-09-06)

Bug Fixes

  • hydration: check __asyncHydrate presence for vue3-lazy-hydration compat (#11825) (8e6c337), closes #11793
  • Revert "fix(reactivity): self-referencing computed should refresh" (35c760f)
  • ssr: respect app.config.warnHandler during ssr (bf3d9a2), closes #11830
  • Transition: handle KeepAlive child unmount in Transition out-in mode (#11833) (6b7901d), closes #11775
  • useId: make generated IDs selector compatible (babfb4c), closes #11828

3.5.2 (2024-09-05)

Bug Fixes

  • reactivity: make toRaw work on proxies created by proxyRef (46c3ab1)
  • reactivity: pass oldValue to computed getter (#11813) (98864a7), closes #11812
  • reactivity: prevent endless recursion in computed getters (#11797) (716275d)
  • reactivity: self-referencing computed should refresh (e84c4a6), closes vuejs/core#11797
  • scheduler: prevent duplicate jobs being queued (#11826) (df56cc5), closes #11712 #11807
  • suspense: avoid updating anchor if activeBranch has not been rendered to the actual container (#11818) (3c0d531), closes #11806
  • Transition: handle KeepAlive child unmount in Transition out-in mode (#11778) (3116553), closes #11775
  • types: add HTMLDialogElement missing close event (#11811) (3634f7a)
  • types: added name attribute support to details tag (#11823) (c74176e), closes #11821
  • types: fix defineComponent props inference when setup() has explicit annotation (fca20a3), closes #11803
  • useTemplateRef: properly fix readonly warning in dev and ensure prod behavior consistency (9b7797d), closes #11808 #11816 #11810

Features

... (truncated)

Commits
  • 91212fa release: v3.5.4
  • b1db66a chore(deps): upgrade to TypeScript 5.6
  • e596378 fix: Revert "fix: Revert "fix(reactivity): self-referencing computed should r...
  • 48613bb refactor(scheduler): simplify checkRecursiveUpdates (#11856)
  • f80d447 perf(reactivity): trigger deps directly instead of storing in an array first ...
  • ced59ab fix(runtime-core): handle shallow reactive arrays in renderList correctly (#1...
  • 67d6596 fix(reactivity): fix markRaw error on already marked object (#11864)
  • d13cd22 chore(deps): update build (#11859)
  • 207d0ea chore(deps): update all non-major dependencies (#11858)
  • b1de75e fix(compiler-sfc): correct scoped injection for nesting selector (#11854)
  • Additional commits viewable in compare view

Updates @vue/compiler-dom from 3.4.38 to 3.5.4

Release notes

Sourced from @​vue/compiler-dom's releases.

v3.5.4

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

v3.5.3

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

v3.5.2

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

v3.5.1

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

v3.5.0

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

v3.5.0-rc.1

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

v3.5.0-beta.3

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

v3.5.0-beta.2

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

v3.5.0-beta.1

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

v3.5.0-alpha.5

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

v3.5.0-alpha.4

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

v3.5.0-alpha.3

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

v3.5.0-alpha.2

For stable releases, please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from @​vue/compiler-dom's changelog.

3.5.4 (2024-09-10)

Bug Fixes

  • compiler-sfc: correct scoped injection for nesting selector (#11854) (b1de75e), closes #10567
  • reactivity: fix markRaw error on already marked object (#11864) (67d6596), closes #11862
  • Revert "fix: Revert "fix(reactivity): self-referencing computed should refresh"" (e596378)
  • runtime-core: handle shallow reactive arrays in renderList correctly (#11870) (ced59ab), closes #11869
  • types: correctly infer TypeEmits with both tuple and function syntax (#11840) (dad6738), closes #11836

Performance Improvements

  • reactivity: trigger deps directly instead of storing in an array first (#11695) (f80d447)

3.5.3 (2024-09-06)

Bug Fixes

  • hydration: check __asyncHydrate presence for vue3-lazy-hydration compat (#11825) (8e6c337), closes #11793
  • Revert "fix(reactivity): self-referencing computed should refresh" (35c760f)
  • ssr: respect app.config.warnHandler during ssr (bf3d9a2), closes #11830
  • Transition: handle KeepAlive child unmount in Transition out-in mode (#11833) (6b7901d), closes #11775
  • useId: make generated IDs selector compatible (babfb4c), closes #11828

3.5.2 (2024-09-05)

Bug Fixes

  • reactivity: make toRaw work on proxies created by proxyRef (46c3ab1)
  • reactivity: pass oldValue to computed getter (#11813) (98864a7), closes #11812
  • reactivity: prevent endless recursion in computed getters (#11797) (716275d)
  • reactivity: self-referencing computed should refresh (e84c4a6), closes vuejs/core#11797
  • scheduler: prevent duplicate jobs being queued (#11826) (df56cc5), closes #11712 #11807
  • suspense: avoid updating anchor if activeBranch has not been rendered to the actual container (#11818) (3c0d531), closes #11806
  • Transition: handle KeepAlive child unmount in Transition out-in mode (#11778) (3116553), closes #11775
  • types: add HTMLDialogElement missing close event (#11811) (3634f7a)
  • types: added name attribute support to details tag (#11823) (c74176e), closes #11821
  • types: fix defineComponent props inference when setup() has explicit annotation (fca20a3), closes #11803
  • useTemplateRef: properly fix readonly warning in dev and ensure prod behavior consistency (9b7797d), closes #11808 #11816 #11810

Features

... (truncated)

Commits
  • 91212fa release: v3.5.4
  • b1430f2 refactor: remove rarely used argument in makeMap + optimize perf
  • 632e163 release: v3.5.3
  • 72263fa release: v3.5.2
  • 3f13203 feat(compiler-core): parse modifiers as expression to provide location data (...
  • 1b6bc23 release: v3.5.1
  • 4019369 chore(build): use /@PURE/ annotation consistently
  • 6402b98 release: v3.5.0
  • d298c43 release: v3.5.0-rc.1
  • 8c3fdd1 release: v3.5.0-beta.3
  • Additional commits viewable in compare view

Updates @nuxt/devtools from 1.4.1 to 1.4.2

Release notes

Sourced from @​nuxt/devtools's releases.

v1.4.2

   🐞 Bug Fixes

    View changes on GitHub
Changelog

Sourced from @​nuxt/devtools's changelog.

1.4.2 (2024-09-10)

Bug Fixes

Commits

Updates @nuxt/module-builder from 0.8.3 to 0.8.4

Release notes

Sourced from @​nuxt/module-builder's releases.

v0.8.4

compare changes

🩹 Fixes

  • Remove nuxt/schema augment (2a20ed0)

❤️ Contributors

Changelog

Sourced from @​nuxt/module-builder's changelog.

v0.8.4

compare changes

🩹 Fixes

  • Remove nuxt/schema augment (2a20ed0)

❤️ Contributors

Commits
  • d529d7f chore(release): v0.8.4
  • 2a20ed0 fix: remove nuxt/schema augment
  • 07fd72a chore(deps): update resolutions vue to ^3.5.4 (#353)
  • 77d5bb6 chore(deps): update devdependency typescript to ^5.6.2 (#352)
  • 3a66316 chore(deps): update pnpm to v9.10.0 (#351)
  • 7e6888c chore(deps): lock file maintenance (#350)
  • c1dae52 chore(deps): update all non-major dependencies (#347)
  • 8a661e4 chore(deps): update all non-major dependencies (#346)
  • 74f14a9 chore(deps): lock file maintenance (#345)
  • 6694165 chore(deps): update all non-major dependencies (#344)
  • Additional commits viewable in compare view

Updates @nuxt/test-utils from 3.14.1 to 3.14.2

Release notes

Sourced from @​nuxt/test-utils's releases.

v3.14.2

compare changes

🔥 Performance

  • e2e: Use tinyexec to run commands (#939)

🩹 Fixes

  • config: Exclude new nuxt import-conditions plugin (7cc8f653b)

📖 Documentation

🏡 Chore

  • vitest-environment-nuxt: Specify license is MIT (#919)
  • Release vitest-environment-nuxt (e30c044cf)
  • Update @nuxtjs/i18n separately (3d8955d36)
  • Set compatibilityDate in fixtures (7723f969c)
  • Update vitest type import (05e94fcc4)
  • Trim tag from tinyexec stdout (2b50cfee0)

❤️ Contributors

Changelog

Sourced from @​nuxt/test-utils's changelog.

v3.14.2

compare changes

🔥 Performance

  • e2e: Use tinyexec to run commands (#939)

🩹 Fixes

  • config: Exclude new nuxt import-conditions plugin (7cc8f653b)

📖 Documentation

🏡 Chore

  • vitest-environment-nuxt: Specify license is MIT (#919)
  • Release vitest-environment-nuxt (e30c044cf)
  • Update @nuxtjs/i18n separately (3d8955d36)
  • Set compatibilityDate in fixtures (7723f969c)
  • Update vitest type import (05e94fcc4)
  • Trim tag from tinyexec stdout (2b50cfee0)

❤️ Contributors

Commits
  • f7afe52 chore(release): v3.14.2
  • 4dad5c5 chore(deps): update devdependency @​nuxtjs/i18n to v8.5.2 (#930)
  • 7a40074 chore(deps): update resolutions vue to v3.5.4 (#938)
  • 2b50cfe chore: trim tag from tinyexec stdout
  • bcd5122 chore(deps): update resolutions @​cucumber/cucumber to v11 (#933)
  • 4bd549f perf(e2e): use tinyexec to run commands (#939)
  • e1a8ef9 chore(deps): update devdependency typescript to v5.6.2 (#937)
  • 1cea34c chore(deps): update all non-major dependencies (#932)
  • 7cc8f65 fix(config): exclude new nuxt import-conditions plugin
  • 05e94fc chore: update vitest type import
  • Additional commits viewable in compare view

Updates @nuxtjs/i18n from 8.5.1 to 8.5.3

Release notes

Sourced from @​nuxtjs/i18n's releases.

v8.5.3

   🐞 Bug Fixes

    View changes on GitHub

v8.5.2

   🐞 Bug Fixes

    View changes on GitHub
Commits

Bumps the minor group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@fontsource-variable/source-code-pro](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/source-code-pro) | `5.0.20` | `5.0.21` |
| [@fontsource-variable/source-sans-3](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/source-sans-3) | `5.0.22` | `5.0.23` |
| [@playwright/experimental-ct-vue](https://github.com/microsoft/playwright) | `1.46.1` | `1.47.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.46.1` | `1.47.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.4` | `5.6.2` |
| [vue-router](https://github.com/vuejs/router) | `4.4.3` | `4.4.4` |
| [vue](https://github.com/vuejs/core) | `3.4.38` | `3.5.4` |
| [@vue/compiler-dom](https://github.com/vuejs/core/tree/HEAD/packages/compiler-dom) | `3.4.38` | `3.5.4` |
| [@nuxt/devtools](https://github.com/nuxt/devtools/tree/HEAD/packages/devtools) | `1.4.1` | `1.4.2` |
| [@nuxt/module-builder](https://github.com/nuxt/module-builder) | `0.8.3` | `0.8.4` |
| [@nuxt/test-utils](https://github.com/nuxt/test-utils) | `3.14.1` | `3.14.2` |
| [@nuxtjs/i18n](https://github.com/nuxt-community/i18n-module) | `8.5.1` | `8.5.3` |
| [nuxt](https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt) | `3.13.0` | `3.13.1` |



Updates `@fontsource-variable/source-code-pro` from 5.0.20 to 5.0.21
- [Changelog](https://github.com/fontsource/font-files/blob/main/fonts/variable/source-code-pro/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/source-code-pro)

Updates `@fontsource-variable/source-sans-3` from 5.0.22 to 5.0.23
- [Changelog](https://github.com/fontsource/font-files/blob/main/fonts/variable/source-sans-3/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/source-sans-3)

Updates `@playwright/experimental-ct-vue` from 1.46.1 to 1.47.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.46.1...v1.47.0)

Updates `@playwright/test` from 1.46.1 to 1.47.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.46.1...v1.47.0)

Updates `typescript` from 5.5.4 to 5.6.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.5.4...v5.6.2)

Updates `vue-router` from 4.4.3 to 4.4.4
- [Release notes](https://github.com/vuejs/router/releases)
- [Commits](vuejs/router@v4.4.3...v4.4.4)

Updates `vue` from 3.4.38 to 3.5.4
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.4.38...v3.5.4)

Updates `@vue/compiler-dom` from 3.4.38 to 3.5.4
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/commits/v3.5.4/packages/compiler-dom)

Updates `@nuxt/devtools` from 1.4.1 to 1.4.2
- [Release notes](https://github.com/nuxt/devtools/releases)
- [Changelog](https://github.com/nuxt/devtools/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nuxt/devtools/commits/v1.4.2/packages/devtools)

Updates `@nuxt/module-builder` from 0.8.3 to 0.8.4
- [Release notes](https://github.com/nuxt/module-builder/releases)
- [Changelog](https://github.com/nuxt/module-builder/blob/main/CHANGELOG.md)
- [Commits](nuxt/module-builder@v0.8.3...v0.8.4)

Updates `@nuxt/test-utils` from 3.14.1 to 3.14.2
- [Release notes](https://github.com/nuxt/test-utils/releases)
- [Changelog](https://github.com/nuxt/test-utils/blob/main/CHANGELOG.md)
- [Commits](nuxt/test-utils@v3.14.1...v3.14.2)

Updates `@nuxtjs/i18n` from 8.5.1 to 8.5.3
- [Release notes](https://github.com/nuxt-community/i18n-module/releases)
- [Changelog](https://github.com/nuxt-modules/i18n/blob/main/CHANGELOG.md)
- [Commits](nuxt-modules/i18n@v8.5.1...v8.5.3)

Updates `nuxt` from 3.13.0 to 3.13.1
- [Release notes](https://github.com/nuxt/nuxt/releases)
- [Commits](https://github.com/nuxt/nuxt/commits/v3.13.1/packages/nuxt)

---
updated-dependencies:
- dependency-name: "@fontsource-variable/source-code-pro"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@fontsource-variable/source-sans-3"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@playwright/experimental-ct-vue"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: vue-router
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: vue
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@vue/compiler-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@nuxt/devtools"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@nuxt/module-builder"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@nuxt/test-utils"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@nuxtjs/i18n"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: nuxt
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner September 11, 2024 01:06
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript labels Sep 11, 2024
Copy link

changeset-bot bot commented Sep 11, 2024

⚠️ No Changeset found

Latest commit: 4aa6f67

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 11, 2024

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

@dependabot dependabot bot closed this Sep 11, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-727c5c035f branch September 11, 2024 10:23
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants