Skip to content

chore(deps-dev): bump the dev-dependencies-minor-patch group across 1 directory with 6 updates#1624

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-minor-patch-98099e6a20
Closed

chore(deps-dev): bump the dev-dependencies-minor-patch group across 1 directory with 6 updates#1624
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-minor-patch-98099e6a20

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 3, 2026

Copy link
Copy Markdown
Contributor

Bumps the dev-dependencies-minor-patch group with 6 updates in the / directory:

Package From To
@hono/node-server 2.0.6 2.0.8
crossws 0.4.7 0.4.8
vite 8.1.2 8.1.3
@cloudflare/vitest-pool-workers 0.16.20 0.17.0
next 16.2.9 16.2.10
@scalar/api-reference 1.62.1 1.62.2

Updates @hono/node-server from 2.0.6 to 2.0.8

Release notes

Sourced from @​hono/node-server's releases.

v2.0.8

What's Changed

Full Changelog: honojs/node-server@v2.0.7...v2.0.8

v2.0.7

What's Changed

Full Changelog: honojs/node-server@v2.0.6...v2.0.7

Commits

Updates crossws from 0.4.7 to 0.4.8

Release notes

Sourced from crossws's releases.

v0.4.8

compare changes

🚀 Enhancements

  • proxy: Support unix socket targets out of the box (#197)

🩹 Fixes

  • client: Honor 3rd-arg options (headers) on bun and node (#199)
Changelog

Sourced from crossws's changelog.

v0.4.8

compare changes

🚀 Enhancements

  • proxy: Support unix socket targets out of the box (#197)

🩹 Fixes

  • client: Honor 3rd-arg options (headers) on bun and node (#199)

🏡 Chore

❤️ Contributors

Commits
Install script changes

This version adds prepare script that runs during installation. Review the package contents before updating.


Updates vite from 8.1.2 to 8.1.3

Release notes

Sourced from vite's releases.

v8.1.3

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

8.1.3 (2026-07-02)

Bug Fixes

Commits

Updates @cloudflare/vitest-pool-workers from 0.16.20 to 0.17.0

Release notes

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

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

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
Changelog

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

0.17.0

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
Commits

Updates next from 16.2.9 to 16.2.10

Release notes

Sourced from next's releases.

v16.2.10

Contains no changes except publishing @next/swc-wasm-web which was accidentally not published since 16.2.4.

Commits

Updates @scalar/api-reference from 1.62.1 to 1.62.2

Changelog

Sourced from @​scalar/api-reference's changelog.

1.62.2

Patch Changes

  • #9630: Render AsyncAPI tags without the extra horizontal indentation on nested channels, and replace the empty "Operations" card in an AsyncAPI tag header with a "Channels" card that lists the channels in the tag.
  • #9541: Fix an SSR hydration mismatch on the root element: the obtrusive-scrollbar class is now resolved after mount so the first client render matches the server.
Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 3, 2026
@vercel

vercel Bot commented Jul 3, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
orpc Ready Ready Preview, Comment Jul 3, 2026 1:44pm

@pkg-pr-new

pkg-pr-new Bot commented Jul 3, 2026

Copy link
Copy Markdown
More templates

@orpc/arktype

npm i https://pkg.pr.new/@orpc/arktype@1624

@orpc/bun

npm i https://pkg.pr.new/@orpc/bun@1624

@orpc/client

npm i https://pkg.pr.new/@orpc/client@1624

@orpc/cloudflare

npm i https://pkg.pr.new/@orpc/cloudflare@1624

@orpc/contract

npm i https://pkg.pr.new/@orpc/contract@1624

@orpc/experimental-effect

npm i https://pkg.pr.new/@orpc/experimental-effect@1624

@orpc/evlog

npm i https://pkg.pr.new/@orpc/evlog@1624

@orpc/interop

npm i https://pkg.pr.new/@orpc/interop@1624

@orpc/json-schema

npm i https://pkg.pr.new/@orpc/json-schema@1624

@orpc/nest

npm i https://pkg.pr.new/@orpc/nest@1624

@orpc/next

npm i https://pkg.pr.new/@orpc/next@1624

@orpc/openapi

npm i https://pkg.pr.new/@orpc/openapi@1624

@orpc/opentelemetry

npm i https://pkg.pr.new/@orpc/opentelemetry@1624

@orpc/pino

npm i https://pkg.pr.new/@orpc/pino@1624

@orpc/publisher

npm i https://pkg.pr.new/@orpc/publisher@1624

@orpc/ratelimit

npm i https://pkg.pr.new/@orpc/ratelimit@1624

@orpc/server

npm i https://pkg.pr.new/@orpc/server@1624

@orpc/shared

npm i https://pkg.pr.new/@orpc/shared@1624

@orpc/tanstack-query

npm i https://pkg.pr.new/@orpc/tanstack-query@1624

@orpc/valibot

npm i https://pkg.pr.new/@orpc/valibot@1624

@orpc/zod

npm i https://pkg.pr.new/@orpc/zod@1624

commit: 8f9eabc

@codecov

codecov Bot commented Jul 3, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

… directory with 6 updates

Bumps the dev-dependencies-minor-patch group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@hono/node-server](https://github.com/honojs/node-server) | `2.0.6` | `2.0.8` |
| [crossws](https://github.com/h3js/crossws) | `0.4.7` | `0.4.8` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.1.2` | `8.1.3` |
| [@cloudflare/vitest-pool-workers](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers) | `0.16.20` | `0.17.0` |
| [next](https://github.com/vercel/next.js) | `16.2.9` | `16.2.10` |
| [@scalar/api-reference](https://github.com/scalar/scalar/tree/HEAD/packages/api-reference) | `1.62.1` | `1.62.2` |



Updates `@hono/node-server` from 2.0.6 to 2.0.8
- [Release notes](https://github.com/honojs/node-server/releases)
- [Commits](honojs/node-server@v2.0.6...v2.0.8)

Updates `crossws` from 0.4.7 to 0.4.8
- [Release notes](https://github.com/h3js/crossws/releases)
- [Changelog](https://github.com/h3js/crossws/blob/main/CHANGELOG.md)
- [Commits](h3js/crossws@v0.4.7...v0.4.8)

Updates `vite` from 8.1.2 to 8.1.3
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.1.3/packages/vite)

Updates `@cloudflare/vitest-pool-workers` from 0.16.20 to 0.17.0
- [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.17.0/packages/vitest-pool-workers)

Updates `next` from 16.2.9 to 16.2.10
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](vercel/next.js@v16.2.9...v16.2.10)

Updates `@scalar/api-reference` from 1.62.1 to 1.62.2
- [Release notes](https://github.com/scalar/scalar/releases)
- [Changelog](https://github.com/scalar/scalar/blob/main/packages/api-reference/CHANGELOG.md)
- [Commits](https://github.com/scalar/scalar/commits/HEAD/packages/api-reference)

---
updated-dependencies:
- dependency-name: "@cloudflare/vitest-pool-workers"
  dependency-version: 0.17.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@hono/node-server"
  dependency-version: 2.0.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@scalar/api-reference"
  dependency-version: 1.62.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: crossws
  dependency-version: 0.4.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: next
  dependency-version: 16.2.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: vite
  dependency-version: 8.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-minor-patch-98099e6a20 branch from 3059f8d to 8f9eabc Compare July 3, 2026 13:42
@dependabot @github

dependabot Bot commented on behalf of github Jul 4, 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 Jul 4, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/dev-dependencies-minor-patch-98099e6a20 branch July 4, 2026 02:47
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.

0 participants