Skip to content

chore(deps): update all non-major dependencies#21

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#21
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Jun 1, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@cloudflare/vitest-pool-workers (source) ^0.16.10^0.17.0 age confidence
@vitest/coverage-istanbul (source) 4.1.74.1.9 age confidence

Release Notes

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

v0.17.0

Compare Source

Minor Changes
  • #​14490 75d8cb0 Thanks @​petebacondarwin! - Make Workflow introspector get() async

    The introspectWorkflow(...).get() method now returns a promise, so callers must await it:

    const introspector = await introspectWorkflow(env.MY_WORKFLOW);
    
    // Before
    const instances = introspector.get();
    
    // After
    const instances = await introspector.get();

    This aligns Workflow introspection with the shared implementation used by createTestHarness().

Patch Changes
  • #​14490 75d8cb0 Thanks @​petebacondarwin! - Support require("./x.wasm?module") in CommonJS dependencies

    Previously, only literal await import("./x.wasm?module") specifiers were rewritten through the static analysis path added in #​11094. CommonJS dependencies that use require("./x.wasm?module") reach the module-fallback service at runtime, where the ?module suffix went unhandled. The fallback either failed with No such module "<abs>/x.wasm?module" or, when a CompiledWasm rule was configured, attempted to evaluate the WebAssembly bytes as JavaScript.

    However, these require()s work in deployed workers because esbuild's bundler statically rewrites these require() calls into ES dynamic imports. vitest-pool-workers' Vite-based pipeline doesn't do that rewrite and instead defers to the module-fallback at runtime.

    The module-fallback now strips ?module from the resolved target and synthesizes a CommonJS wrapper that re-requires the underlying .wasm by absolute path, exposing it on default to match what workerd produces for CompiledWasm modules.

  • Updated dependencies [75d8cb0, 75d8cb0, 75d8cb0, 75d8cb0, 75d8cb0, f10d4ad, 75d8cb0, 75d8cb0, 75d8cb0, 75d8cb0, d292046, 75d8cb0, 75d8cb0, 75d8cb0, 75d8cb0, 75d8cb0, 75d8cb0, e0cc2cb, 75d8cb0, 75d8cb0, 75d8cb0]:

    • wrangler@​4.106.0
    • miniflare@​4.20260630.0
vitest-dev/vitest (@​vitest/coverage-istanbul)

v4.1.9

Compare Source

🐞 Bug Fixes
  • Fix importOriginal with optimizer and query import [backport to v4] - by Hiroshi Ogawa, David Harris, Codexand Vladimir in #​10546 (a5180)
  • browser:
    • Wait for orchestrator readiness before resolving browser sessions [backport to v4] - by Vladimir and Séamus O'Connor in #​10555 (7fb29)
    • Wait for iframe tester readiness before preparing [backport to v4] - by Vladimir and Séamus O'Connor in #​10497 and #​10556 (fbc62)
  • mocker:
    • Hoist vi.mock() for vite-plus/test imports [backport to v4] - by Hiroshi Ogawa, LongYinan, Claude Opus 4.8 and Vladimir in #​10548 (2c955)
  • pool:
    • Prevent test run hang on worker crash [backport to v4] - by Ari Perkkiö and Jattioui Ismail in #​10543 and #​10564 (934b0)
View changes on GitHub

v4.1.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Jun 1, 2026

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Updated (UTC)
✅ Deployment successful!
View logs
earthapp-cloud 5ec4291 Jun 30 2026, 06:14 PM

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from c9e2f48 to 355c1a2 Compare June 2, 2026 01:58
@renovate renovate Bot changed the title chore(deps): update dependency @vitest/coverage-istanbul to v4.1.8 chore(deps): update all non-major dependencies to v4.1.8 Jun 2, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2366904 to 48d874d Compare June 3, 2026 05:14
@codecov

codecov Bot commented Jun 3, 2026

Copy link
Copy Markdown

❌ 6 Tests Failed:

Tests completed Failed Passed Skipped
779 6 773 0
View the full list of 6 ❄️ flaky test(s)
tests/user/timer.spec.ts > UserTimer > allows starting again after a successful stop

Flake rate in main: 100.00% (Passed 0 times, Failed 1 times)

Stack Traces | 0.001s run time
TypeError: this.state.waitUntil is not a function
 ❯ UserTimer.fetch src/user/timer.ts:270:16
 ❯ tests/user/timer.spec.ts:171:24
tests/user/timer.spec.ts > UserTimer > honors administrator rank to bypass step delay on auto-advance

Flake rate in main: 100.00% (Passed 0 times, Failed 1 times)

Stack Traces | 0.009s run time
TypeError: this.state.waitUntil is not a function
 ❯ UserTimer.fetch src/user/timer.ts:270:16
 ❯ tests/user/timer.spec.ts:277:25
tests/user/timer.spec.ts > UserTimer > preserves metadata on activity_read_time trackers and completes matching read-time quests

Flake rate in main: 100.00% (Passed 0 times, Failed 1 times)

Stack Traces | 0.003s run time
TypeError: this.state.waitUntil is not a function
 ❯ UserTimer.fetch src/user/timer.ts:270:16
 ❯ tests/user/timer.spec.ts:410:25
tests/user/timer.spec.ts > UserTimer > respects step delay when no rank is supplied to the timer

Flake rate in main: 100.00% (Passed 0 times, Failed 1 times)

Stack Traces | 0.068s run time
TypeError: this.state.waitUntil is not a function
 ❯ UserTimer.fetch src/user/timer.ts:270:16
 ❯ tests/user/timer.spec.ts:341:25
tests/user/timer.spec.ts > UserTimer > stops a running timer and applies badge tracker updates

Flake rate in main: 100.00% (Passed 0 times, Failed 1 times)

Stack Traces | 0.007s run time
TypeError: this.state.waitUntil is not a function
 ❯ UserTimer.fetch src/user/timer.ts:270:16
 ❯ tests/user/timer.spec.ts:123:15
tests/user/timer.spec.ts > UserTimer > stops successfully without metadata by falling back to field id

Flake rate in main: 100.00% (Passed 0 times, Failed 1 times)

Stack Traces | 0.001s run time
TypeError: this.state.waitUntil is not a function
 ❯ UserTimer.fetch src/user/timer.ts:270:16
 ❯ tests/user/timer.spec.ts:209:24

To view more test analytics, go to the Test Analytics Dashboard
📋 Got 3 mins? Take this short survey to help us improve Test Analytics.

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 1414c7a to cb407a4 Compare June 6, 2026 05:16
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from cb8cead to ba322f8 Compare June 15, 2026 08:53
@renovate renovate Bot changed the title chore(deps): update all non-major dependencies to v4.1.8 chore(deps): update all non-major dependencies to v4.1.9 Jun 15, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from a7ffe04 to 07b33f1 Compare June 19, 2026 10:46
@renovate renovate Bot changed the title chore(deps): update all non-major dependencies to v4.1.9 chore(deps): update all non-major dependencies Jun 22, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 07b33f1 to 187c106 Compare June 22, 2026 13:15
@renovate renovate Bot changed the title chore(deps): update all non-major dependencies chore(deps): update dependency @vitest/coverage-istanbul to v4.1.9 Jun 25, 2026
@renovate renovate Bot changed the title chore(deps): update dependency @vitest/coverage-istanbul to v4.1.9 chore(deps): update all non-major dependencies Jun 30, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 187c106 to 5ec4291 Compare June 30, 2026 18:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants