Skip to content

chore(deps): update dependency @cloudflare/vitest-pool-workers to ^0.12.0#3

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/dev-dependencies
Open

chore(deps): update dependency @cloudflare/vitest-pool-workers to ^0.12.0#3
renovate[bot] wants to merge 1 commit intomainfrom
renovate/dev-dependencies

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 21, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@cloudflare/vitest-pool-workers (source) ^0.5.0^0.12.0 age confidence

Release Notes

cloudflare/workers-sdk (@​cloudflare/vitest-pool-workers)

v0.12.12

Compare Source

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

    • wrangler@​4.65.0
    • miniflare@​4.20260212.0

v0.12.11

Compare Source

Patch Changes

v0.12.10

Compare Source

Patch Changes

v0.12.9

Compare Source

Patch Changes

v0.12.8

Compare Source

Patch Changes

v0.12.7

Compare Source

Patch Changes
  • #​12056 6d5f69f Thanks @​edmundhung! - fix: allow Vite query parameters like ?raw on .sql file imports

    Importing .sql files with Vite query parameters (e.g., import sql from "./query.sql?raw") would fail with "No such module" errors in vitest-pool-workers 0.12.x. Both import styles now work:

    • import sql from "./query.sql?raw" (Vite handles the ?raw transform)
    • import sql from "./query.sql" (loaded as Text module)
  • #​11917 7b40ceb Thanks @​ksawaneh! - Fix CommonJS require() of .json files in the module fallback service (avoids SyntaxError: Unexpected token ':').

  • #​11897 bbd8a5e Thanks @​dario-piotrowicz! - Bundle the zod dependency to reduce supply chain attack surface

    In order to prevent possible npm vulnerability attacks, the team's policy is to bundle
    dependencies in our packages where possible. This helps ensure that only trusted code
    runs on the user's system, even if compromised packages are later published to npm.

    This change bundles zod (a pure JavaScript validation library with no native dependencies)
    into miniflare and @​cloudflare/vitest-pool-workers.

    Other dependencies remain external for technical reasons:

    • sharp: Native binary with platform-specific builds
    • undici: Dynamically required at runtime in worker threads
    • ws: Has optional native bindings for performance
    • workerd: Native binary (Cloudflare's JavaScript runtime)
    • @cspotcode/source-map-support: Uses require.cache manipulation at runtime
    • youch: Dynamically required for lazy loading
  • Updated dependencies [a0a9ef6, ad4666c, 014e7aa, e414f05, 77e82d2, f08ef21, 0641e6c, eacedba, 05714f8, e8b2ef5, bbd8a5e]:

    • wrangler@​4.61.0
    • miniflare@​4.20260124.0

v0.12.6

Compare Source

Patch Changes

v0.12.5

Compare Source

Patch Changes

v0.12.4

Compare Source

Patch Changes
  • #​11898 c17e971 Thanks @​petebacondarwin! - Bundle more third-party dependencies to reduce supply chain risk

    Previously, several small utility packages were listed as runtime dependencies and
    installed separately. These are now bundled directly into the published packages,
    reducing the number of external dependencies users need to trust.

    Bundled dependencies:

    • miniflare: acorn, acorn-walk, exit-hook, glob-to-regexp, stoppable
    • kv-asset-handler: mime
    • vite-plugin-cloudflare: @remix-run/node-fetch-server, defu, get-port, picocolors, tinyglobby
    • vitest-pool-workers: birpc, devalue, get-port, semver
  • Updated dependencies [e78186d, fe4faa3, 4714ca1, c17e971, 695b043]:

    • miniflare@​4.20260114.0
    • wrangler@​4.59.2

v0.12.3

Compare Source

Patch Changes
  • Updated dependencies [99b1f32]:
    • wrangler@​4.59.1

v0.12.2

Compare Source

Patch Changes

v0.12.1

Compare Source

Patch Changes
  • Updated dependencies [97e67b9, 7d63fa5]:
    • miniflare@​4.20260107.0
    • wrangler@​4.58.0

v0.12.0

Compare Source

Minor Changes
  • #​11648 eac5cf7 Thanks @​pombosilva! - Add Workflows test handlers in vitest-pool-workers to get the Workflow instance output and error:

    • getOutput(): Returns the output of the successfully completed Workflow instance.
    • getError(): Returns the error information of the errored Workflow instance.

    Example:

    // First wait for the workflow instance to complete:
    await expect(
    	instance.waitForStatus({ status: "complete" })
    ).resolves.not.toThrow();
    
    // Then, get its output
    const output = await instance.getOutput();
    
    // Or for errored workflow instances, get their error:
    await expect(
    	instance.waitForStatus({ status: "errored" })
    ).resolves.not.toThrow();
    const error = await instance.getError();
Patch Changes

v0.11.1

Compare Source

Patch Changes

v0.11.0

Compare Source

Minor Changes
  • #​11533 8d9003e Thanks @​petebacondarwin! - Add support for ctx.exports

    It is now possible to access ctx.exports properties for the main (SELF) worker.

    • Integration tests: in the SELF worker the ctx.exports object now contains the expected stubs to the exported entry-points.
    • Unit tests: the object returned from createExecutionContext() has exports property that exposes the exports of the SELF worker.

    Due to the dynamic nature of Vitest the integration relies upon guessing what the exports of the main Worker are by statically analyzing the Worker source using esbuild. In cases where it is not possible to infer the exports (for example, a wildcard re-export of a virtual module) it is possible to declare these in the vitest-pool-workers config via the additionalExports setting.

Patch Changes

v0.10.15

Compare Source

Patch Changes

v0.10.14

Compare Source

Patch Changes

v0.10.13

Compare Source

Patch Changes
  • Updated dependencies [59534ba, 7e80340]:
    • miniflare@​4.20251202.0
    • wrangler@​4.52.1

v0.10.12

Compare Source

Patch Changes

v0.10.11

Compare Source

Patch Changes

v0.10.10

Compare Source

Patch Changes

v0.10.9

Compare Source

Patch Changes

v0.10.8

Compare Source

Patch Changes

v0.10.7

Compare Source

Patch Changes

v0.10.6

Compare Source

Patch Changes

v0.10.5

Compare Source

Patch Changes

v0.10.4

Compare Source

Patch Changes

v0.10.3

Patch Changes

v0.10.2

Patch Changes

v0.10.1

Compare Source

Patch Changes

v0.10.0

Compare Source

Minor Changes
Patch Changes

v0.9.14

Compare Source

Patch Changes

v0.9.13

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - "after 10pm every weekday,every weekend,before 5am every weekday" in timezone Asia/Jerusalem, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the renovate label Dec 21, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Dec 21, 2025
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 2 times, most recently from dda401b to 71085c4 Compare December 22, 2025 19:57
@renovate renovate bot force-pushed the renovate/dev-dependencies branch from 71085c4 to e68a4da Compare December 31, 2025 18:09
renovate-approve[bot]
renovate-approve bot previously approved these changes Dec 31, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Jan 10, 2026
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vitest-pool-workers to ^0.11.0 chore(deps): update dependency @cloudflare/vitest-pool-workers to ^0.12.0 Jan 10, 2026
@renovate renovate bot force-pushed the renovate/dev-dependencies branch from 98b5639 to bcc6385 Compare January 16, 2026 17:03
renovate-approve[bot]
renovate-approve bot previously approved these changes Jan 16, 2026
renovate-approve[bot]
renovate-approve bot previously approved these changes Jan 22, 2026
renovate-approve[bot]
renovate-approve bot previously approved these changes Jan 23, 2026
renovate-approve[bot]
renovate-approve bot previously approved these changes Jan 30, 2026
renovate-approve[bot]
renovate-approve bot previously approved these changes Feb 6, 2026
renovate-approve[bot]
renovate-approve bot previously approved these changes Feb 12, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants