Skip to content

chore(deps-dev): bump the development-dependencies group across 1 directory with 13 updates - #102

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/main/development-dependencies-d22065a781
Open

chore(deps-dev): bump the development-dependencies group across 1 directory with 13 updates#102
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/main/development-dependencies-d22065a781

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 6, 2026

Copy link
Copy Markdown
Contributor

Bumps the development-dependencies group with 13 updates in the / directory:

Package From To
@changesets/cli 3.0.0 3.0.1
@playwright/test 1.61.1 1.62.1
@vitejs/plugin-vue 6.0.1 6.0.8
supabase 2.112.0 2.116.0
wrangler 4.114.0 4.127.1
tsdown 0.22.13 0.22.14
@tsconfig/node22 22.0.2 22.0.6
sass-embedded 1.90.0 1.103.1
unocss 66.7.5 66.8.1
vite-plugin-vue-devtools 8.0.0 8.2.1
@unocss/preset-uno 66.7.5 66.8.1
sass 1.101.6 1.103.1
wxt 0.20.27 0.21.4

Updates @changesets/cli from 3.0.0 to 3.0.1

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​3.0.1

Patch Changes

Changelog

Sourced from @​changesets/cli's changelog.

3.0.1

Patch Changes

Commits

Updates @playwright/test from 1.61.1 to 1.62.1

Release notes

Sourced from @​playwright/test's releases.

v1.62.1

Bug Fixes

  • #41989 [Regression]: tsconfig "extends" bare specifier isn't resolved via node_modules walk-up like tsc (fatal since 1.62)
  • #41998 [Regression]: directory-form tsconfig project references ("path": "../pkg") fail to resolve (fatal since 1.62)
  • #41985 Accessibility snapshot drops button name when text is nested inside spans with aria-hidden SVG
  • #42000 [Regression]: page.evaluate() arg of a branded primitive type (string & { brand }) no longer type-checks since 1.62
  • #42013 [BUG]Image-type actionable elements are not presented in the snapshot.

v1.62.0

🧱 New component testing model

Component testing moves to a stories and galleries model. A story wraps your component in one specific scenario — hard-coded props, mock data, providers — and a gallery page that you serve renders stories on demand. The new fixtures.mount() fixture navigates to the gallery, mounts a story by id, and returns a Locator scoped to the story's root element:

test('click should expand', async ({ mount }) => {
  const component = await mount('components/Expandable/Stateful');
  await component.getByRole('button').click();
  await expect(component.getByTestId('expanded')).toHaveValue('true');
});

Pass a story type as a template argument to type-check its props, and use update(props) / unmount() on the returned locator to re-render or tear down within a test.

🛑 Cancel operations with AbortSignal

Most operations and web-first assertions now accept a signal option that takes an AbortSignal, letting you cancel long-running actions, navigations, waits, and assertions:

const controller = new AbortController();
setTimeout(() => controller.abort(), 1000);
await page.getByRole('button', { name: 'Submit' }).click({ signal: controller.signal });
await expect(page.getByText('Done')).toBeVisible({ signal: controller.signal });

Providing a signal does not disable the default timeout; pass timeout: 0 to disable it.

🖼️ WebP screenshots

expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot() can now store snapshots in the WebP format — just give the snapshot a .webp name:

// Visual comparisons store the golden snapshot as lossless WebP.
await expect(page).toHaveScreenshot('homepage.webp');
// Standalone screenshots can trade quality for size with lossy WebP.
await page.screenshot({ path: 'homepage.webp', quality: 50 });
</tr></table>

... (truncated)

Commits
  • 26a9e47 cherry-pick(#42043): docs: release notes for v1.62 Python, Java, and .NET (#4...
  • 0a81d5d cherry-pick(#42040): docs(release-notes): mention the isolated headless clipb...
  • 8376826 cherry-pick(#42034): fix(aria): keep icon-only clickable elements in ai snaps...
  • 66c5cc9 chore: mark v1.62.1 (#42020)
  • 9672bc3 cherry-pick(#42009): fix(types): support branded primitives in evaluate argum...
  • 4325804 cherry-pick(#41988): fix(aria): preserve names from collapsed text contributors
  • 9632f8e cherry-pick(#42005): fix(tsconfig): do not throw when "extends"/"references" ...
  • e3950d9 chore: mark v1.62.0 (#41981)
  • f07e0f7 cherry-pick(#41940): docs: release notes for v1.62 (#41967)
  • 05a306c cherry-pick(#41964): Revert "feat(routeFromHar): add interceptAPIRequests opt...
  • Additional commits viewable in compare view

Updates @vitejs/plugin-vue from 6.0.1 to 6.0.8

Release notes

Sourced from @​vitejs/plugin-vue's releases.

plugin-vue@6.0.8

Please refer to CHANGELOG.md for details.

plugin-vue@6.0.7

Please refer to CHANGELOG.md for details.

plugin-vue@6.0.6

Please refer to CHANGELOG.md for details.

plugin-vue@6.0.5

Please refer to CHANGELOG.md for details.

plugin-vue@6.0.4

Please refer to CHANGELOG.md for details.

plugin-vue@6.0.3

Please refer to CHANGELOG.md for details.

plugin-vue@6.0.2

Please refer to CHANGELOG.md for details.

Changelog

Sourced from @​vitejs/plugin-vue's changelog.

6.0.8 (2026-07-14)

Features

  • plugin-vue: add forced vapor mode option (#766) (d59c3c0)

Bug Fixes

  • deps: update all non-major dependencies (#781) (d369e5a)

6.0.7 (2026-05-15)

Features

  • use carets for @rolldown/pluginutils version (#776) (941b651)

Bug Fixes

  • deps: update all non-major dependencies (#762) (9e825b8)
  • deps: update all non-major dependencies (#774) (77dc8bc)

6.0.6 (2026-04-13)

Features

  • plugin-vue: propagate multiRoot for template-only vapor components (#745) (9e07ae9)

Bug Fixes

  • deps: update all non-major dependencies (#738) (050c996)

Miscellaneous Chores

6.0.5 (2026-03-12)

Miscellaneous Chores

  • remove Vite 8 beta from supported range (#746) (b3f23e4)

6.0.4 (2026-02-02)

Bug Fixes

  • deps: update all non-major dependencies (#709) (924b28e)
  • deps: update all non-major dependencies (#722) (8a95809)
  • deps: update all non-major dependencies (#726) (e69d751)

Miscellaneous Chores

... (truncated)

Commits
  • d8ff7d0 release: plugin-vue@6.0.8
  • d59c3c0 feat(plugin-vue): add forced vapor mode option (#766)
  • d369e5a fix(deps): update all non-major dependencies (#781)
  • f93aceb release: plugin-vue@6.0.7
  • 941b651 feat: use carets for @rolldown/pluginutils version (#776)
  • 77dc8bc fix(deps): update all non-major dependencies (#774)
  • 9e825b8 fix(deps): update all non-major dependencies (#762)
  • 51dbf4b release: plugin-vue@6.0.6
  • 9e07ae9 feat(plugin-vue): propagate multiRoot for template-only vapor components (#745)
  • 050c996 fix(deps): update all non-major dependencies (#738)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​vitejs/plugin-vue since your current version.


Updates supabase from 2.112.0 to 2.116.0

Release notes

Sourced from supabase's releases.

v2.116.0

Supabase CLI v2.116.0 — 2026-08-26

This release speeds up your local dev and adds workers support to your config. Major wins: supabase start/stop are much faster, migration testing is quicker, and edge runtime output streams in real time.

Highlights

  • supabase start and stop are 10 seconds faster — Docker shutdown no longer waits; saves time on every restart. (#6203)
  • Migration testing is faster with shadow database baseline caching — Your baseline is cached as a PGDATA snapshot, speeding up repeated diffs and migrations. (#6184)
  • Edge runtime bootstrap streams output in real time — See progress instead of waiting for full completion. (#6273)
  • New [workers] configuration section — Configure workers in supabase/config.toml. (#6260)

Improvements

  • auto_expose_new_tables defaults to true — Matches your Supabase project behavior by default. (#6337)

Bug fixes

  • Piped stdin is no longer buffered endlessly — Fixed memory overflow when piping data to the CLI. (#6290)
  • Stale database connections are detected and dropped — Operations no longer hang on dead connections. (#6277)
  • Edge runtime respects system file descriptor limits — Prevents "too many open files" crashes. (#6284)
  • DROP INDEX CONCURRENTLY works outside migrations — Index drops no longer deadlock your transaction. (#6276)
  • Postgres role management is more stable — Roles are restored correctly after changes. (#6246)
  • Loopback network proxying is bypassed — Local requests route directly, improving reliability. (#6283)
  • Kong local DNS cache is optimized — DNS resolution is more responsive and consistent. (#6324)
  • Service startup is more reliable — Fixed edge cases during start and stop. (#6245)

Plus 14 internal improvements and dependency updates.

Full changelog: supabase/cli@v2.115.0...v2.116.0

v2.116.0-beta.13

2.116.0-beta.13 (2026-08-26)

Bug Fixes

  • config: default auto_expose_new_tables to true to match platform (#6337) (b950373), closes #5524

v2.116.0-beta.12

2.116.0-beta.12 (2026-08-25)

Features

v2.116.0-beta.11

... (truncated)

Commits
  • 997a1e6 test(cli): cover functions download (CLI-2259) (#6341)
  • 1b72374 chore(repo): migrate live tasks to Turborepo (#6343)
  • b950373 fix(config): default auto_expose_new_tables to true to match platform (#6337)
  • f7d3d01 chore(repo): migrate build tasks to Turborepo (#6342)
  • aa667a1 chore(repo): migrate quality checks to Turborepo (#6336)
  • 78d455f ci: shard package-local test suites (#6327)
  • 0527ed2 chore(codeql): resolve deploy scan findings (#6326)
  • 7b2f02d refactor(config): rename config document type ProjectConfig to CliConfig (CLI...
  • 38f31b4 fix(cli): cap kong dns cache ttls (#6324)
  • 1099080 refactor(config): split entrypoints into pure default, /io and /effect (CLI-2...
  • Additional commits viewable in compare view

Updates wrangler from 4.114.0 to 4.127.1

Release notes

Sourced from wrangler's releases.

wrangler@4.127.1

Patch Changes

wrangler@4.127.0

Minor Changes

  • #15356 fe265f8 Thanks @​rubuy-74! - Add support for configuring a per-workflow max concurrency limit via workflows[].concurrency.limit in your Wrangler config.

    The limit is the maximum number of Workflow instances that can run concurrently. It is validated as a positive integer and persisted on deploy; the ceiling is enforced server-side. Concurrency is ignored in local development.

    {
      "workflows": [
        {
          "binding": "MY_WORKFLOW",
          "name": "my-workflow",
          "class_name": "MyWorkflow",
          "concurrency": { "limit": 10 }
        }
      ]
    }

Patch Changes

  • #15367 412c79e Thanks @​dependabot! - Update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

... (truncated)

Commits

Updates tsdown from 0.22.13 to 0.22.14

Release notes

Sourced from tsdown's releases.

v0.22.14

   🚀 Features

  • Add CLI build concurrency option  -  by @​sxzz and Jeroen Zwartepoorte (8a14c)
    View changes on GitHub
Commits
  • ff3bdbd chore: release v0.22.14
  • 8a14c35 feat: add CLI build concurrency option
  • 0525465 docs: add note about cjsDefault only applying to explicit entry modules
  • a3a3551 refactor: fix lint
  • 3dec506 refactor: use native Promise.withResolvers
  • e0266c1 docs: add tsdown users image
  • a733505 refactor: upgrade verkit, simplify version parse
  • e5fe2ca style: format
  • See full diff in compare view

Updates @tsconfig/node22 from 22.0.2 to 22.0.6

Commits

Updates sass-embedded from 1.90.0 to 1.103.1

Changelog

Sourced from sass-embedded's changelog.

1.103.1

  • No user-visible changes.

1.103.0

  • Potentially breaking compatibility fix: Colors now preserve "analogous sets" of missing channels during conversions, per the CSS spec. For example, color.to-space(lch(50% none none), lab) now returns lab(50% none none) instead of lab(50% 0 0).

1.102.0

  • Use the 2.4 gamma transfer function for rec2020, as specified by the latest draft of CSS Color 4.

1.101.7

  • No user-visible changes.

1.101.6

  • No user-visible changes.

1.101.5

  • No user-visible changes.

1.101.4

  • Avoid emitting rgb() or rgba() functions with non-percent decimal channels. Older browsers only support integer values or (potentially decimal) percentages for these functions, so in order to preserve backwards-compatibility while retaining full precision for modern browsers, legacy colors that contain at least one non-integer channel will now use percentages for their channels (for example, rgb(0%, 100%, 50%) rather than rgb(0, 255, 127.5)).

  • Fix a bug where the values of plain-CSS if() expressions were emitted using their meta.inspect() format rather than their CSS serialization format.

1.101.3

  • No user-visible changes.

1.101.2

  • Fix a bug where the deprecation warning for vendor-prefixed expression() functions would incorrectly indicate whether or not the function would be invalid Sass in Dart Sass 2.0.0.

... (truncated)

Commits
  • ecc0802 Update Dart Sass version and release
  • cb3b9f0 Bump dart-lang/setup-dart from 1 to 1.7.2 (#441)
  • 0fd3bd0 Bump typescript from 6.0.3 to 7.0.2 (#438)
  • 07d7803 Update Dart Sass version and release
  • de6ceb9 Use gamma 2.40 for display-referred rec2020 (#418)
  • 7932fd8 Update Dart Sass version and release
  • 4377858 Bump actions/setup-node from 6 to 7 (#440)
  • 3994086 Bump @​types/node from 25.9.5 to 26.1.1 (#437)
  • e4321a1 Reformat with the latest Prettier (#436)
  • 09219c4 Bump actions/checkout from 6 to 7 (#433)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for sass-embedded since your current version.


Updates unocss from 66.7.5 to 66.8.1

Release notes

Sourced from unocss's releases.

v66.8.1

   🐞 Bug Fixes

    View changes on GitHub

v66.8.0

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v66.8.0-beta.1

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

... (truncated)

Commits

Updates vite-plugin-vue-devtools from 8.0.0 to 8.2.1

Release notes

Sourced from vite-plugin-vue-devtools's releases.

v8.2.1

   🐞 Bug Fixes

    View changes on GitHub

v8.2.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v8.1.5

No significant changes

    View changes on GitHub

v8.1.4

   🐞 Bug Fixes

    View changes on GitHub

v8.1.3

   🐞 Bug Fixes

    View changes on GitHub

v8.1.2

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

... (truncated)

Commits
  • 4419695 chore: release v8.2.1
  • 0dea144 chore: release v8.2.0
  • 8625b57 chore: release v8.1.5
  • a7bac67 chore: release v8.1.4
  • 7f74e9b chore: release v8.1.3
  • 4720c73 fix(vite): align module field with emitted ESM output (#1106)
  • 30e9ebc chore: release v8.1.2
  • ef08fd6 fix(vite): use TrustedScriptURL for overlay injection under Trusted Types CSP...
  • 784c324 feat: bump vite-plugin-vue-inspector to support vapor app (#1096)
  • 86568a3 chore: release v8.1.1
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for vite-plugin-vue-devtools since your current version.


Updates @unocss/preset-uno from 66.7.5 to 66.8.1

Release notes

Sourced from @​unocss/preset-uno's releases.

v66.8.1

   🐞 Bug Fixes

    View changes on GitHub

v66.8.0

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v66.8.0-beta.1

   🚀 Features

   🐞 Bug Fixes

…ectory with 13 updates

Bumps the development-dependencies group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@changesets/cli](https://github.com/changesets/changesets/tree/HEAD/packages/cli) | `3.0.0` | `3.0.1` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.61.1` | `1.62.1` |
| [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue) | `6.0.1` | `6.0.8` |
| [supabase](https://github.com/supabase/cli/tree/HEAD/apps/cli) | `2.112.0` | `2.116.0` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.114.0` | `4.127.1` |
| [tsdown](https://github.com/rolldown/tsdown) | `0.22.13` | `0.22.14` |
| [@tsconfig/node22](https://github.com/tsconfig/bases/tree/HEAD/bases) | `22.0.2` | `22.0.6` |
| [sass-embedded](https://github.com/sass/embedded-host-node) | `1.90.0` | `1.103.1` |
| [unocss](https://github.com/unocss/unocss/tree/HEAD/packages-presets/unocss) | `66.7.5` | `66.8.1` |
| [vite-plugin-vue-devtools](https://github.com/vuejs/devtools/tree/HEAD/packages/vite) | `8.0.0` | `8.2.1` |
| [@unocss/preset-uno](https://github.com/unocss/unocss/tree/HEAD/packages-deprecated/preset-uno) | `66.7.5` | `66.8.1` |
| [sass](https://github.com/sass/dart-sass) | `1.101.6` | `1.103.1` |
| [wxt](https://github.com/wxt-dev/wxt) | `0.20.27` | `0.21.4` |



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

Updates `@playwright/test` from 1.61.1 to 1.62.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.61.1...v1.62.1)

Updates `@vitejs/plugin-vue` from 6.0.1 to 6.0.8
- [Release notes](https://github.com/vitejs/vite-plugin-vue/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-vue/blob/main/packages/plugin-vue/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-vue/commits/plugin-vue@6.0.8/packages/plugin-vue)

Updates `supabase` from 2.112.0 to 2.116.0
- [Release notes](https://github.com/supabase/cli/releases)
- [Changelog](https://github.com/supabase/cli/blob/develop/apps/cli/docs/release-process.md)
- [Commits](https://github.com/supabase/cli/commits/v2.116.0/apps/cli)

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

Updates `tsdown` from 0.22.13 to 0.22.14
- [Release notes](https://github.com/rolldown/tsdown/releases)
- [Commits](rolldown/tsdown@v0.22.13...v0.22.14)

Updates `@tsconfig/node22` from 22.0.2 to 22.0.6
- [Commits](https://github.com/tsconfig/bases/commits/HEAD/bases)

Updates `sass-embedded` from 1.90.0 to 1.103.1
- [Changelog](https://github.com/sass/embedded-host-node/blob/main/CHANGELOG.md)
- [Commits](sass/embedded-host-node@1.90.0...1.103.1)

Updates `unocss` from 66.7.5 to 66.8.1
- [Release notes](https://github.com/unocss/unocss/releases)
- [Commits](https://github.com/unocss/unocss/commits/v66.8.1/packages-presets/unocss)

Updates `vite-plugin-vue-devtools` from 8.0.0 to 8.2.1
- [Release notes](https://github.com/vuejs/devtools/releases)
- [Commits](https://github.com/vuejs/devtools/commits/v8.2.1/packages/vite)

Updates `@unocss/preset-uno` from 66.7.5 to 66.8.1
- [Release notes](https://github.com/unocss/unocss/releases)
- [Commits](https://github.com/unocss/unocss/commits/v66.8.1/packages-deprecated/preset-uno)

Updates `sass` from 1.101.6 to 1.103.1
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.101.6...1.103.1)

Updates `wxt` from 0.20.27 to 0.21.4
- [Release notes](https://github.com/wxt-dev/wxt/releases)
- [Commits](wxt-dev/wxt@wxt-v0.20.27...wxt-v0.21.4)

---
updated-dependencies:
- dependency-name: "@changesets/cli"
  dependency-version: 3.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.62.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@vitejs/plugin-vue"
  dependency-version: 6.0.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: supabase
  dependency-version: 2.116.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: wrangler
  dependency-version: 4.127.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: tsdown
  dependency-version: 0.22.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@tsconfig/node22"
  dependency-version: 22.0.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: sass-embedded
  dependency-version: 1.103.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: unocss
  dependency-version: 66.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: vite-plugin-vue-devtools
  dependency-version: 8.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@unocss/preset-uno"
  dependency-version: 66.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: sass
  dependency-version: 1.103.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: wxt
  dependency-version: 0.21.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-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 Sep 6, 2026
@dependabot
dependabot Bot requested a review from xiaoland as a code owner September 6, 2026 08:31
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 6, 2026
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