Skip to content

chore(dev-deps): bump the dev-dependencies group across 1 directory with 7 updates#181

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-723181a6d7
Open

chore(dev-deps): bump the dev-dependencies group across 1 directory with 7 updates#181
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-723181a6d7

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 16, 2026

Bumps the dev-dependencies group with 7 updates in the / directory:

Package From To
@crowdin/cli 4.14.1 4.14.2
@playwright/test 1.59.1 1.60.0
@types/node 25.5.2 25.8.0
tsx 4.21.0 4.22.1
vitest 4.1.4 4.1.6
vue-tsc 3.2.6 3.2.9
wait-on 9.0.4 9.0.10

Updates @crowdin/cli from 4.14.1 to 4.14.2

Release notes

Sourced from @​crowdin/cli's releases.

4.14.2

What's Changed

Full Changelog: crowdin/crowdin-cli@4.14.1...4.14.2

Changelog

Sourced from @​crowdin/cli's changelog.

4.14.2 (2026-04-23)

Bug Fixes

Commits

Updates @playwright/test from 1.59.1 to 1.60.0

Release notes

Sourced from @​playwright/test's releases.

v1.60.0

🌐 HAR recording on Tracing

tracing.startHar() / tracing.stopHar() expose HAR recording as a first-class tracing API, with the same content, mode and urlFilter options as recordHar. The returned Disposable makes it easy to scope a recording with await using:

await using har = await context.tracing.startHar('trace.har');
const page = await context.newPage();
await page.goto('https://playwright.dev');
// HAR is finalized when `har` goes out of scope.

🪝 Drop API

New locator.drop() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches dragenter, dragover, and drop with a synthetic [DataTransfer] in the page context — works cross-browser and is great for testing upload zones:

await page.locator('#dropzone').drop({
  files: { name: 'note.txt', mimeType: 'text/plain', buffer: Buffer.from('hello') },
});
await page.locator('#dropzone').drop({
data: {
'text/plain': 'hello world',
'text/uri-list': 'https://example.com',
},
});

🎯 Aria snapshots

🛑 test.abort()

New test.abort() aborts the currently running test from a fixture, hook, or route handler with an optional message. Use it when you have detected an unrecoverable misuse and want to fail the test right away:

test('does not publish to the shared page', async ({ page }) => {
  await page.route('**/publish', route => {
    test.abort('Tests must not publish to the shared page. Use the `clone` option.');
    return route.abort();
  });
  // ...
});

New APIs

Browser, Context and Page

... (truncated)

Commits

Updates @types/node from 25.5.2 to 25.8.0

Commits

Updates tsx from 4.21.0 to 4.22.1

Release notes

Sourced from tsx's releases.

v4.22.1

4.22.1 (2026-05-17)

Bug Fixes

  • resolve tsconfig path aliases containing a colon (#780) (6979f28)

This release is also available on:

v4.22.0

4.22.0 (2026-05-14)

Features


This release is also available on:

v4.21.1

4.21.1 (2026-05-14)

Bug Fixes

  • support Node 20.11/21.2 import.meta paths (acf3d8f)
  • support Node.js 24.15.0 (c1d2d45)
  • support Node.js 26.1.0 and 25.9.0 (1d7e528)

This release is also available on:

Commits
  • 6979f28 fix: resolve tsconfig path aliases containing a colon (#780)
  • b29f6ee feat: upgrade esbuild to 0.28 (#789)
  • 0dd17e9 test: cover registerHooks loader composition
  • acf3d8f fix: support Node 20.11/21.2 import.meta paths
  • 4bbef80 test: cover configDir paths without baseUrl
  • dddc5ce test: cover sync-hook watch reruns and cleanup retries
  • 09e8f8c test: assert CLI runs without warnings
  • 1d7e528 fix: support Node.js 26.1.0 and 25.9.0
  • c1d2d45 fix: support Node.js 24.15.0
  • d04672d test: update node version feature gates
  • Additional commits viewable in compare view
Maintainer changes

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


Updates vitest from 4.1.4 to 4.1.6

Release notes

Sourced from vitest's releases.

v4.1.6

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v4.1.5

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • a8fd24c chore: release v4.1.6
  • 18af98c fix(browser): simplify orchestrator otel carrier (#10285)
  • 3188260 feat(browser): provide project reference in ToMatchScreenshotResolvePath (#...
  • e399846 chore: release v4.1.5
  • 7dc6d54 Revert "fix: respect diff config options in soft assertions (#8696)"
  • 9787ded fix: respect diff config options in soft assertions (#8696)
  • 325463a fix(ast-collect): recognize _vi_import prefix in static test discovery (#10...
  • 0e0ff41 feat(coverage): istanbul to support instrumenter option (#10119)
  • 663b99f fix: alias agent reporter to minimal (#10157)
  • 122c25b fix: fix vi.defineHelper called as object method (#10163)
  • Additional commits viewable in compare view

Updates vue-tsc from 3.2.6 to 3.2.9

Release notes

Sourced from vue-tsc's releases.

v3.2.9

language-core

  • fix: do not process inline markdown syntax in semantic-aware segments (#6038) - Thanks to @​KazariEX!
  • perf: rewrite a subset of template node transforms (#5769) - Thanks to @​KazariEX!

vscode

  • fix: trigger file rename edits when moving folders with Vue files (#6046) - Thanks to @​KazariEX!

workspace

Our Sponsors ❤️

... (truncated)

Changelog

Sourced from vue-tsc's changelog.

3.2.9 (2026-05-14)

language-core

  • fix: do not process inline markdown syntax in semantic-aware segments (#6038) - Thanks to @​KazariEX!
  • perf: rewrite a subset of template node transforms (#5769) - Thanks to @​KazariEX!

vscode

  • fix: trigger file rename edits when moving folders with Vue files (#6046) - Thanks to @​KazariEX!

workspace

3.2.8 (2026-05-04)

language-core

  • fix: replace inline code blocks after sfc blocks processing (#6024) - Thanks to @​KazariEX!
  • fix: support navigation for kebab-case declarations in GlobalComponents (#6026) - Thanks to @​Gehbt!

language-service

  • feat: support TS module resolution for SCSS @import navigation (#6033) - Thanks to @​KazariEX!

typescript-plugin

  • fix: replace language service per-method overrides with a proxy (#6035) - Thanks to @​KazariEX!

vscode

3.2.7 (2026-04-19)

component-meta

  • fix: preserve non-ASCII characters in prop default values (#6012) - Thanks to @​ef81sp!

workspace

Commits

Updates wait-on from 9.0.4 to 9.0.10

Release notes

Sourced from wait-on's releases.

v9.0.10

Cleaned up unnecessary files from npm published package, added code coverage

Removed:

  • .fastembed_cache
  • .github
  • .nyc_output
  • coverage
  • .editorconfig
  • .nycrc.json
  • .prettierrc.js
  • eslint.config.mjs

Increased code coverage

Thanks @​aarongoldenthal

v9.0.6

Update minor deps for security vulnerabilities

  • axios
    • follow-redirects
  • joi

v9.0.5

Update minor dependencies and npm audit fixes

Commits

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label May 16, 2026
@railway-app
Copy link
Copy Markdown

railway-app Bot commented May 16, 2026

🚅 Deployed to the reqcore-pr-181 environment in applirank

Service Status Web Updated (UTC)
applirank ✅ Success (View Logs) May 17, 2026 at 2:01 pm

@railway-app railway-app Bot temporarily deployed to applirank / reqcore-pr-181 May 16, 2026 15:54 Destroyed
…ith 7 updates

Bumps the dev-dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@crowdin/cli](https://github.com/crowdin/crowdin-cli) | `4.14.1` | `4.14.2` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.59.1` | `1.60.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.5.2` | `25.8.0` |
| [tsx](https://github.com/privatenumber/tsx) | `4.21.0` | `4.22.1` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.4` | `4.1.6` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `3.2.6` | `3.2.9` |
| [wait-on](https://github.com/jeffbski/wait-on) | `9.0.4` | `9.0.10` |



Updates `@crowdin/cli` from 4.14.1 to 4.14.2
- [Release notes](https://github.com/crowdin/crowdin-cli/releases)
- [Changelog](https://github.com/crowdin/crowdin-cli/blob/main/CHANGELOG.md)
- [Commits](crowdin/crowdin-cli@4.14.1...4.14.2)

Updates `@playwright/test` from 1.59.1 to 1.60.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.59.1...v1.60.0)

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

Updates `tsx` from 4.21.0 to 4.22.1
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.21.0...v4.22.1)

Updates `vitest` from 4.1.4 to 4.1.6
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.6/packages/vitest)

Updates `vue-tsc` from 3.2.6 to 3.2.9
- [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.9/packages/tsc)

Updates `wait-on` from 9.0.4 to 9.0.10
- [Release notes](https://github.com/jeffbski/wait-on/releases)
- [Commits](jeffbski/wait-on@v9.0.4...v9.0.10)

---
updated-dependencies:
- dependency-name: "@crowdin/cli"
  dependency-version: 4.14.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: tsx
  dependency-version: 4.22.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: vitest
  dependency-version: 4.1.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: vue-tsc
  dependency-version: 3.2.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: wait-on
  dependency-version: 9.0.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
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