Skip to content

chore(deps-dev): bump the cloudflare group with 3 updates#50

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/bun/cloudflare-cab28ae151
Open

chore(deps-dev): bump the cloudflare group with 3 updates#50
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/bun/cloudflare-cab28ae151

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Feb 23, 2026

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

Updates @cloudflare/vite-plugin from 1.21.0 to 1.25.2

Release notes

Sourced from @​cloudflare/vite-plugin's releases.

@​cloudflare/vite-plugin@​1.25.2

Patch Changes

@​cloudflare/vite-plugin@​1.25.1

Patch Changes

@​cloudflare/vite-plugin@​1.25.0

Minor Changes

  • #12535 bd06ad2 Thanks @​edmundhung! - Set { serverHandler: false } automatically when using @vitejs/plugin-rsc

    By default, @vitejs/plugin-rsc adds dev and preview server middleware that imports the RSC entry in Node.js. This fails with cloudflare:* imports (ERR_UNSUPPORTED_ESM_URL_SCHEME) and is unnecessary since the Cloudflare plugin handles requests via workerd. Users no longer need to pass rsc({ serverHandler: false }) manually.

Patch Changes

@​cloudflare/vite-plugin@​1.24.0

Minor Changes

  • #12446 1231a2e Thanks @​jamesopstad! - Infer upload_source_maps setting in the output Worker config from the build.sourcemap setting in the Vite config.

    If build.sourcemap is enabled for a Worker environment, as in the following example, "upload_source_maps": true will now automatically be added to the output wrangler.json file. This removes the need to additionally specify the upload_source_maps property in the input Worker config.

    export default defineConfig({
    	environments: {
    		my_worker: {
    			build: {
    				sourcemap: true,
    			},
    		},
    	},

... (truncated)

Changelog

Sourced from @​cloudflare/vite-plugin's changelog.

1.25.2

Patch Changes

1.25.1

Patch Changes

1.25.0

Minor Changes

  • #12535 bd06ad2 Thanks @​edmundhung! - Set { serverHandler: false } automatically when using @vitejs/plugin-rsc

    By default, @vitejs/plugin-rsc adds dev and preview server middleware that imports the RSC entry in Node.js. This fails with cloudflare:* imports (ERR_UNSUPPORTED_ESM_URL_SCHEME) and is unnecessary since the Cloudflare plugin handles requests via workerd. Users no longer need to pass rsc({ serverHandler: false }) manually.

Patch Changes

1.24.0

Minor Changes

  • #12446 1231a2e Thanks @​jamesopstad! - Infer upload_source_maps setting in the output Worker config from the build.sourcemap setting in the Vite config.

    If build.sourcemap is enabled for a Worker environment, as in the following example, "upload_source_maps": true will now automatically be added to the output wrangler.json file. This removes the need to additionally specify the upload_source_maps property in the input Worker config.

    export default defineConfig({
    	environments: {
    		my_worker: {
    			build: {

... (truncated)

Commits

Updates @cloudflare/vitest-pool-workers from 0.11.1 to 0.12.14

Release notes

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

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

    • wrangler@4.65.0
    • miniflare@4.20260212.0

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

Patch Changes

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

Patch Changes

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

Patch Changes

... (truncated)

Changelog

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

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.

    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

0.12.11

Patch Changes

0.12.10

Patch Changes

0.12.9

... (truncated)

Commits

Updates wrangler from 4.59.2 to 4.67.0

Release notes

Sourced from wrangler's releases.

wrangler@4.67.0

Minor Changes

  • #12401 8723684 Thanks @​jonesphillip! - Add validation retry loops to pipelines setup command

    The wrangler pipelines setup command now prompts users to retry when validation errors occur, instead of failing the entire setup process. This includes:

    • Validation retry prompts for pipeline names, bucket names, and field names
    • A "simple" mode for sink configuration that uses sensible defaults
    • Automatic bucket creation when buckets don't exist
    • Automatic Data Catalog enablement when not already active

    This improves the setup experience by allowing users to correct mistakes without restarting the entire configuration flow.

  • #12395 aa82c2b Thanks @​cmackenzie1! - Generate typed pipeline bindings from stream schemas

    When running wrangler types, pipeline bindings now generate TypeScript types based on the stream's schema definition. This gives you full autocomplete and type checking when sending data to your pipelines.

    // wrangler.json
    {
    	"pipelines": [
    		{ "binding": "ANALYTICS", "pipeline": "analytics-stream-id" },
    	],
    }

    If your stream has a schema with fields like user_id (string) and event_count (int32), the generated types will be:

    declare namespace Cloudflare {
    	type AnalyticsStreamRecord = { user_id: string; event_count: number };
    	interface Env {
    		ANALYTICS: Pipeline<Cloudflare.AnalyticsStreamRecord>;
    	}
    }

    For unstructured streams or when not authenticated, bindings fall back to the generic Pipeline<PipelineRecord> type.

Patch Changes

  • #12592 aaa7200 Thanks @​dependabot! - Update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260217.0 1.20260218.0

... (truncated)

Commits
  • 88705ad Version Packages (#12580)
  • ca58062 [wrangler] Stop redacting account names in non-interactive mode (#12598)
  • e2a6600 fix: pass --env flag to auxiliary workers in multi-worker mode (#12604)
  • 2f19a40 chore(deps): bump the workerd-and-workers-types group with 2 updates (#12606)
  • 8723684 Improve pipelines setup command with validation retry loops (#12401)
  • 0b17117 improve: bump up maximum allowed value for Queue delivery and retry delay to ...
  • aa82c2b Generate typed pipeline bindings from stream schemas (#12395)
  • b7841db Migrate tests from unstable_dev() to unstable_startWorker() (#12053)
  • 5f9f0b4 feat(unenv-preset): add support for native node:readline module (#11734)
  • aaa7200 chore(deps): bump the workerd-and-workers-types group with 2 updates (#12592)
  • Additional commits viewable in compare view

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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 23, 2026
@dependabot dependabot bot force-pushed the dependabot/bun/cloudflare-cab28ae151 branch 2 times, most recently from 01b8a19 to 0da5580 Compare March 2, 2026 13:58
@dependabot dependabot bot force-pushed the dependabot/bun/cloudflare-cab28ae151 branch 5 times, most recently from 9318daa to 5bcbe11 Compare March 13, 2026 01:32
@dependabot dependabot bot force-pushed the dependabot/bun/cloudflare-cab28ae151 branch 4 times, most recently from 19195ae to dccc071 Compare March 18, 2026 22:44
Bumps the cloudflare group with 3 updates: [@cloudflare/vite-plugin](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vite-plugin-cloudflare), [@cloudflare/vitest-pool-workers](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers) and [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler).


Updates `@cloudflare/vite-plugin` from 1.21.0 to 1.25.2
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Changelog](https://github.com/cloudflare/workers-sdk/blob/main/packages/vite-plugin-cloudflare/CHANGELOG.md)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/@cloudflare/vite-plugin@1.25.2/packages/vite-plugin-cloudflare)

Updates `@cloudflare/vitest-pool-workers` from 0.11.1 to 0.12.14
- [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.14/packages/vitest-pool-workers)

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

---
updated-dependencies:
- dependency-name: "@cloudflare/vite-plugin"
  dependency-version: 1.25.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: cloudflare
- dependency-name: "@cloudflare/vitest-pool-workers"
  dependency-version: 0.12.14
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: cloudflare
- dependency-name: wrangler
  dependency-version: 4.67.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: cloudflare
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/bun/cloudflare-cab28ae151 branch from dccc071 to fcff995 Compare March 23, 2026 12:14
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