Skip to content

build(deps): bump the all-updates group across 1 directory with 10 updates - #740

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/all-updates-2b09374901
Open

build(deps): bump the all-updates group across 1 directory with 10 updates#740
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/all-updates-2b09374901

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 25, 2026

Copy link
Copy Markdown
Contributor

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


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

Package From To
@pinia/nuxt 1.0.1 1.0.2
pinia 4.0.2 4.0.3
@iconify-json/hugeicons 1.2.32 1.2.33
drizzle-kit 1.0.0-rc.4 1.0.0-rc.5-ab785fc
drizzle-orm 1.0.0-rc.4 1.0.0-rc.5-169397b
drizzle-seed 1.0.0-rc.4 1.0.0-rc.5-ab785fc
taze 20.0.1 21.1.0
vitest 4.1.10 4.1.11
vue-tsc 3.3.9 3.3.10
wrangler 4.120.1 4.124.0

Updates @pinia/nuxt from 1.0.1 to 1.0.2

Release notes

Sourced from @​pinia/nuxt's releases.

@​pinia/nuxt@​1.0.2

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates pinia from 4.0.2 to 4.0.3

Commits

Updates @iconify-json/hugeicons from 1.2.32 to 1.2.33

Commits

Updates drizzle-kit from 1.0.0-rc.4 to 1.0.0-rc.5-ab785fc

Commits

Updates drizzle-orm from 1.0.0-rc.4 to 1.0.0-rc.5-169397b

Commits

Updates drizzle-seed from 1.0.0-rc.4 to 1.0.0-rc.5-ab785fc

Commits

Updates taze from 20.0.1 to 21.1.0

Release notes

Sourced from taze's releases.

v21.1.0

   🚀 Features

    View changes on GitHub

v21.0.0

   🚨 Breaking Changes

    View changes on GitHub

v20.0.2

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • b3ccef6 chore: release v21.1.0
  • 2d675cd chore: update deps
  • 0e10b5d feat(node): update Node.js version in .node-version and .nvmrc (#313)
  • dd53534 chore: set up knip for unused code detection (#314)
  • bafc108 feat: support JSR as a first-class registry (#312)
  • b2148d4 chore: release v21.0.0
  • 5b97a69 feat!: restructure into manifest/registry axes with custom manifest support (...
  • a4ca061 chore: release v20.0.2
  • 3a7b612 feat: respect DO_NOT_TRACK to disable the third-party metadata endpoint (#310)
  • abd639e fix: preserve default locked updates (#308)
  • See full diff in compare view

Updates vitest from 4.1.10 to 4.1.11

Release notes

Sourced from vitest's releases.

v4.1.11

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • 9bd8d46 chore: release v4.1.11 (#10995)
  • 9851dbc fix(browser): trigger playwright/chromium gc on lower disk availability [back...
  • See full diff in compare view

Updates vue-tsc from 3.3.9 to 3.3.10

Release notes

Sourced from vue-tsc's releases.

v3.3.10

language-core

  • fix: ignore trailing whitespace after generic parameter commas - Thanks to @​KazariEX!
  • fix: resolve v-for item type over generic sources (#6141) - Thanks to @​serkodev!
  • fix: do not extract SFC blocks across inline Markdown code (#6145) - Thanks to @​lazerg!

language-service

  • fix: serialize template data provider access across concurrent requests (#6154) - Thanks to @​serkodev!

tsc

  • fix: support different extension sets across project references (#6146) - Thanks to @​lazerg!

typescript-plugin

vscode

  • feat: patch typescript.js via --require to support read-only file systems (#6149) - Thanks to @​serkodev!
  • fix: isolate custom TypeScript plugin paths between profiles (#6148) - Thanks to @​serkodev!

Our Sponsors ❤️

... (truncated)

Changelog

Sourced from vue-tsc's changelog.

3.3.10 (2026-08-15)

language-core

  • fix: ignore trailing whitespace after generic parameter commas - Thanks to @​KazariEX!
  • fix: resolve v-for item type over generic sources (#6141) - Thanks to @​serkodev!
  • fix: do not extract SFC blocks across inline Markdown code (#6145) - Thanks to @​lazerg!

language-service

  • fix: serialize template data provider access across concurrent requests (#6154) - Thanks to @​serkodev!

tsc

  • fix: support different extension sets across project references (#6146) - Thanks to @​lazerg!

typescript-plugin

vscode

  • feat: patch typescript.js via --require to support read-only file systems (#6149) - Thanks to @​serkodev!
  • fix: isolate custom TypeScript plugin paths between profiles (#6148) - Thanks to @​serkodev!
Commits

Updates wrangler from 4.120.1 to 4.124.0

Release notes

Sourced from wrangler's releases.

wrangler@4.124.0

Minor Changes

  • #15026 6529f0c Thanks @​petebacondarwin! - Allow containers to be attached to a Durable Object from its exports entry

    A container can now be linked to its Durable Object from the export side, using a new container field that names an entry in the containers array. As a result containers[].class_name is now optional — a container that is referenced this way only needs a name:

    {
      "name": "my-worker",
      "main": "worker.js",
      "compatibility_date": "2026-07-01",
      "containers": [
        { "name": "my-container", "image": "./Dockerfile", "max_instances": 1 }
      ],
      "exports": {
        "MyContainerDO": {
          "type": "durable-object",
          "storage": "sqlite",
          "container": "my-container"
        }
      }
    }

    The existing containers[].class_name direction keeps working and either direction may be used, but the two must agree: a container that names its Durable Object cannot also be claimed by a different one.

    container is only valid on live durable-object exports (created and expecting-transfer) and requires storage: "sqlite". Wrangler now also reports an error when:

    • a container reference names a container that does not exist
    • two Durable Object exports claim the same container
    • a container and a Durable Object export disagree about which one they are linked to
    • a container ends up linked to no Durable Object at all
    • two containers share a name
    • a container's class_name names a Durable Object whose storage is legacy-kv
    • two containers are attached to the same Durable Object

    That last case was previously accepted but could never work: workerd attaches a single container per Durable Object namespace, and in local development every container for a class builds into the same image tag, so one silently overwrote the other. If you have two containers on one class_name, give each its own Durable Object class.

Patch Changes

  • #15211 bc5726b Thanks @​nithin42! - Honor access.dev when running Workers with @cloudflare/vitest-pool-workers, so ctx.access.getIdentity() returns the configured identity just as it does with wrangler dev.

  • #14999 ba54f0d Thanks @​mittalpk! - Fix .env loading on Windows leaking stale, differently-cased duplicate keys

    On Windows, wrangler loads .env values through a case-insensitive Proxy wrapper so lookups like env.PATH and env.Path resolve to the same value, and this object is assigned directly to process.env. When a key was set again under a different casing (e.g. a value in .env.local overriding one from .env with different casing), the previous casing was never removed from the underlying object. env.PATH/env.Path still returned the correct, latest value, but anything that enumerates process.envObject.keys, for...in, JSON.stringify, object spread, or a spawned subprocess inheriting the environment — would see both the stale and current key.

    Duplicate entries no longer appear, so environment variables passed to subprocesses and any code that lists the environment now see only the latest value for each variable.

  • #15044 b7422b0 Thanks @​stareezy-1! - Normalize structural CRLF line endings before sending D1 commands to the remote query API

... (truncated)

Commits
  • 8ee43f6 Version Packages (#15175)
  • f431166 Prevent date-enabled Node.js compatibility from adding conflicting globals to...
  • 1552bce [wrangler] Quieten warnings and stray output in tests (#15209)
  • bc5726b Pass access.dev through to Miniflare via `unstable_getMiniflareWorkerOptions(...
  • e967c39 [wrangler] Skip container deploy e2e tests on non-Linux CI (#15233)
  • 265256a WC-5744 [previews] fix: wrangler preview base-config flag inheritance (#15153)
  • 75cf407 [wrangler] Enable new config for cf dev (#15082)
  • 8fb2b87 [wrangler] Use FedRAMP container registries (#15196)
  • ba54f0d [wrangler] Fix case-insensitive-env leaking stale duplicate keys on override ...
  • 7cee278 [wrangler] Let CLOUDFLARE_ACCOUNT_ID override the cached account id in pages ...
  • Additional commits viewable in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
vue-tsc [>= 2.1.8.a, < 2.1.9]

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 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

…dates

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

| Package | From | To |
| --- | --- | --- |
| [@pinia/nuxt](https://github.com/vuejs/pinia) | `1.0.1` | `1.0.2` |
| [pinia](https://github.com/vuejs/pinia) | `4.0.2` | `4.0.3` |
| [@iconify-json/hugeicons](https://github.com/iconify/icon-sets) | `1.2.32` | `1.2.33` |
| [drizzle-kit](https://github.com/drizzle-team/drizzle-orm) | `1.0.0-rc.4` | `1.0.0-rc.5-ab785fc` |
| [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) | `1.0.0-rc.4` | `1.0.0-rc.5-169397b` |
| [drizzle-seed](https://github.com/drizzle-team/drizzle-orm) | `1.0.0-rc.4` | `1.0.0-rc.5-ab785fc` |
| [taze](https://github.com/antfu-collective/taze) | `20.0.1` | `21.1.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.10` | `4.1.11` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `3.3.9` | `3.3.10` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.120.1` | `4.124.0` |



Updates `@pinia/nuxt` from 1.0.1 to 1.0.2
- [Release notes](https://github.com/vuejs/pinia/releases)
- [Commits](https://github.com/vuejs/pinia/compare/@pinia/nuxt@1.0.1...@pinia/nuxt@1.0.2)

Updates `pinia` from 4.0.2 to 4.0.3
- [Release notes](https://github.com/vuejs/pinia/releases)
- [Commits](vuejs/pinia@v4.0.2...v4.0.3)

Updates `@iconify-json/hugeicons` from 1.2.32 to 1.2.33
- [Commits](https://github.com/iconify/icon-sets/commits)

Updates `drizzle-kit` from 1.0.0-rc.4 to 1.0.0-rc.5-ab785fc
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](https://github.com/drizzle-team/drizzle-orm/commits)

Updates `drizzle-orm` from 1.0.0-rc.4 to 1.0.0-rc.5-169397b
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](https://github.com/drizzle-team/drizzle-orm/commits)

Updates `drizzle-seed` from 1.0.0-rc.4 to 1.0.0-rc.5-ab785fc
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](https://github.com/drizzle-team/drizzle-orm/commits)

Updates `taze` from 20.0.1 to 21.1.0
- [Release notes](https://github.com/antfu-collective/taze/releases)
- [Commits](antfu-collective/taze@v20.0.1...v21.1.0)

Updates `vitest` from 4.1.10 to 4.1.11
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.11/packages/vitest)

Updates `vue-tsc` from 3.3.9 to 3.3.10
- [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.3.10/packages/tsc)

Updates `wrangler` from 4.120.1 to 4.124.0
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.124.0/packages/wrangler)

---
updated-dependencies:
- dependency-name: "@pinia/nuxt"
  dependency-version: 1.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: pinia
  dependency-version: 4.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@iconify-json/hugeicons"
  dependency-version: 1.2.33
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: drizzle-kit
  dependency-version: 1.0.0-rc.5-ab785fc
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: drizzle-orm
  dependency-version: 1.0.0-rc.5-169397b
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: drizzle-seed
  dependency-version: 1.0.0-rc.5-ab785fc
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: taze
  dependency-version: 21.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: vitest
  dependency-version: 4.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: vue-tsc
  dependency-version: 3.3.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: wrangler
  dependency-version: 4.124.0
  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 added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 25, 2026
@dependabot
dependabot Bot deployed to staging August 25, 2026 15:08 Active
@github-actions

Copy link
Copy Markdown

🎉 Deployed to Cloudflare!

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.

0 participants