Skip to content

chore(deps): update dependency @cloudflare/vite-plugin to v1.25.6#171

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/cloudflare-vite-plugin-1.x-lockfile
Open

chore(deps): update dependency @cloudflare/vite-plugin to v1.25.6#171
renovate[bot] wants to merge 1 commit intomainfrom
renovate/cloudflare-vite-plugin-1.x-lockfile

Conversation

@renovate
Copy link

@renovate renovate bot commented Nov 27, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@cloudflare/vite-plugin (source) 1.14.21.25.6 age confidence

Release Notes

cloudflare/workers-sdk (@​cloudflare/vite-plugin)

v1.25.6

Compare Source

Patch Changes

v1.25.5

Compare Source

Patch Changes
  • #​12628 494ee7b Thanks @​Master-Hash! - Append Cloudflare defaults to existing .assetsignore files during build output

    When a project includes a PUBLIC_DIR/.assetsignore, the plugin now preserves those rules and appends the required wrangler.json and .dev.vars entries instead of replacing the file content.

  • Updated dependencies [3d6e421, 294297e]:

    • wrangler@​4.68.1
    • miniflare@​4.20260302.0

v1.25.4

Compare Source

Patch Changes

v1.25.3

Compare Source

Patch Changes

v1.25.2

Compare Source

Patch Changes

v1.25.1

Compare Source

Patch Changes

v1.25.0

Compare Source

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

v1.24.0

Compare Source

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,
    			},
    		},
    	},
    	plugins: [cloudflare()],
    });

    Note that if upload_source_maps is set in the input Worker config, this value will take precedence.
    This makes it possible to generate source maps without uploading them.

Patch Changes

v1.23.1

Compare Source

Patch Changes
  • #​12381 98283fa Thanks @​jamesopstad! - Avoid collecting nodejs_compat warnings during dependency optimization.

    Previously, a custom plugin was provided during dependency optimization to collect warnings when Node.js built-ins were imported and the nodejs_compat flag was not enabled.
    Because optimized dependencies are cached, the warning was only displayed when dependencies changed.
    Additionally, it sometimes included false positives from dependencies that were no longer used.
    We now always externalize Node.js built-ins during dependency optimization and collect the warnings at runtime.
    This is more consistent with how warnings are collected for direct imports of Node.js built-ins.

  • Updated dependencies [ee9b81f, 63f1adb, ba13de9, 447daa3, fe3af35, bd4bb98, dab4bc9, 83adb2c, 18c0784]:

    • wrangler@​4.63.0
    • miniflare@​4.20260205.0

v1.23.0

Compare Source

Minor Changes
  • #​11697 67a4ab1 Thanks @​jamesopstad! - Add experimental.prerenderWorker option to the plugin config.

    This enables configuring a dedicated Worker for prerendering at build time. This is an experimental feature and may change or be removed at any time.

  • #​12214 4db3864 Thanks @​jamesopstad! - Use Hook Filters to optimize plugin performance with Vite 8. This skips unnecessary Rust-to-JS calls with Rolldown powered Vite.

Patch Changes

v1.22.1

Compare Source

Patch Changes

v1.22.0

Compare Source

Minor Changes
Patch Changes

v1.21.2

Compare Source

Patch Changes

v1.21.1

Compare Source

Patch Changes

v1.21.0

Compare Source

Minor Changes
  • #​11879 5c8ff05 Thanks @​jamesopstad! - Add support for child environments.

    This is to support React Server Components via @​vitejs/plugin-rsc and frameworks that build on top of it. A childEnvironments option is now added to the plugin config to enable using multiple environments within a single Worker. The parent environment can import modules from a child environment in order to access a separate module graph. For a typical RSC use case, the plugin might be configured as in the following example:

    export default defineConfig({
    	plugins: [
    		cloudflare({
    			viteEnvironment: {
    				name: "rsc",
    				childEnvironments: ["ssr"],
    			},
    		}),
    	],
    });
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, fec8f5b, d39777f, 4714ca1, c17e971, 695b043]:

v1.20.3

Compare Source

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

v1.20.2

Compare Source

Patch Changes

v1.20.1

Compare Source

Patch Changes
  • #​11807 fada563 Thanks @​jamesopstad! - Use rolldownOptions in plugin config when available.

    This improves compatibility with Vite 8 beta and removes warnings related to use of esbuildOptions.

  • Updated dependencies [97e67b9, 7d63fa5]:

    • miniflare@​4.20260107.0
    • wrangler@​4.58.0

v1.20.0

Compare Source

Minor Changes
  • #​11620 25f6672 Thanks @​dario-piotrowicz! - Expose a new getLocalWorkerdCompatibilityDate utility that allows callers to get the compatibility date of the locally installed workerd package.

  • #​11723 3455912 Thanks @​jamesopstad! - Add a post buildApp hook that builds Worker environments that haven't already been built.

    This ensures that auxiliary Workers are included in the build when using full-stack frameworks that define their own builder.buildApp function. Note that this feature is not supported with Vite 6 as the buildApp hook was introduced in Vite 7.

  • #​11738 c54f8da Thanks @​jamesopstad! - Add default Text module rule for .sql files.

    This enables importing .sql files directly in Wrangler and the Cloudflare Vite plugin without extra configuration.

Patch Changes

v1.19.0

Compare Source

Minor Changes
  • #​11670 3483b84 Thanks @​jamesopstad! - Provide the resolved entry Worker config in the second parameter to the auxiliary Worker config function. This makes it straightforward to inherit configuration from the entry Worker in auxiliary Workers.

    Example:

    export default defineConfig({
    	plugins: [
    		cloudflare({
    			auxiliaryWorkers: [
    				{
    					config: (_, { entryWorkerConfig }) => ({
    						name: "auxiliary-worker",
    						main: "./src/auxiliary-worker.ts",
    						// Inherit compatibility settings from entry Worker
    						compatibility_date: entryWorkerConfig.compatibility_date,
    						compatibility_flags: entryWorkerConfig.compatibility_flags,
    					}),
    				},
    			],
    		}),
    	],
    });
Patch Changes

v1.18.0

Compare Source

Minor Changes
  • #​11045 12a63ef Thanks @​edmundhung! - Add keyboard shortcut to display Worker bindings during development

    When running vite dev or vite preview, you can now press b + Enter to display a list of all bindings configured for your Worker(s). This makes it easier to discover and verify which resources (e.g. KV namespaces, Durable Objects, environment variables, etc.) are available to your Worker during development.

    This feature requires vite version 7.2.7 or later.

  • #​11265 06f48c0 Thanks @​petebacondarwin! - Add a check to vite-plugin that ensures that the version of Wrangler being used internally is correct

    In some pnpm setups it is possible for a different peer dependency version of Wrangler to leak and override the version that we require internally.

Patch Changes

v1.17.1

Compare Source

Patch Changes

v1.17.0

Compare Source

Minor Changes
Patch Changes

v1.16.1

Compare Source

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

v1.16.0

Compare Source

Minor Changes
  • [#​11445](h

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 enabled auto-merge (squash) November 27, 2025 20:58
@github-actions
Copy link

github-actions bot commented Nov 27, 2025

Version Preview URL: ❌deployment failed.

@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from 726a773 to 9629430 Compare December 3, 2025 19:12
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.15.3 chore(deps): update dependency @cloudflare/vite-plugin to v1.16.1 Dec 3, 2025
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from 9629430 to b3caeae Compare December 5, 2025 05:03
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.16.1 chore(deps): update dependency @cloudflare/vite-plugin to v1.17.0 Dec 5, 2025
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from b3caeae to d348eda Compare December 11, 2025 12:41
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.17.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.17.1 Dec 11, 2025
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from d348eda to d68606b Compare December 16, 2025 13:50
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.17.1 chore(deps): update dependency @cloudflare/vite-plugin to v1.18.0 Dec 16, 2025
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from d68606b to 4e40eda Compare December 18, 2025 14:43
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.18.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.19.0 Dec 18, 2025
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from 4e40eda to 89a79b8 Compare December 29, 2025 21:35
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.19.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.17.1 Dec 29, 2025
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from 89a79b8 to 93a277a Compare December 31, 2025 13:02
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from 93a277a to c1e6f2f Compare January 7, 2026 14:49
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.17.1 chore(deps): update dependency @cloudflare/vite-plugin to v1.20.0 Jan 7, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from c1e6f2f to 3298ae5 Compare January 8, 2026 14:08
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.20.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.20.1 Jan 8, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from 3298ae5 to 3539f62 Compare January 13, 2026 14:01
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.20.1 chore(deps): update dependency @cloudflare/vite-plugin to v1.20.2 Jan 13, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from 3539f62 to 8343a4f Compare January 13, 2026 17:43
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.20.2 chore(deps): update dependency @cloudflare/vite-plugin to v1.20.3 Jan 13, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from 8343a4f to f2c9854 Compare January 15, 2026 14:50
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.20.3 chore(deps): update dependency @cloudflare/vite-plugin to v1.21.0 Jan 15, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from f2c9854 to f964001 Compare January 20, 2026 18:11
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.21.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.21.1 Jan 20, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from f964001 to 4cb17ff Compare January 22, 2026 12:43
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.21.1 chore(deps): update dependency @cloudflare/vite-plugin to v1.21.2 Jan 22, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from 4cb17ff to d539ec7 Compare January 27, 2026 14:40
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.21.2 chore(deps): update dependency @cloudflare/vite-plugin to v1.22.0 Jan 27, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from d539ec7 to b6d7c20 Compare January 29, 2026 14:40
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.22.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.22.1 Jan 29, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch 2 times, most recently from fedbda8 to 63636e1 Compare February 3, 2026 14:49
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.22.1 chore(deps): update dependency @cloudflare/vite-plugin to v1.23.0 Feb 3, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from 63636e1 to 8b4bf3a Compare February 5, 2026 15:05
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.23.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.23.1 Feb 5, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from 8b4bf3a to 03cc5d3 Compare February 10, 2026 10:44
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.23.1 chore(deps): update dependency @cloudflare/vite-plugin to v1.24.0 Feb 10, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from 03cc5d3 to 830b9ad Compare February 12, 2026 18:14
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.24.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.25.0 Feb 12, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from 830b9ad to 6c1ec63 Compare February 17, 2026 15:57
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.25.0 chore(deps): update dependency @cloudflare/vite-plugin to v1.25.1 Feb 17, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from 6c1ec63 to c8da2d2 Compare February 19, 2026 19:48
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.25.1 chore(deps): update dependency @cloudflare/vite-plugin to v1.25.2 Feb 19, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from c8da2d2 to 670251a Compare February 23, 2026 18:10
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.25.2 chore(deps): update dependency @cloudflare/vite-plugin to v1.25.3 Feb 23, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from 670251a to 94aed35 Compare February 23, 2026 21:00
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.25.3 chore(deps): update dependency @cloudflare/vite-plugin to v1.25.4 Feb 23, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from 94aed35 to 0db8b30 Compare February 24, 2026 18:50
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.25.4 chore(deps): update dependency @cloudflare/vite-plugin to v1.25.5 Feb 24, 2026
@renovate renovate bot force-pushed the renovate/cloudflare-vite-plugin-1.x-lockfile branch from 0db8b30 to e217067 Compare February 26, 2026 16:54
@renovate renovate bot changed the title chore(deps): update dependency @cloudflare/vite-plugin to v1.25.5 chore(deps): update dependency @cloudflare/vite-plugin to v1.25.6 Feb 26, 2026
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