Skip to content

Bump the development group with 3 updates#159

Merged
MattIPv4 merged 1 commit intomasterfrom
dependabot/npm_and_yarn/development-9f70759e00
Mar 1, 2026
Merged

Bump the development group with 3 updates#159
MattIPv4 merged 1 commit intomasterfrom
dependabot/npm_and_yarn/development-9f70759e00

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Mar 1, 2026

Bumps the development group with 3 updates: @cloudflare/vitest-pool-workers, eslint-plugin-jsdoc and wrangler.

Updates @cloudflare/vitest-pool-workers from 0.12.10 to 0.12.17

Release notes

Sourced from @​cloudflare/vitest-pool-workers's releases.

@​cloudflare/vitest-pool-workers@​0.12.17

Patch Changes

  • Updated dependencies [3d6e421, 294297e]:
    • wrangler@4.68.1
    • miniflare@4.20260302.0

@​cloudflare/vitest-pool-workers@​0.12.16

Patch Changes

@​cloudflare/vitest-pool-workers@​0.12.15

Patch Changes

  • #12602 58a4020 Thanks @​anonrig! - Optimize filesystem operations by using Node.js's throwIfNoEntry: false option

    This reduces the number of system calls made when checking for file existence by avoiding the overhead of throwing and catching errors for missing paths. This is an internal performance optimization with no user-visible behavioral changes.

  • Updated dependencies [e93dc01, c2ed7c2, d920811, 896734d, ebdbe52, 58a4020, 6f6cd94]:

    • wrangler@4.67.1
    • miniflare@4.20260302.0

@​cloudflare/vitest-pool-workers@​0.12.14

Patch Changes

@​cloudflare/vitest-pool-workers@​0.12.13

Patch Changes

@​cloudflare/vitest-pool-workers@​0.12.12

Patch Changes

  • #11771 4b6fd36 Thanks @​avenceslau! - Fix Durable Object storage causing SQLITE_CANTOPEN errors on repeated test runs

    When running vitest multiple times in watch mode, Durable Object storage would fail with SQLITE_CANTOPEN errors. This happened because the storage reset function was deleting directories that workerd still had file handles to.

    The fix preserves directory structure during storage reset, deleting only files while keeping directories intact. This allows workerd to maintain valid handles to SQLite database directories across test runs.

  • Updated dependencies [ad817dd, b900c5a, f7fa326, 734792a, 7aaa2a5, cc5ac22, 62a8d48, 84252b7, e5efa5d, d06ad09, 10a1c4a, be9745f, d7b492c, 122791d, 8809411, 1a9eddd, 41e18aa]:

... (truncated)

Changelog

Sourced from @​cloudflare/vitest-pool-workers's changelog.

0.12.17

Patch Changes

  • Updated dependencies [3d6e421, 294297e]:
    • wrangler@4.68.1
    • miniflare@4.20260302.0

0.12.16

Patch Changes

0.12.15

Patch Changes

  • #12602 58a4020 Thanks @​anonrig! - Optimize filesystem operations by using Node.js's throwIfNoEntry: false option

    This reduces the number of system calls made when checking for file existence by avoiding the overhead of throwing and catching errors for missing paths. This is an internal performance optimization with no user-visible behavioral changes.

  • Updated dependencies [e93dc01, c2ed7c2, d920811, 896734d, ebdbe52, 58a4020, 6f6cd94]:

    • wrangler@4.67.1
    • miniflare@4.20260302.0

0.12.14

Patch Changes

0.12.13

Patch Changes

0.12.12

Patch Changes

  • #11771 4b6fd36 Thanks @​avenceslau! - Fix Durable Object storage causing SQLITE_CANTOPEN errors on repeated test runs

    When running vitest multiple times in watch mode, Durable Object storage would fail with SQLITE_CANTOPEN errors. This happened because the storage reset function was deleting directories that workerd still had file handles to.

... (truncated)

Commits

Updates eslint-plugin-jsdoc from 62.5.0 to 62.7.1

Release notes

Sourced from eslint-plugin-jsdoc's releases.

v62.7.1

62.7.1 (2026-02-24)

Bug Fixes

  • require-property: err if user blocks [@property](https://github.com/property); fixes #1634 (23a9f1d)

v62.7.0

62.7.0 (2026-02-20)

Features

v62.6.1

62.6.1 (2026-02-19)

Bug Fixes

  • check-param-names: only fire on TSPropertySignature if with TSFunctionNode; fixes #1663 (951d354)

v62.6.0

62.6.0 (2026-02-18)

Features

  • tag-lines: add startLinesWithNoTags option; fixes #1661 (b36a67a)

v62.5.5

62.5.5 (2026-02-15)

Bug Fixes

  • check-param-names: check arrow function properties in interfaces (TSPropertySignature); fixes #1657 (c7b132f)

v62.5.4

62.5.4 (2026-02-07)

Bug Fixes

  • no-undefined-types: avoid treating infer type identifier as undefined; fixes #1654 (da44046)
  • no-undefined-types: ensure template tags are defined; fixes #1655 (bfef848)

v62.5.3

... (truncated)

Commits
  • 23a9f1d fix(require-property): err if user blocks @property; fixes #1634
  • bd90efd Merge pull request #1668 from gajus/dependabot/npm_and_yarn/ajv-6.14.0
  • eca3090 chore(deps): bump ajv from 6.12.6 to 6.14.0
  • 86bd0be Merge pull request #1666 from gajus/gajus-patch-1
  • ba0c8af Update funding to brettz9
  • 35c5745 Merge pull request #1659 from brettz9/eslint10
  • d8599fb feat: support ESLint 10
  • 951d354 fix(check-param-names): only fire on TSPropertySignature if with `TSFunct...
  • b36a67a feat(tag-lines): add startLinesWithNoTags option; fixes #1661
  • c7b132f fix(check-param-names): check arrow function properties in interfaces (TSPr...
  • Additional commits viewable in compare view

Updates wrangler from 4.61.1 to 4.68.1

Release notes

Sourced from wrangler's releases.

wrangler@4.68.1

Patch Changes

  • #12648 3d6e421 Thanks @​petebacondarwin! - Fix Angular scaffolding to allow localhost SSR in development mode

    Recent versions of Angular's AngularAppEngine block serving SSR on localhost by default. This caused wrangler dev / wrangler pages dev to fail with URL with hostname "localhost" is not allowed.

    The fix passes allowedHosts: ["localhost"] to the AngularAppEngine constructor in server.ts, which is safe to do even in production since Cloudflare will already restrict which host is allowed.

  • #12657 294297e Thanks @​dario-piotrowicz! - Update Waku autoconfig logic

    As of 1.0.0-alpha.4, Waku projects can be built on top of the Cloudflare Vite plugin, and the changes here allow Wrangler autoconfig to support this. Running autoconfig on older versions of Waku will result in an error.

  • Updated dependencies []:

    • miniflare@4.20260302.0

wrangler@4.68.0

Minor Changes

wrangler@4.67.1

Patch Changes

  • #12595 e93dc01 Thanks @​dario-piotrowicz! - Add a warning in the autoconfig logic letting users know that support for projects inside workspaces is limited

  • #12582 c2ed7c2 Thanks @​penalosa! - Internal refactor to use capnweb's native ReadableStream support to power remote Media and Dispatch Namespace bindings.

  • #12618 d920811 Thanks @​dependabot! - Update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260219.0 1.20260227.0
  • #12637 896734d Thanks @​dependabot! - Update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260227.0 1.20260302.0
  • #12601 ebdbe52 Thanks @​43081j! - Switch to empathic for file-system upwards traversal to reduce dependency bloat.

  • #12602 58a4020 Thanks @​anonrig! - Optimize filesystem operations by using Node.js's throwIfNoEntry: false option

... (truncated)

Commits

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

Bumps the development group with 3 updates: [@cloudflare/vitest-pool-workers](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers), [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) and [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler).


Updates `@cloudflare/vitest-pool-workers` from 0.12.10 to 0.12.17
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Changelog](https://github.com/cloudflare/workers-sdk/blob/main/packages/vitest-pool-workers/CHANGELOG.md)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/@cloudflare/vitest-pool-workers@0.12.17/packages/vitest-pool-workers)

Updates `eslint-plugin-jsdoc` from 62.5.0 to 62.7.1
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Commits](gajus/eslint-plugin-jsdoc@v62.5.0...v62.7.1)

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

---
updated-dependencies:
- dependency-name: "@cloudflare/vitest-pool-workers"
  dependency-version: 0.12.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development
- dependency-name: eslint-plugin-jsdoc
  dependency-version: 62.7.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: wrangler
  dependency-version: 4.68.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
...

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 Mar 1, 2026
@MattIPv4 MattIPv4 merged commit ee41a8d into master Mar 1, 2026
4 checks passed
@MattIPv4 MattIPv4 deleted the dependabot/npm_and_yarn/development-9f70759e00 branch March 1, 2026 15:16
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.

1 participant