Version Packages#14644
Open
workers-devprod wants to merge 1 commit into
Open
Conversation
Contributor
|
✅ All changesets look good |
@cloudflare/autoconfig
create-cloudflare
@cloudflare/deploy-helpers
@cloudflare/kv-asset-handler
miniflare
@cloudflare/pages-shared
@cloudflare/unenv-preset
@cloudflare/vite-plugin
@cloudflare/vitest-pool-workers
@cloudflare/workers-auth
@cloudflare/workers-editor-shared
@cloudflare/workers-utils
wrangler
commit: |
8d7d1c4 to
ddaf4db
Compare
ddaf4db to
54b3b0f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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.20260708.2
Minor Changes
#14602
7692a61Thanks @edmundhung! - AddunsafeEvictDurableObject()for targeted Durable Object evictionThis lets users verify how a Durable Object recovers after its instance is torn down.
#14602
7692a61Thanks @edmundhung! - AllowlistDurableObjectIds()to accept Durable Object class names as well as binding names.wrangler@4.111.0
Minor Changes
#14602
7692a61Thanks @edmundhung! - Add Durable Object eviction support tocreateTestHarnessYou can now gracefully evict a running Durable Object by class name or binding name to verify how it recovers after its instance is torn down:
#14620
899c297Thanks @penalosa! - Remove support for service environments and thelegacy_envconfiguration fieldService environments have been removed. Wrangler now always deploys each environment as its own Worker named
<name>-<environment>, which matches the behaviour of the previous default (legacy_env = true). The--legacy-envCLI flag has been removed, and thelegacy_envconfiguration field is no longer supported — including it in your configuration file will now raise an error.Because
legacy_env = truewas already the default, removing the field will not change how your Worker is deployed. If you were relying on service environments (legacy_env = false), each environment will now be deployed as a standalone Worker instead of as an environment of a single Worker. See https://developers.cloudflare.com/workers/wrangler/environments/ for more information.Patch Changes
#14601
3015320Thanks @MattieTK! - Improve the agent-facing--forceguidance for Pages-to-Workers delegationWhen an AI agent opts out of the Pages-to-Workers delegation by passing
--forcetowrangler pages deployorwrangler pages project create, Wrangler now prints a notice at the end of a successful command explaining that--forceonly needs to be passed once: the project then exists, so subsequent commands are no longer delegated and do not need the flag.#14569
9da77acThanks @dario-piotrowicz! - Suggest similar commands when a typo is detectedWhen an unknown command or subcommand is entered, wrangler now suggests the closest matching command if one exists within a reasonable edit distance. For example, running
wrangler whoamiowill displayDid you mean "wrangler whoami"?, and runningwrangler kv namespasewill displayDid you mean "wrangler kv namespace"?.Updated dependencies [
7692a61,7692a61]:create-cloudflare@2.70.11
Patch Changes
#14653
e812d2eThanks @dario-piotrowicz! - Pass--no-installto@tanstack/cli createduring scaffoldingPreviously, the TanStack Start template did not pass
--no-installto the framework CLI, causing dependencies to be installed twice: once by@tanstack/cli createand again by C3's own install step. This aligns the TanStack Start template with other framework templates that already skip the framework CLI's install.@cloudflare/deploy-helpers@0.4.1
Patch Changes
7692a61,7692a61]:@cloudflare/pages-shared@0.13.157
Patch Changes
7692a61,7692a61]:@cloudflare/vite-plugin@1.44.1
Patch Changes
#14645
cbdd107Thanks @jamesopstad! - Fix load time crash on Node.js versions earlier than 22.15The plugin eagerly imported
registerHooksfromnode:module, which only exists on Node.js v22.15.0+.registerHooksis now read lazily, meaning that missing support is only surfaced when usingexperimental.newConfig.Updated dependencies [
7692a61,7692a61,7692a61,3015320,899c297,9da77ac]:@cloudflare/vitest-pool-workers@0.18.5
Patch Changes
7692a61,7692a61,7692a61,3015320,899c297,9da77ac]:@cloudflare/local-explorer-ui@0.14.1
Patch Changes
#14629
c5647ddThanks @dario-piotrowicz! - Fix D1 schema editor tab not tracking unsaved changesThe schema editor tab (edit table / create table) now correctly marks the tab as dirty when there are unsaved schema changes. This shows the unsaved changes indicator on the tab, triggers the browser's leave guard when navigating away, and prompts for confirmation when closing the tab.
Additionally, column and constraint deletions now properly mark the schema as dirty. Previously, removing a column or constraint would filter the entry out of the state array entirely, causing the dirty-state check to miss the change.
@cloudflare/runtime-types@0.0.2
Patch Changes
7692a61,7692a61]: