Skip to content

Version Packages#12508

Merged
ascorbic merged 1 commit intomainfrom
changeset-release/main
Feb 12, 2026
Merged

Version Packages#12508
ascorbic merged 1 commit intomainfrom
changeset-release/main

Conversation

@workers-devprod
Copy link
Contributor

@workers-devprod workers-devprod commented Feb 10, 2026

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

miniflare@4.20260212.0

Minor Changes

  • #12431 7aaa2a5 Thanks @emily-shen! - Add ability to search KV keys by prefix

    The UI and list keys API now lets you search KV keys by prefix.

    This is an experimental WIP feature.

Patch Changes

  • #12541 f7fa326 Thanks @dependabot! - Update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260210.0 1.20260212.0
  • #12025 d06ad09 Thanks @petebacondarwin! - Fix potential EBADF error when restarting workerd process

    Previously, when the workerd process was restarted (e.g., via setOptions() or Vite server restart), the stdio pipes from the previous process were not explicitly destroyed. This could lead to EBADF (Bad File Descriptor) errors during spawn on some systems.

    The Runtime#dispose() method now explicitly destroys all stdio streams (stdin, stdout, stderr, and the control pipe) before killing the process to ensure file descriptors are properly released.

@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/workers-utils@0.10.0

Minor Changes

  • #12461 8809411 Thanks @penalosa! - Support type: inherit bindings when using startWorker()

    This is an internal binding type that should not be used by external users of the API

wrangler@4.65.0

Minor Changes

  • #12473 b900c5a Thanks @petebacondarwin! - Add CF_PAGES environment variables to wrangler pages dev

    wrangler pages dev now automatically injects Pages-specific environment variables (CF_PAGES, CF_PAGES_BRANCH, CF_PAGES_COMMIT_SHA, CF_PAGES_URL) for improved dev/prod parity. This enables frameworks like SvelteKit to auto-detect the Pages environment during local development.

    • CF_PAGES is set to "1" to indicate the Pages environment
    • CF_PAGES_BRANCH defaults to the current git branch (or "local" if not in a git repo)
    • CF_PAGES_COMMIT_SHA defaults to the current git commit SHA (or a placeholder if not in a git repo)
    • CF_PAGES_URL is set to a simulated commit preview URL (e.g., https://<sha>.<project-name>.pages.dev)

    These variables are displayed with their actual values in the bindings table during startup, making it easy to verify what branch and commit SHA were detected.

    These variables can be overridden by user-defined vars in the Wrangler configuration, .env, .dev.vars, or via CLI flags.

  • #12464 10a1c4a Thanks @petebacondarwin! - Allow deleting KV namespaces by name

    You can now delete a KV namespace by providing its name as a positional argument:

    wrangler kv namespace delete my-namespace

    This aligns the delete command with the create command, which also accepts a namespace name.
    The existing --namespace-id and --binding flags continue to work as before.

  • #12382 d7b492c Thanks @dario-piotrowicz! - Add Pages detection to autoconfig flows

    When running the autoconfig logic (via wrangler setup, wrangler deploy --x-autoconfig, or the programmatic autoconfig API), Wrangler now detects when a project appears to be a Pages project and handles it appropriately:

    • For wrangler deploy, it warns the user but still allows them to proceed
    • For wrangler setup and the programmatic autoconfig API, it throws a fatal error
  • #12461 8809411 Thanks @penalosa! - Support type: inherit bindings when using startWorker()

    This is an internal binding type that should not be used by external users of the API

  • #12515 1a9eddd Thanks @ascorbic! - Add --json flag to wrangler whoami for machine-readable output

    wrangler whoami --json now outputs structured JSON containing authentication status, auth type, email, accounts, and token permissions. When the user is not authenticated, the command exits with a non-zero status code and outputs {"loggedIn":false}, making it easy to check auth status in shell scripts without parsing text output.

    # Parse the JSON output
    wrangler whoami --json | jq '.accounts'
    
    # Check if authenticated in a script. Returns 0 if authenticated, non-zero if not.
    if wrangler whoami --json > /dev/null 2>&1; then
      echo "Authenticated"
    else
      echo "Not authenticated"
    fi
    

Patch Changes

  • #12437 ad817dd Thanks @MattieTK! - fix: use project's package manager in wranger autoconfig

    wrangler setup now correctly detects and uses the project's package manager based on lockfiles (pnpm-lock.yaml, yarn.lock, bun.lockb, package-lock.json) and the packageManager field in package.json. Previously, it would fall back to the package manager used to execute the command when run directly from the terminal, causing failures in pnpm and yarn workspace projects if the wrong manager was used in this step due to the workspace: protocol not being supported by npm.

    This change leverages the package manager detection already performed by @netlify/build-info during framework detection, ensuring consistent behaviour across the autoconfig process.

  • #12541 f7fa326 Thanks @dependabot! - Update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260210.0 1.20260212.0
  • #12498 734792a Thanks @dario-piotrowicz! - Fix: make sure that remote proxy sessions's logs can be silenced when the wrangler log level is set to "none"

  • #12135 cc5ac22 Thanks @edmundhung! - Fix spurious config diffs when bindings from local and remote config are shown in different order

    When comparing local and remote Worker configurations, binding arrays like kv_namespaces would incorrectly show additions and removals if the elements were in a different order. The diff now correctly recognizes these as equivalent by reordering remote arrays to match the local config's order before comparison.

  • #12476 62a8d48 Thanks @MattieTK! - fix: use unscoped binary name for OpenNext autoconfig command overrides

    The build, deploy, and version command overrides in the Next.js (OpenNext) autoconfig handler used the scoped package name @opennextjs/cloudflare, which pnpm interprets as a workspace filter rather than a binary name. This caused wrangler deploy --x-autoconfig to fail for pnpm-based Next.js projects with ERR_PNPM_RECURSIVE_EXEC_FIRST_FAIL. Changed to use the unscoped binary name opennextjs-cloudflare, which resolves correctly across all package managers.

  • #12516 84252b7 Thanks @edmundhung! - Stop proxying localhost requests when proxy environment variables are set

    When HTTP_PROXY or HTTPS_PROXY is configured, all fetch requests including ones to localhost were routed through the proxy. This caused wrangler dev and the Vite plugin to fail with "TypeError: fetch failed" because the proxy can't reach local addresses.

    This switches from ProxyAgent to undici's EnvHttpProxyAgent, which supports the NO_PROXY environment variable. When NO_PROXY is not set, it defaults to localhost,127.0.0.1,::1 so local requests are never proxied.

    The NO_PROXY config only applies to the request destination, not the proxy server address. So a proxy running on localhost (e.g. HTTP_PROXY=http://127.0.0.1:11451) still works for outbound API calls.

  • #12506 e5efa5d Thanks @sesteves! - Fix wrangler r2 sql query displaying [object Object] for nested values

    SQL functions that return complex types such as arrays of objects (e.g. approx_top_k) were rendered as [object Object] in the table output because String() was called directly on non-primitive values. These values are now serialized with JSON.stringify so they display as readable JSON strings.

  • #11725 be9745f Thanks @dario-piotrowicz! - Fix incorrect logic during autoconfiguration (when running wrangler setup or wrangler deploy --x-autoconfig) that caused parts of the project's package.json file, removed during the process, to incorrectly be added back

  • #12458 122791d Thanks @jkoe-cf! - Remove default values for delivery delay and message retention and update messaging on limits

    Fixes the issue of the default maximum message retention (365400 seconds) being longer than the maximum allowed retention period for free tier users (86400 seconds).

    Previous:

    • Wrangler set a default value of 365400 seconds max message retention if the setting was not explicitly provided in the Wrangler configuration.
    • The maximum retention period was documented as 1209600 seconds for all queues users because it was required to be on paid tier.
    • Wrangler also set a default value of 0 seconds for delivery delay if the setting was not explicitly provided in the Wrangler configuration.

    Updated:

    • Wrangler no longer sets a default value for max message retention so that the default can be applied at the API.
    • The maximum retention period is now documented as 86400 seconds for free tier queues and 1209600 seconds for paid tier queues
    • Wrangler also no longer sets a default value for delivery delay so that the default can be applied at the API.
  • #12513 41e18aa Thanks @pombosilva! - Add confirmation prompt when deploying workflows with names that belong to different workers.

    When deploying a workflow with a name that already exists and is currently associated with a different worker script, Wrangler will now display a warning and prompt for confirmation before proceeding. This helps prevent accidentally overriding workflows.

    In non-interactive environments this check is skipped by default. Use the --strict flag to enable the check in non-interactive environments, which will cause the deployment to fail if workflow conflicts are detected.

  • Updated dependencies [f7fa326, 7aaa2a5, d06ad09]:

    • miniflare@4.20260212.0

create-cloudflare@2.64.1

Patch Changes

  • #12529 3777bcd Thanks @ascorbic! - Update dependencies of "create-cloudflare"

    The following dependency versions have been updated:

    Dependency From To
    @tanstack/create-start 0.40.0 0.48.10
  • #12531 93b177f Thanks @ascorbic! - Update dependencies of "create-cloudflare"

    The following dependency versions have been updated:

    Dependency From To
    create-vite 7.1.1 8.3.0
  • #12482 cef3278 Thanks @dependabot! - Update dependencies of "create-cloudflare"

    The following dependency versions have been updated:

    Dependency From To
    sv 0.11.4 0.12.1
  • #11725 be9745f Thanks @dario-piotrowicz! - Fix the experimental SvelteKit implementation incorrectly including the "@sveltejs/adapter-auto" dependency in the project's package.json file

  • #12528 73e5aa8 Thanks @ascorbic! - Bump nuxi from 3.30.0 to 3.33.1

@cloudflare/pages-shared@0.13.107

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/local-explorer-ui@0.3.0

Minor Changes

  • #12431 7aaa2a5 Thanks @emily-shen! - Add ability to search KV keys by prefix

    The UI and list keys API now lets you search KV keys by prefix.

    This is an experimental WIP feature.

@workers-devprod workers-devprod requested review from a team as code owners February 10, 2026 10:32
@claude
Copy link
Contributor

claude bot commented Feb 10, 2026

Claude finished @workers-devprod's task —— View job


Changeset Review Complete ✅

  • Read changeset guidelines from .changeset/README.md
  • Review all 25 changeset files
  • Validate against criteria (version type, changelog quality, markdown headers, analytics, dependabot, experimental features)
  • Check for cute animal images
  • Provide final assessment

All changesets look good

I reviewed all 25 changesets and they meet the quality standards:

Version Types: All version bumps are appropriate

  • Minor versions correctly used for new features (CF_PAGES env vars, KV namespace delete by name, whoami --json, Pages autoconfig detection, inherit bindings, RSC serverHandler auto-config, KV prefix search)
  • Patch versions correctly used for bug fixes and dependency updates
  • No major version bumps (which are currently forbidden for wrangler)

Changelog Quality: All descriptions are clear and meaningful with proper context about what changed and why

Markdown Headers: No h1/h2/h3 headers found (which would break changelog formatting)

Experimental Features: The KV prefix search changeset (fast-shrimps-agree.md) correctly notes "This is an experimental WIP feature"

Dependabot Updates: Dependency update changesets for create-cloudflare were not validated per guidelines

No Issues Found


Copy link
Contributor

@devin-ai-integration devin-ai-integration bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✅ Devin Review: No Issues Found

Devin Review analyzed this PR and found no bugs or issues to report.

Open in Devin Review

@pkg-pr-new
Copy link

pkg-pr-new bot commented Feb 10, 2026

create-cloudflare

npm i https://pkg.pr.new/create-cloudflare@12508

@cloudflare/kv-asset-handler

npm i https://pkg.pr.new/@cloudflare/kv-asset-handler@12508

miniflare

npm i https://pkg.pr.new/miniflare@12508

@cloudflare/pages-shared

npm i https://pkg.pr.new/@cloudflare/pages-shared@12508

@cloudflare/unenv-preset

npm i https://pkg.pr.new/@cloudflare/unenv-preset@12508

@cloudflare/vite-plugin

npm i https://pkg.pr.new/@cloudflare/vite-plugin@12508

@cloudflare/vitest-pool-workers

npm i https://pkg.pr.new/@cloudflare/vitest-pool-workers@12508

@cloudflare/workers-editor-shared

npm i https://pkg.pr.new/@cloudflare/workers-editor-shared@12508

@cloudflare/workers-utils

npm i https://pkg.pr.new/@cloudflare/workers-utils@12508

wrangler

npm i https://pkg.pr.new/wrangler@12508

commit: 3a5fda5

@workers-devprod workers-devprod force-pushed the changeset-release/main branch 25 times, most recently from 4d9eb89 to 0a4833e Compare February 11, 2026 15:10
@workers-devprod workers-devprod force-pushed the changeset-release/main branch 11 times, most recently from 81df7b8 to 6a22750 Compare February 12, 2026 10:41
@ascorbic ascorbic merged commit 0ebc50d into main Feb 12, 2026
37 checks passed
@ascorbic ascorbic deleted the changeset-release/main branch February 12, 2026 13:32
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.

2 participants