Skip to content

fix(deps): update dependency @cloudflare/vite-plugin to v1.40.0#14

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

fix(deps): update dependency @cloudflare/vite-plugin to v1.40.0#14
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/cloudflare-vite-plugin-1.x

Conversation

@renovate

@renovate renovate Bot commented Mar 27, 2026

Copy link
Copy Markdown
Contributor

ℹ️ 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.30.01.40.0 age confidence

Release Notes

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

v1.40.0

Compare Source

Minor Changes
  • #​14013 3cf9d0e Thanks @​jamesopstad! - Add experimental experimental.newConfig option to load the entry Worker's configuration from cloudflare.config.ts

    This is an experimental, opt-in feature. When enabled, the plugin loads the entry Worker's configuration from a cloudflare.config.ts file instead of the usual wrangler.json / wrangler.jsonc / wrangler.toml.

    Pass true to enable with defaults, or an object to customise behaviour. Currently the only sub-option is types.generate (defaults to true), which writes a worker-configuration.d.ts file next to the config. This enables typed env and exports for your Worker and currently assumes that you have @cloudflare/workers-types installed.

    // vite.config.ts
    import { defineConfig } from "vite";
    import { cloudflare } from "@​cloudflare/vite-plugin";
    
    export default defineConfig({
      plugins: [
        cloudflare({
          experimental: {
            newConfig: true,
          },
        }),
      ],
    });
    // cloudflare.config.ts
    import {
    	defineWorker,
    	bindings,
    } from "@​cloudflare/vite-plugin/experimental-config";
    import * as entrypoint from "./src/index.ts" with { type: "cf-worker" };
    
    export default defineWorker((ctx) => ({
    	name: "my-worker",
    	entrypoint,
    	compatibilityDate: "2026-05-18",
    	env: {
    		MY_TEXT: bindings.text(`The mode is ${ctx.mode}`),
    		MY_KV: bindings.kv(),
    	},
    }));

    A few limitations apply while the feature is experimental:

    • configPath cannot be combined with experimental.newConfig. The entry Worker is always loaded from cloudflare.config.ts at the project root.
    • auxiliaryWorkers are not yet supported with experimental.newConfig.

    Because this is experimental, the option, the cloudflare.config.ts schema, and the @cloudflare/vite-plugin/experimental-config exports may change in any release.

Patch Changes

v1.39.2

Compare Source

Patch Changes
  • #​13893 d8a16e7 Thanks @​penalosa! - Add an experimental, internal cf-vite delegate binary

    This adds an experimental bin/cf-vite binary that is spawned by Cloudflare's own parent tooling to drive the plugin as a long-running dev-server subprocess. It is not part of the plugin's public API surface, is not intended to be invoked directly, and its contract may change at any time without notice.

  • #​14117 3c86121 Thanks @​aicayzer! - Forward response headers from the Worker on WebSocket upgrade responses

    Headers set on a new Response(null, { status: 101, webSocket, headers }) returned from the Worker are now propagated to the upgrade response sent to the browser during vite dev. Previously the headers were dropped, so cookies (Set-Cookie) and custom headers (X-*) on WebSocket handshake responses were invisible client-side — even though they were delivered correctly by wrangler dev.

  • Updated dependencies [b210c5e, aec1bb8, e06cbb7, 9a26191, 5565823, 4ef790b, 890fca7, 6fc9777, 337e912, 8e7b74f, e86489a, 42288d4, 65b5f9e, 3a746ac, 64ef9fd, 94b29f7]:

    • wrangler@​4.97.0
    • miniflare@​4.20260601.0

v1.39.1

Compare Source

Patch Changes

v1.39.0

Compare Source

Minor Changes
  • #​13985 c809d30 Thanks @​jamesopstad! - Add assetsOnly (entry Worker) and devOnly (auxiliary Workers) options to the plugin config

    Both options accept a boolean or a function that returns a boolean. The function is evaluated lazily at build time, allowing frameworks to provide the value after initialization.

    Use assetsOnly on the entry Worker to skip building the Worker and instead emit an assets-only Wrangler config to the client output directory. This enables frameworks such as Astro to use the ssr environment during development but produce a fully static app for deployment.

    export default defineConfig({
      plugins: [
        cloudflare({
          assetsOnly: () => isStaticBuild,
        }),
      ],
    });

    Use devOnly on an auxiliary Worker to include it during vite dev but skip it at build time.

    export default defineConfig({
      plugins: [
        cloudflare({
          auxiliaryWorkers: [
            { configPath: "./dev-only-worker/wrangler.jsonc", devOnly: true },
          ],
        }),
      ],
    });
Patch Changes

v1.38.0

Compare Source

Minor Changes
  • #​13989 f598eac Thanks @​MattieTK! - Print a QR code alongside the tunnel URL when sharing via Cloudflare Tunnel

    When a tunnel is started (via wrangler dev --tunnel or the Vite plugin with tunnel: true), a scannable QR code is now printed to the terminal beneath the tunnel URL. This makes it easy to open the tunnel on a mobile device without manually copying the URL.

    The QR code uses Unicode block characters for a compact representation and is generated best-effort -- if generation fails for any reason, the tunnel URL is still displayed as before.

Patch Changes

v1.37.3

Compare Source

Patch Changes
  • #​13978 fa1f61f Thanks @​sassyconsultingllc! - Bump ws from 8.18.0 to 8.20.1 to address GHSA-58qx-3vcg-4xpx

    GHSA-58qx-3vcg-4xpx / CVE-2026-45736 reports an uninitialized-memory disclosure in ws@<8.20.1 when a TypedArray is passed as the reason argument to WebSocket.close(). The fix shipped in ws@8.20.1 on 2026-05-12. This change bumps the workspace catalog entry so that miniflare, wrangler, and @cloudflare/vite-plugin all pick up the patched release.

  • #​13912 d803737 Thanks @​petebacondarwin! - Fix /cdn-cgi/* host validation incorrectly accepting subdomains of exact configured routes

    Miniflare's /cdn-cgi/* host/origin validator was treating exact configured routes the same as wildcard configured routes, so a request whose Host or Origin hostname was a subdomain of an exact route (e.g. sub.my-custom-site.com for a my-custom-site.com/* route) was incorrectly accepted. Exact configured routes and the configured upstream hostname are now required to match the request hostname exactly. Subdomain matching is only applied to wildcard routes such as *.example.com/*. Localhost hostnames continue to be allowed as before.

    This affects wrangler dev and local development through @cloudflare/vite-plugin, both of which use Miniflare under the hood.

  • #​13919 c7eab7f Thanks @​petebacondarwin! - Fix the outbound CF-Worker header reflecting the route pattern hostname instead of the parent zone, and falling back to <worker-name>.example.com under vite dev, vitest-pool-workers, and getPlatformProxy

    Two related issues affected the CF-Worker header on outbound subrequests in local development:

    1. Under @cloudflare/vite-plugin, @cloudflare/vitest-pool-workers, and getPlatformProxy, the header fell back to <worker-name>.example.com even when routes were configured, because unstable_getMiniflareWorkerOptions and the equivalent getPlatformProxy worker-options path did not propagate a zone value to Miniflare. This broke local development against services that reject unknown CF-Worker hosts (for example, Apple WeatherKit returns 403 Forbidden).
    2. Across the above paths and wrangler dev --local, when a route used the zone_name field (for example { pattern: "foo.example.com/*", zone_name: "example.com" }), the header was set to the pattern's hostname (foo.example.com) rather than the zone name (example.com). Production sets CF-Worker to the zone name that owns the Worker, so this was inconsistent with deployed behaviour.

    Both bugs are fixed: the new unstable_getMiniflareWorkerOptions / getPlatformProxy path now propagates a zone derived from the first configured route, and all four local-dev paths now prefer a route's explicit zone_name over the pattern hostname when computing that zone. When zone_name isn't set, the existing best-effort behaviour is preserved — for wrangler dev this means dev.host is still honoured as a local override and the pattern hostname is used as a final fallback. Resolving the parent zone for zone_id-only, custom_domain, or plain-string routes would require an API lookup, so locally we still approximate it with the pattern hostname.

    Note: dev.host is intentionally not consulted by the unstable_getMiniflareWorkerOptions / getPlatformProxy paths — the dev config block is specific to wrangler dev.

  • Updated dependencies [fa1f61f, 2679e05, 7e40d98, adc9221, 735852d, d803737, c7eab7f, e04e180, 59cd880, 62abf97, e8c2031, e349fe0, da0fa8c, a5c9365]:

    • miniflare@​4.20260520.0
    • wrangler@​4.93.1

v1.37.2

Compare Source

Patch Changes

v1.37.1

Compare Source

Patch Changes
  • #​13922 23800f8 Thanks @​edmundhung! - Add a tunnel shortcut hint when CLI shortcuts are printed

    The Cloudflare Vite plugin now includes a t + enter tunnel hint alongside the other CLI shortcuts it prints.

  • #​13920 f579e57 Thanks @​petebacondarwin! - Honor X-Forwarded-Proto when constructing the Worker's request.url

    When running the Vite dev server behind a TLS-terminating reverse proxy or tunnel, the Worker's request.url was always http://... even though the client reached the server over https://.... This caused frameworks that perform Origin/Host checks (e.g. CSRF protection) to reject requests with 403.

    The Vite plugin now reads the X-Forwarded-Proto header from the incoming request and uses it to set the protocol of request.url. If the header is absent or invalid, the connection protocol is used as before. The same handling is applied to WebSocket upgrade URLs.

    Fixes #​13801.

  • Updated dependencies [19ed49a, 3ff0a50, bf688f7, 2e72c83, 802eaf4, 506aa02, 8f5cdb1, be8a98c]:

    • miniflare@​4.20260515.0
    • wrangler@​4.92.0

v1.37.0

Compare Source

Minor Changes
  • #​13903 7ce6f6f Thanks @​edmundhung! - Add named tunnel support to the cloudflare() Vite plugin

    You can now expose your local dev server publicly with a stable hostname by configuring tunnel with a named Cloudflare Tunnel:

    cloudflare({
      tunnel: { name: "my-tunnel", autoStart: true },
    });

    If autoStart is omitted or set to false, you can still start or close the tunnel by pressing t + enter.

Patch Changes

v1.36.4

Compare Source

Patch Changes

v1.36.3

Compare Source

Patch Changes

v1.36.2

Compare Source

Patch Changes
  • Updated dependencies [dd3baf3, 5cf6f81]:
    • wrangler@​4.89.1
    • miniflare@​4.20260507.1

v1.36.1

Compare Source

Patch Changes
  • #​13802 a7fd465 Thanks @​deodad! - Fix .dev.vars written for vite preview to round-trip values containing quotes

    When the plugin emits dist/<env>/.dev.vars for vite preview, it previously wrote each value as a double-quoted dotenv string with " escaped to \". dotenv (the parser wrangler uses) does not unescape \" inside double-quoted values, so values containing " arrived at the worker with literal backslashes still in them.

    The plugin now quotes strings using the first quote character that does not appear in the value (with the priority order: single → backtick → double), all of which dotenv strips correctly. If a value contains every supported quote character it throws instead of silently corrupting the value.

  • Updated dependencies [2284f20, 332f527, 039bada, 18e833d, b6cea17, 1a54ac5, 53e846a, f3fed88, beff19c, af42fed, 1a54ac5]:

    • miniflare@​4.20260507.0
    • wrangler@​4.89.0

v1.36.0

Compare Source

Minor Changes
  • #​13810 2b8c0cc Thanks @​jamesopstad! - Stabilize the secrets configuration property

    The secrets property in the Wrangler config file is no longer experimental and will no longer emit an experimental warning when used. Required secrets are validated during local development and deploy, and used as the source of truth for type generation.

    {
      "secrets": {
        "required": ["API_KEY", "DB_PASSWORD"]
      }
    }
Patch Changes

v1.35.0

Compare Source

Minor Changes
  • #​13618 c07d0cb Thanks @​jamesopstad! - Support V2 protocol for module fallback service

    When the new_module_registry compatibility flag is set, requests sent to unsafeModuleFallbackService() use a different protocol. The Vite plugin now supports both protocols in its handling of additional module types.

Patch Changes

v1.34.0

Compare Source

Minor Changes
  • #​13666 edcff69 Thanks @​edmundhung! - Add tunnel: true to the cloudflare() Vite plugin for sharing your local dev and preview servers via Cloudflare Quick Tunnels

    You can now expose your local dev server publicly by setting tunnel: true:

    cloudflare({
      tunnel: true,
    });

    You can also enable tunnel sharing dynamically using an environment variable:

    cloudflare({
      tunnel: process.env.ENABLE_DEV_TUNNEL === "true",
    });

    This starts a Cloudflare Quick Tunnel that gives you a random *.trycloudflare.com URL to share. The tunnel stops automatically when the dev or preview session ends. Quick tunnels don't require a Cloudflare account or any configuration.

    A warning is shown when Server-Sent Events (SSE) responses are detected through the tunnel, since quick tunnels don't support SSE.

Patch Changes

v1.33.2

Compare Source

Patch Changes
  • #​13636 1d54fb7 Thanks @​edmundhung! - Stop denying vite.config.* files from Vite dev server access

    This allows projects to access vite.config.* files during development when needed.

  • #​13653 48c61b6 Thanks @​jamesopstad! - Use the date that the plugin is built as the default compatibility date.

    When no compatibility date was set by the user, the plugin was falling back to the current date. This meant that the date could get ahead of the latest date supported by the installed version of workerd. We now populate the default compatibility date when the plugin is built. This means that it is updated with each release but then stays fixed.

  • #​13634 f3cb2b2 Thanks @​jamesopstad! - Simplify /cdn-cgi/ handling

    We now only add special handling for /cdn-cgi/handler/* routes, so that trigger handlers are invoked on the User Worker.

  • #​13611 6e99feb Thanks @​smaldd14! - Support Cloudflare-managed registry images in Vite plugin local dev

    Previously, using a registry.cloudflare.com image in a containers binding would crash vite dev with an unsupported error. The Vite plugin now configures the Cloudflare API client using CLOUDFLARE_API_TOKEN and CLOUDFLARE_ACCOUNT_ID before pulling container images, matching the behavior of wrangler dev.

  • Updated dependencies [5a2968a, 5680287, 3494842, 7d728fb, df9319d, d5e3c57, 3ceeec3, 7567ef7, 0a95061, 2831b54, 7fc50c1, 377715d]:

v1.33.1

Compare Source

Patch Changes

v1.33.0

Compare Source

Minor Changes
  • #​12600 50bf819 Thanks @​penalosa! - Use workerd's debug port to power cross-process service bindings, Durable Objects, and tail workers via the dev registry. This enables Durable Object RPC via the dev registry, and is an overall stability improvement.
Patch Changes

v1.32.3

Compare Source

Patch Changes

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Asia/Tokyo)

  • 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 becomes conflicted, 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 Mar 27, 2026
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Mar 27, 2026

Copy link
Copy Markdown
Contributor

Deploying with  Cloudflare Workers  Cloudflare Workers

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

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
vimeejs-playground 3e33837 Commit Preview URL

Branch Preview URL
Jun 07 2026, 01:03 PM

@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch 2 times, most recently from 67f644d to 243f27c Compare March 30, 2026 16:42
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.30.1 fix(deps): update dependency @cloudflare/vite-plugin to v1.30.2 Mar 30, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 243f27c to 0b57625 Compare April 3, 2026 12:57
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.30.2 fix(deps): update dependency @cloudflare/vite-plugin to v1.30.3 Apr 3, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 0b57625 to 1aa1c86 Compare April 5, 2026 13:22
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.30.3 fix(deps): update dependency @cloudflare/vite-plugin to v1.31.0 Apr 5, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 1aa1c86 to e7a0db5 Compare April 10, 2026 20:40
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.31.0 fix(deps): update dependency @cloudflare/vite-plugin to v1.31.1 Apr 10, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from e7a0db5 to ceaa826 Compare April 12, 2026 17:13
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.31.1 fix(deps): update dependency @cloudflare/vite-plugin to v1.31.2 Apr 12, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from ceaa826 to 68a87d7 Compare April 16, 2026 14:37
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.31.2 fix(deps): update dependency @cloudflare/vite-plugin to v1.32.1 Apr 16, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 68a87d7 to 3a94b32 Compare April 16, 2026 20:33
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.32.1 fix(deps): update dependency @cloudflare/vite-plugin to v1.32.2 Apr 16, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 3a94b32 to 802ad67 Compare April 18, 2026 09:37
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.32.2 fix(deps): update dependency @cloudflare/vite-plugin to v1.32.3 Apr 18, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 802ad67 to 3b67f8d Compare April 23, 2026 19:14
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.32.3 fix(deps): update dependency @cloudflare/vite-plugin to v1.33.0 Apr 23, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 3b67f8d to 3df0b36 Compare April 24, 2026 19:38
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.33.0 fix(deps): update dependency @cloudflare/vite-plugin to v1.33.1 Apr 24, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 3df0b36 to 8ed9b3c Compare April 27, 2026 14:10
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.33.1 fix(deps): update dependency @cloudflare/vite-plugin to v1.33.2 Apr 27, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 8ed9b3c to 3a64dce Compare May 1, 2026 13:59
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.33.2 fix(deps): update dependency @cloudflare/vite-plugin to v1.34.0 May 1, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 3a64dce to 3ed7e5e Compare May 3, 2026 17:44
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.34.0 fix(deps): update dependency @cloudflare/vite-plugin to v1.35.0 May 3, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 3ed7e5e to 5407dd7 Compare May 8, 2026 17:47
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.35.0 fix(deps): update dependency @cloudflare/vite-plugin to v1.36.0 May 8, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 5407dd7 to 5aa3d10 Compare May 10, 2026 17:28
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.36.0 fix(deps): update dependency @cloudflare/vite-plugin to v1.36.2 May 10, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 5aa3d10 to 63b0fdf Compare May 10, 2026 21:37
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.36.2 fix(deps): update dependency @cloudflare/vite-plugin to v1.36.3 May 10, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 63b0fdf to f72a784 Compare May 15, 2026 12:28
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.36.3 fix(deps): update dependency @cloudflare/vite-plugin to v1.36.4 May 15, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from f72a784 to 7aea8d1 Compare May 17, 2026 16:34
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.36.4 fix(deps): update dependency @cloudflare/vite-plugin to v1.37.0 May 17, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 7aea8d1 to ae9af3a Compare May 18, 2026 16:38
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.37.0 fix(deps): update dependency @cloudflare/vite-plugin to v1.37.1 May 18, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from ae9af3a to 0d8f453 Compare May 22, 2026 13:29
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.37.1 fix(deps): update dependency @cloudflare/vite-plugin to v1.37.2 May 22, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 0d8f453 to 673898d Compare May 24, 2026 12:43
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.37.2 fix(deps): update dependency @cloudflare/vite-plugin to v1.37.3 May 24, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 673898d to 752baf0 Compare May 25, 2026 14:10
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.37.3 fix(deps): update dependency @cloudflare/vite-plugin to v1.38.0 May 25, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from 752baf0 to af252e4 Compare May 29, 2026 16:57
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.38.0 fix(deps): update dependency @cloudflare/vite-plugin to v1.39.0 May 29, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from af252e4 to c4fb8ab Compare June 4, 2026 18:55
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.39.0 fix(deps): update dependency @cloudflare/vite-plugin to v1.39.1 Jun 4, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from c4fb8ab to fde6790 Compare June 5, 2026 16:38
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.39.1 fix(deps): update dependency @cloudflare/vite-plugin to v1.39.2 Jun 5, 2026
@renovate renovate Bot force-pushed the renovate/cloudflare-vite-plugin-1.x branch from fde6790 to 3e33837 Compare June 7, 2026 13:02
@renovate renovate Bot changed the title fix(deps): update dependency @cloudflare/vite-plugin to v1.39.2 fix(deps): update dependency @cloudflare/vite-plugin to v1.40.0 Jun 7, 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