Skip to content
This repository was archived by the owner on Apr 13, 2026. It is now read-only.

Build(deps): Bump the minor-and-patch group across 1 directory with 43 updates - #38

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/main/minor-and-patch-5f017bf5ed
Closed

Build(deps): Bump the minor-and-patch group across 1 directory with 43 updates#38
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/main/minor-and-patch-5f017bf5ed

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the minor-and-patch group with 43 updates in the / directory:

Package From To
@playwright/test 1.55.1 1.57.0
cross-env 10.0.0 10.1.0
eslint 9.35.0 9.39.2
eslint-plugin-format 1.0.1 1.3.1
prettier 3.6.2 3.8.0
typescript 5.9.2 5.9.3
isomorphic-dompurify 2.26.0 2.35.0
@types/vscode 1.103.0 1.108.1
@vscode/vsce 3.6.0 3.7.1
@aws-sdk/client-s3 3.883.0 3.971.0
@aws-sdk/s3-request-presigner 3.883.0 3.971.0
axios 1.11.0 1.13.2
core-js 3.45.1 3.47.0
csstype 3.1.3 3.2.3
es-toolkit 1.39.10 1.44.0
juice 11.0.1 11.1.0
katex 0.16.22 0.16.27
lucide-vue-next 0.542.0 0.562.0
pinia 3.0.3 3.0.4
reka-ui 2.5.0 2.7.0
tailwind-merge 3.3.1 3.4.0
tw-animate-css 1.3.8 1.4.0
vue-sonner 2.0.8 2.0.9
yup 1.7.0 1.7.1
@cloudflare/workers-types 4.20250906.0 4.20260120.0
@tailwindcss/postcss 4.1.13 4.1.18
@tailwindcss/vite 4.1.13 4.1.18
@types/katex 0.16.7 0.16.8
@vitejs/plugin-vue 6.0.1 6.0.3
less 4.4.1 4.5.1
rollup 4.46.2 4.55.2
rollup-plugin-visualizer 6.0.3 6.0.5
tailwindcss 4.1.13 4.1.18
vite-plugin-node-polyfills 0.24.0 0.25.0
vite-plugin-pwa 1.0.3 1.2.0
vite-plugin-static-copy 3.1.2 3.1.5
vite-plugin-vue-devtools 8.0.1 8.0.5
vue-tsc 3.0.6 3.2.2
wrangler 4.33.2 4.59.2
wxt 0.20.11 0.20.13
mermaid 11.11.0 11.12.2
express 5.1.0 5.2.1
form-data 4.0.4 4.0.5

Updates @playwright/test from 1.55.1 to 1.57.0

Release notes

Sourced from @​playwright/test's releases.

v1.57.0

Speedboard

In HTML reporter, there's a new tab we call "Speedboard":

It shows you all your executed tests sorted by slowness, and can help you understand where your test suite is taking longer than expected. Take a look at yours - maybe you'll find some tests that are spending a longer time waiting than they should!

Chrome for Testing

Starting with this release, Playwright switches from Chromium, to using Chrome for Testing builds. Both headed and headless browsers are subject to this. Your tests should still be passing after upgrading to Playwright 1.57.

We're expecting no functional changes to come from this switch. The biggest change is the new icon and title in your toolbar.

If you still see an unexpected behaviour change, please file an issue.

On Arm64 Linux, Playwright continues to use Chromium.

Waiting for webserver output

testConfig.webServer added a wait field. Pass a regular expression, and Playwright will wait until the webserver logs match it.

import { defineConfig } from '@playwright/test';
export default defineConfig({
webServer: {
command: 'npm run start',
wait: {
stdout: '/Listening on port (?<my_server_port>\d+)/'
},
},
});

If you include a named capture group into the expression, then Playwright will provide the capture group contents via environment variables:

import { test, expect } from '@playwright/test';
test.use({ baseUrl: http://localhost:${process.env.MY_SERVER_PORT ?? 3000} });
test('homepage', async ({ page }) => {
await page.goto('/');
});
</tr></table>

... (truncated)

Commits
Maintainer changes

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


Updates cross-env from 10.0.0 to 10.1.0

Release notes

Sourced from cross-env's releases.

v10.1.0

10.1.0 (2025-09-29)

Features

  • add support for default value syntax (152ae6a)

For example:

"dev:server": "cross-env wrangler dev --port ${PORT:-8787}",

If PORT is already set, use that value, otherwise fallback to 8787.

Learn more about Shell Parameter Expansion

Commits

Updates eslint from 9.35.0 to 9.39.2

Release notes

Sourced from eslint's releases.

v9.39.2

Bug Fixes

  • 5705833 fix: warn when eslint-env configuration comments are found (#20381) (sethamus)

Build Related

  • 506f154 build: add .scss files entry to knip (#20391) (Milos Djermanovic)

Chores

  • 7ca0af7 chore: upgrade to @eslint/js@9.39.2 (#20394) (Francesco Trotta)
  • c43ce24 chore: package.json update for @​eslint/js release (Jenkins)
  • 4c9858e ci: add v9.x-dev branch (#20382) (Milos Djermanovic)

v9.39.1

Bug Fixes

  • 650753e fix: Only pass node to JS lang visitor methods (#20283) (Nicholas C. Zakas)

Documentation

  • 51b51f4 docs: add a section on when to use extends vs cascading (#20268) (Tanuj Kanti)
  • b44d426 docs: Update README (GitHub Actions Bot)

Chores

  • 92db329 chore: update @eslint/js version to 9.39.1 (#20284) (Francesco Trotta)
  • c7ebefc chore: package.json update for @​eslint/js release (Jenkins)
  • 61778f6 chore: update eslint-config-eslint dependency @​eslint/js to ^9.39.0 (#20275) (renovate[bot])
  • d9ca2fc ci: Add rangeStrategy to eslint group in renovate config (#20266) (唯然)
  • 009e507 test: fix version tests for ESLint v10 (#20274) (Milos Djermanovic)

v9.39.0

Features

  • cc57d87 feat: update error loc to key in no-dupe-class-members (#20259) (Tanuj Kanti)
  • 126552f feat: update error location in for-direction and no-dupe-args (#20258) (Tanuj Kanti)
  • 167d097 feat: update complexity rule to highlight only static block header (#20245) (jaymarvelz)

Bug Fixes

  • 15f5c7c fix: forward traversal step.args to visitors (#20253) (jaymarvelz)
  • 5a1a534 fix: allow JSDoc comments in object-shorthand rule (#20167) (Nitin Kumar)
  • e86b813 fix: Use more types from @​eslint/core (#20257) (Nicholas C. Zakas)
  • 927272d fix: correct Scope typings (#20198) (jaymarvelz)
  • 37f76d9 fix: use AST.Program type for Program node (#20244) (Francesco Trotta)
  • ae07f0b fix: unify timing report for concurrent linting (#20188) (jaymarvelz)
  • b165d47 fix: correct Rule typings (#20199) (jaymarvelz)
  • fb97cda fix: improve error message for missing fix function in suggestions (#20218) (jaymarvelz)

Documentation

  • d3e81e3 docs: Always recommend to include a files property (#20158) (Percy Ma)
  • 0f0385f docs: use consistent naming recommendation (#20250) (Alex M. Spieslechner)
  • a3b1456 docs: Update README (GitHub Actions Bot)
  • cf5f2dd docs: fix correct tag of no-useless-constructor (#20255) (Tanuj Kanti)
  • 10b995c docs: add TS options and examples for nofunc in no-use-before-define (#20249) (Tanuj Kanti)
  • 2584187 docs: remove repetitive word in comment (#20242) (reddaisyy)

... (truncated)

Commits

Updates eslint-plugin-format from 1.0.1 to 1.3.1

Release notes

Sourced from eslint-plugin-format's releases.

v1.3.1

   🚀 Features

    View changes on GitHub

v1.3.0

   🚀 Features

    View changes on GitHub

v1.2.0

   🚀 Features

    View changes on GitHub

v1.1.0

   🚀 Features

    View changes on GitHub

v1.0.2

No significant changes

    View changes on GitHub
Commits
Maintainer changes

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


Updates prettier from 3.6.2 to 3.8.0

Release notes

Sourced from prettier's releases.

3.8.0

  • Support Angular v21.1

diff

🔗 Release note "Prettier 3.8: Support for Angular v21.1"

3.7.4

What's Changed

🔗 Changelog

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

3.7.1

🔗 Changelog

3.7.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.8.0

diff

🔗 Release Notes

3.7.4

diff

LWC: Avoid quote around interpolations (#18383 by @​kovsu)

<!-- Input -->
<div foo={bar}>   </div>
<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>
<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>

TypeScript: Fix comment inside union type gets duplicated (#18393 by @​fisker)

// Input
type Foo = (/** comment */ a | b) | c;
// Prettier 3.7.3
type Foo = /** comment / (/* comment */ a | b) | c;
// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;

TypeScript: Fix unstable comment print in union type comments (#18395 by @​fisker)

// Input
type X = (A | B) & (
  // comment
  A | B
);
// Prettier 3.7.3 (first format)
type X = (A | B) &
</tr></table>

... (truncated)

Commits
Maintainer changes

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


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 isomorphic-dompurify from 2.26.0 to 2.35.0

Release notes

Sourced from isomorphic-dompurify's releases.

2.35.0: Updated jsdom

Changelog

  • Updated jsdom.
  • Updated dev dependencies.

See the complete changelog for more details.

Release

2.35.0

2.34.0: Updated dependencies

Changelog

  • Updated dompurify and jsdom.
  • Updated dev dependencies.

See the complete changelog for more details.

Release

2.34.0

2.33.0: Improved Web Worker support

Changelog

See the complete changelog for more details.

Release

2.33.0

2.32.0: Updated dependencies

Changelog

  • Updated jsdom.
  • Updated dev dependencies.

See the complete changelog for more details.

Release

2.32.0

2.31.0: Updated dependencies

Changelog

... (truncated)

Commits
  • 2cc5a03 Updated deps. Incremented project version.
  • d40fcf0 Merge pull request #382 from kkomelin/dependabot/npm_and_yarn/jsdom-27.4.0
  • e45ecf5 chore(deps): bump jsdom from 27.3.0 to 27.4.0
  • 0c612e6 Merge pull request #381 from kkomelin/dependabot/npm_and_yarn/vitest-4.0.16
  • 16ca947 chore(deps-dev): bump vitest from 4.0.15 to 4.0.16
  • dded60d chore: Incremented project version.
  • 044f7b2 Updated deps.
  • 895d5cd Merge pull request #379 from kkomelin/dependabot/npm_and_yarn/dompurify-3.3.1
  • 816f91f Merge pull request #380 from kkomelin/dependabot/npm_and_yarn/jsdom-27.3.0
  • a48c30b chore(deps): bump jsdom from 27.2.0 to 27.3.0
  • Additional commits viewable in compare view

Updates @types/vscode from 1.103.0 to 1.108.1

Commits

Updates @vscode/vsce from 3.6.0 to 3.7.1

Release notes

Sourced from @​vscode/vsce's releases.

v3.7.1

Changes:

This list of changes was auto generated.

v3.7.1-1

Changes:

This list of changes was auto generated.

v3.7.1-0

Changes:

This list of changes was auto generated.

v3.7.0

Changes:

  • #1219: Remove invalid validation for extension dependencies
  • #1212: Validate extension dependencies use lowercase letters and warn about deprecated github.copilot
  • #1209: Bump validator from 13.9.0 to 13.15.20
  • #1200: Bump tar-fs from 2.1.3 to 2.1.4

This list of changes was auto generated.

v3.6.3-3

Changes:

  • #1219: Remove invalid validation for extension dependencies

This list of changes was auto generated.

v3.6.3-2

... (truncated)

Commits
  • 44181d1 Merge pull request #1223 from microsoft/dependabot/npm_and_yarn/multi-75e6bc5210
  • a831389 Bump js-yaml
  • 5d9e78f Merge pull request #1222 from microsoft/dependabot/npm_and_yarn/multi-12cb0b0c21
  • c9023e9 Bump glob
  • 8551fa2 Merge pull request #1219 from microsoft/benibenj/handsome-pike
  • 7b65808 remove tests
  • be09f0f remove invalid validation
  • 196cce4 Merge pull request #1212 from microsoft/copilot/validate-extension-dependenci...
  • 82c80d6 💄
  • 0b7a9eb fix warning
  • Additional commits viewable in compare view

Updates @aws-sdk/client-s3 from 3.883.0 to 3.971.0

Release notes

Sourced from @​aws-sdk/client-s3's releases.

v3.971.0

3.971.0(2026-01-16)

Chores
Documentation Changes
  • client-sagemaker: Adding security consideration comments for lcc accessing execution role under root access (83b0e783)
  • client-glacier: Documentation updates for Amazon Glacier's maintenance mode (18674f5d)
New Features
  • clients: update client endpoints as of 2026-01-16 (5149b6b0)
  • client-datazone: This release adds support for numeric filtering and complex free-text searches cases for the Search and SearchListings APIs. (3ce55674)
  • client-connect: Adds support to allow customers to create form with Dispute configuration (faedfc8b)
  • client-launch-wizard: Added UpdateDeployment, ListDeploymentPatternVersions and GetDeploymentPatternVersion APIs for Launch Wizard (5126f41e)
  • client-resource-explorer-2: Added ViewName to View-related responses and ServiceViewName to GetServiceView response. (e0212a10)

For list of updated packages, view updated-packages.md in assets-3.971.0.zip

v3.970.0

3.970.0(2026-01-15)

Chores
  • util-endpoints: update aws partitions.json (057ed943)
  • endpoints: update endpoints model (27bb9e6d)
  • models: update API models (e4aef87d)
  • codegen: update for handling __type in cbor structs (#7663) (2104fe9e)
Documentation Changes
  • client-ec2: This release includes documentation updates to support up to four Elastic Volume modifications per Amazon EBS volume within a rolling 24-hour period. (0e4c5b5c)
New Features
  • client-ecs: Adds support for configuring FIPS in AWS GovCloud (US) Regions via a new ECS Capacity Provider field fipsEnabled. When enabled, instances launched by the capacity provider will use a FIPS-140 enabled AMI. Instances will use FIPS-140 compliant cryptographic modules and AWS FIPS endpoints. (0ebb2f22)
  • client-evs: A new GetVersions API has been added to retrieve VCF, ESX versions, and EC2 instances provided by Amazon EVS. The CreateEnvironment API now allows you to select a VCF version and the CreateEnvironmentHost API introduces a optional esxVersion parameter. (4f6b30a2)
  • client-deadline: AWS Deadline Cloud now supports tagging Budget resources with ABAC for permissions management and selecting up to 16 filter values in the monitor and Search API. (bb46d258)
  • client-cleanrooms: This release adds support for parameters in PySpark analysis templates. (bc4219bf)
  • client-opensearchserverless: Collection groups in Amazon OpenSearch Serverless enables to organize multiple collections and enable compute resource sharing across collections with different KMS keys. This shared compute model reduces costs by eliminating the need for separate OpenSearch Compute Units (OCUs) for each KMS key. (bfdce6ab)
  • client-lakeformation: API Changes for GTCForLocation feature. Includes a new API, GetTemporaryDataLocationCredentials and updates to the APIs RegisterResource and UpdateResource (493fd840)
  • client-qconnect: Fix inference configuration shapes for the CreateAIPrompt and UpdateAIPrompt APIs, Modify Text Length Limit for SendMessage API (c54736e1)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-s3's changelog.

3.971.0 (2026-01-16)

Note: Version bump only for package @​aws-sdk/client-s3

3.970.0 (2026-01-15)

Note: Version bump only for package @​aws-sdk/client-s3

3.969.0 (2026-01-14)

Note: Version bump only for package @​aws-sdk/client-s3

3.968.0 (2026-01-13)

Note: Version bump only for package @​aws-sdk/client-s3

3.967.0 (2026-01-12)

Note: Version bump only for package @​aws-sdk/client-s3

3.966.0 (2026-01-09)

Note: Version bump only for package @​aws-sdk/client-s3

3.965.0 (2026-01-07)

... (truncated)

Commits

Updates @aws-sdk/s3-request-presigner from 3.883.0 to 3.971.0

Release notes

Sourced from @​aws-sdk/s3-request-presigner's releases.

v3.971.0

3.971.0(2026-01-16)

Chores
Documentation Changes
  • client-sagemaker: Adding security consideration comments for lcc accessing execution role under root access (83b0e783)
  • client-glacier: Documentation updates for Amazon Glacier's maintenance mode (18674f5d)
New Features
  • clients: update client endpoints as of 2026-01-16 (5149b6b0)
  • client-datazone: This release adds support for numeric filtering and complex free-text searches cases for the Search and SearchListings APIs. (3ce55674)
  • client-connect: Adds support to allow customers to create form with Dispute configuration (faedfc8b)
  • client-launch-wizard: Added UpdateDeployment, ListDeploymentPatternVersions and GetDeploymentPatternVersion APIs for Launch Wizard (5126f41e)
  • client-resource-explorer-2: Added ViewName to View-related responses and ServiceViewName to GetServiceView response. (e0212a10)

For list of updated packages, view updated-packages.md in assets-3.971.0.zip

v3.970.0

3.970.0(2026-01-15)

Chores
  • util-endpoints: update aws partitions.json (057ed943)
  • endpoints: update endpoints model (27bb9e6d)
  • models: update API models (e4aef87d)
  • codegen: update for handling __type in cbor structs (#7663) (2104fe9e)
Documentation Changes
  • client-ec2: This release includes documentation updates to support up to four Elastic Volume modifications per Amazon EBS volume within a rolling 24-hour period. (0e4c5b5c)
New Features
  • client-ecs: Adds support for configuring FIPS in AWS GovCloud (US) Regions via a new ECS Capacity Provider field fipsEnabled. When enabled, instances launched by the capacity provider will use a FIPS-140 enabled AMI. Instances will use FIPS-140 compliant cryptographic modules and AWS FIPS endpoints. (0ebb2f22)
  • client-evs: A new GetVersions API has been added to retrieve VCF, ESX versions, and EC2 instances provided by Amazon EVS. The CreateEnvironment API now allows you to select a VCF version and the CreateEnvironmentHost API introduces a optional esxVersion parameter. (4f6b30a2)
  • client-deadline: AWS Deadline Cloud now supports tagging Budget resources with ABAC for permissions management and selecting up to 16 filter values in the monitor and Search API. (bb46d258)
  • client-cleanrooms: This release adds support for parameters in PySpark analysis templates. (bc4219bf)
  • client-opensearchserverless: Collection groups in Amazon OpenSearch Serverless enables to organize multiple collections and enable compute resource sharing across collections with different KMS keys. This shared compute model reduces costs by eliminating the need for separate OpenSearch Compute Units (OCUs) for each KMS key. (bfdce6ab)
  • client-lakeformation: API Changes for GTCForLocation feature. Includes a new API, GetTemporaryDataLocationCredentials and updates to the APIs RegisterResource and UpdateResource (493fd840)
  • client-qconnect: Fix inference configuration shapes for the CreateAIPrompt and UpdateAIPrompt APIs, Modify Text Length Limit for SendMessage API (c54736e1)

... (truncated)

Changelog

Sourced from @​aws-sdk/s3-request-presigner's changelog.

3.971.0 (2026-01-16)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.970.0 (2026-01-15)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.969.0 (2026-01-14)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.968.0 (2026-01-13)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.967.0 (2026-01-12)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.966.0 (2026-01-09)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.965.0 (2026-01-07)

... (truncated)

Commits

…3 updates

Bumps the minor-and-patch group with 43 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.57.0` |
| [cross-env](https://github.com/kentcdodds/cross-env) | `10.0.0` | `10.1.0` |
| [eslint](https://github.com/eslint/eslint) | `9.35.0` | `9.39.2` |
| [eslint-plugin-format](https://github.com/antfu/eslint-plugin-format) | `1.0.1` | `1.3.1` |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.8.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.2` | `5.9.3` |
| [isomorphic-dompurify](https://github.com/kkomelin/isomorphic-dompurify) | `2.26.0` | `2.35.0` |
| [@types/vscode](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/vscode) | `1.103.0` | `1.108.1` |
| [@vscode/vsce](https://github.com/Microsoft/vsce) | `3.6.0` | `3.7.1` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.883.0` | `3.971.0` |
| [@aws-sdk/s3-request-presigner](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/s3-request-presigner) | `3.883.0` | `3.971.0` |
| [axios](https://github.com/axios/axios) | `1.11.0` | `1.13.2` |
| [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) | `3.45.1` | `3.47.0` |
| [csstype](https://github.com/frenic/csstype) | `3.1.3` | `3.2.3` |
| [es-toolkit](https://github.com/toss/es-toolkit) | `1.39.10` | `1.44.0` |
| [juice](https://github.com/Automattic/juice) | `11.0.1` | `11.1.0` |
| [katex](https://github.com/KaTeX/KaTeX) | `0.16.22` | `0.16.27` |
| [lucide-vue-next](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-vue-next) | `0.542.0` | `0.562.0` |
| [pinia](https://github.com/vuejs/pinia) | `3.0.3` | `3.0.4` |
| [reka-ui](https://github.com/unovue/reka-ui) | `2.5.0` | `2.7.0` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `3.3.1` | `3.4.0` |
| [tw-animate-css](https://github.com/Wombosvideo/tw-animate-css) | `1.3.8` | `1.4.0` |
| [vue-sonner](https://github.com/xiaoluoboding/vue-sonner) | `2.0.8` | `2.0.9` |
| [yup](https://github.com/jquense/yup) | `1.7.0` | `1.7.1` |
| [@cloudflare/workers-types](https://github.com/cloudflare/workerd) | `4.20250906.0` | `4.20260120.0` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.1.13` | `4.1.18` |
| [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.1.13` | `4.1.18` |
| [@types/katex](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/katex) | `0.16.7` | `0.16.8` |
| [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue) | `6.0.1` | `6.0.3` |
| [less](https://github.com/less/less.js) | `4.4.1` | `4.5.1` |
| [rollup](https://github.com/rollup/rollup) | `4.46.2` | `4.55.2` |
| [rollup-plugin-visualizer](https://github.com/btd/rollup-plugin-visualizer) | `6.0.3` | `6.0.5` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.1.13` | `4.1.18` |
| [vite-plugin-node-polyfills](https://github.com/davidmyersdev/vite-plugin-node-polyfills) | `0.24.0` | `0.25.0` |
| [vite-plugin-pwa](https://github.com/vite-pwa/vite-plugin-pwa) | `1.0.3` | `1.2.0` |
| [vite-plugin-static-copy](https://github.com/sapphi-red/vite-plugin-static-copy) | `3.1.2` | `3.1.5` |
| [vite-plugin-vue-devtools](https://github.com/vuejs/devtools/tree/HEAD/packages/vite) | `8.0.1` | `8.0.5` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `3.0.6` | `3.2.2` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.33.2` | `4.59.2` |
| [wxt](https://github.com/wxt-dev/wxt) | `0.20.11` | `0.20.13` |
| [mermaid](https://github.com/mermaid-js/mermaid) | `11.11.0` | `11.12.2` |
| [express](https://github.com/expressjs/express) | `5.1.0` | `5.2.1` |
| [form-data](https://github.com/form-data/form-data) | `4.0.4` | `4.0.5` |



Updates `@playwright/test` from 1.55.1 to 1.57.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.55.1...v1.57.0)

Updates `cross-env` from 10.0.0 to 10.1.0
- [Release notes](https://github.com/kentcdodds/cross-env/releases)
- [Changelog](https://github.com/kentcdodds/cross-env/blob/main/CHANGELOG.md)
- [Commits](kentcdodds/cross-env@v10.0.0...v10.1.0)

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

Updates `eslint-plugin-format` from 1.0.1 to 1.3.1
- [Release notes](https://github.com/antfu/eslint-plugin-format/releases)
- [Commits](antfu/eslint-plugin-format@v1.0.1...v1.3.1)

Updates `prettier` from 3.6.2 to 3.8.0
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.6.2...3.8.0)

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

Updates `isomorphic-dompurify` from 2.26.0 to 2.35.0
- [Release notes](https://github.com/kkomelin/isomorphic-dompurify/releases)
- [Commits](kkomelin/isomorphic-dompurify@2.26.0...2.35.0)

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

Updates `@vscode/vsce` from 3.6.0 to 3.7.1
- [Release notes](https://github.com/Microsoft/vsce/releases)
- [Commits](microsoft/vscode-vsce@v3.6.0...v3.7.1)

Updates `@aws-sdk/client-s3` from 3.883.0 to 3.971.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.971.0/clients/client-s3)

Updates `@aws-sdk/s3-request-presigner` from 3.883.0 to 3.971.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/s3-request-presigner/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.971.0/packages/s3-request-presigner)

Updates `axios` from 1.11.0 to 1.13.2
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.11.0...v1.13.2)

Updates `core-js` from 3.45.1 to 3.47.0
- [Release notes](https://github.com/zloirock/core-js/releases)
- [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zloirock/core-js/commits/v3.47.0/packages/core-js)

Updates `csstype` from 3.1.3 to 3.2.3
- [Release notes](https://github.com/frenic/csstype/releases)
- [Commits](frenic/csstype@v3.1.3...v3.2.3)

Updates `es-toolkit` from 1.39.10 to 1.44.0
- [Release notes](https://github.com/toss/es-toolkit/releases)
- [Changelog](https://github.com/toss/es-toolkit/blob/main/CHANGELOG.md)
- [Commits](toss/es-toolkit@v1.39.10...v1.44.0)

Updates `juice` from 11.0.1 to 11.1.0
- [Release notes](https://github.com/Automattic/juice/releases)
- [Changelog](https://github.com/Automattic/juice/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Automattic/juice/commits/v11.1.0)

Updates `katex` from 0.16.22 to 0.16.27
- [Release notes](https://github.com/KaTeX/KaTeX/releases)
- [Changelog](https://github.com/KaTeX/KaTeX/blob/main/CHANGELOG.md)
- [Commits](KaTeX/KaTeX@v0.16.22...v0.16.27)

Updates `lucide-vue-next` from 0.542.0 to 0.562.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.562.0/packages/lucide-vue-next)

Updates `pinia` from 3.0.3 to 3.0.4
- [Release notes](https://github.com/vuejs/pinia/releases)
- [Commits](vuejs/pinia@v3.0.3...v3.0.4)

Updates `reka-ui` from 2.5.0 to 2.7.0
- [Release notes](https://github.com/unovue/reka-ui/releases)
- [Commits](unovue/reka-ui@v2.5.0...v2.7.0)

Updates `tailwind-merge` from 3.3.1 to 3.4.0
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v3.3.1...v3.4.0)

Updates `tw-animate-css` from 1.3.8 to 1.4.0
- [Release notes](https://github.com/Wombosvideo/tw-animate-css/releases)
- [Commits](Wombosvideo/tw-animate-css@v1.3.8...v1.4.0)

Updates `vue-sonner` from 2.0.8 to 2.0.9
- [Release notes](https://github.com/xiaoluoboding/vue-sonner/releases)
- [Changelog](https://github.com/xiaoluoboding/vue-sonner/blob/main/CHANGELOG.md)
- [Commits](xiaoluoboding/vue-sonner@v2.0.8...v2.0.9)

Updates `yup` from 1.7.0 to 1.7.1
- [Release notes](https://github.com/jquense/yup/releases)
- [Changelog](https://github.com/jquense/yup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/jquense/yup/commits)

Updates `@cloudflare/workers-types` from 4.20250906.0 to 4.20260120.0
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](https://github.com/cloudflare/workerd/commits)

Updates `@tailwindcss/postcss` from 4.1.13 to 4.1.18
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.1.18/packages/@tailwindcss-postcss)

Updates `@tailwindcss/vite` from 4.1.13 to 4.1.18
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.1.18/packages/@tailwindcss-vite)

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

Updates `@vitejs/plugin-vue` from 6.0.1 to 6.0.3
- [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.3/packages/plugin-vue)

Updates `less` from 4.4.1 to 4.5.1
- [Release notes](https://github.com/less/less.js/releases)
- [Changelog](https://github.com/less/less.js/blob/master/CHANGELOG.md)
- [Commits](less/less.js@v4.4.1...v4.5.1)

Updates `rollup` from 4.46.2 to 4.55.2
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.46.2...v4.55.2)

Updates `rollup-plugin-visualizer` from 6.0.3 to 6.0.5
- [Changelog](https://github.com/btd/rollup-plugin-visualizer/blob/master/CHANGELOG.md)
- [Commits](btd/rollup-plugin-visualizer@v6.0.3...v6.0.5)

Updates `tailwindcss` from 4.1.13 to 4.1.18
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.1.18/packages/tailwindcss)

Updates `vite-plugin-node-polyfills` from 0.24.0 to 0.25.0
- [Release notes](https://github.com/davidmyersdev/vite-plugin-node-polyfills/releases)
- [Commits](davidmyersdev/vite-plugin-node-polyfills@v0.24.0...v0.25.0)

Updates `vite-plugin-pwa` from 1.0.3 to 1.2.0
- [Release notes](https://github.com/vite-pwa/vite-plugin-pwa/releases)
- [Commits](vite-pwa/vite-plugin-pwa@v1.0.3...v1.2.0)

Updates `vite-plugin-static-copy` from 3.1.2 to 3.1.5
- [Release notes](https://github.com/sapphi-red/vite-plugin-static-copy/releases)
- [Changelog](https://github.com/sapphi-red/vite-plugin-static-copy/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sapphi-red/vite-plugin-static-copy/compare/vite-plugin-static-copy@3.1.2...vite-plugin-static-copy@3.1.5)

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

Updates `vue-tsc` from 3.0.6 to 3.2.2
- [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.2.2/packages/tsc)

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

Updates `wxt` from 0.20.11 to 0.20.13
- [Release notes](https://github.com/wxt-dev/wxt/releases)
- [Commits](wxt-dev/wxt@wxt-v0.20.11...wxt-v0.20.13)

Updates `mermaid` from 11.11.0 to 11.12.2
- [Release notes](https://github.com/mermaid-js/mermaid/releases)
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.11.0...mermaid@11.12.2)

Updates `express` from 5.1.0 to 5.2.1
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@v5.1.0...v5.2.1)

Updates `form-data` from 4.0.4 to 4.0.5
- [Release notes](https://github.com/form-data/form-data/releases)
- [Changelog](https://github.com/form-data/form-data/blob/master/CHANGELOG.md)
- [Commits](form-data/form-data@v4.0.4...v4.0.5)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-version: 1.57.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: cross-env
  dependency-version: 10.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: eslint
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: eslint-plugin-format
  dependency-version: 1.3.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: prettier
  dependency-version: 3.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: isomorphic-dompurify
  dependency-version: 2.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/vscode"
  dependency-version: 1.108.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@vscode/vsce"
  dependency-version: 3.7.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.971.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@aws-sdk/s3-request-presigner"
  dependency-version: 3.971.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: axios
  dependency-version: 1.13.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: core-js
  dependency-version: 3.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: csstype
  dependency-version: 3.2.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: es-toolkit
  dependency-version: 1.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: juice
  dependency-version: 11.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: katex
  dependency-version: 0.16.27
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: lucide-vue-next
  dependency-version: 0.562.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: pinia
  dependency-version: 3.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: reka-ui
  dependency-version: 2.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: tailwind-merge
  dependency-version: 3.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: tw-animate-css
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: vue-sonner
  dependency-version: 2.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: yup
  dependency-version: 1.7.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@cloudflare/workers-types"
  dependency-version: 4.20260120.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.1.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@tailwindcss/vite"
  dependency-version: 4.1.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/katex"
  dependency-version: 0.16.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@vitejs/plugin-vue"
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: less
  dependency-version: 4.5.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rollup
  dependency-version: 4.55.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rollup-plugin-visualizer
  dependency-version: 6.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: tailwindcss
  dependency-version: 4.1.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: vite-plugin-node-polyfills
  dependency-version: 0.25.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: vite-plugin-pwa
  dependency-version: 1.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: vite-plugin-static-copy
  dependency-version: 3.1.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: vite-plugin-vue-devtools
  dependency-version: 8.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: vue-tsc
  dependency-version: 3.2.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: wrangler
  dependency-version: 4.59.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: wxt
  dependency-version: 0.20.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: mermaid
  dependency-version: 11.12.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: express
  dependency-version: 5.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: form-data
  dependency-version: 4.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

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 Jan 20, 2026
@github-actions

github-actions Bot commented Jan 20, 2026

Copy link
Copy Markdown

😭 Deploy PR Preview failed.

@dependabot @github

dependabot Bot commented on behalf of github Jan 27, 2026

Copy link
Copy Markdown
Contributor Author

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

@dependabot dependabot Bot closed this Jan 27, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

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