Merged
Conversation
Contributor
|
Claude finished @workers-devprod's task —— View job Changeset Review✅ All changesets look good I've reviewed all 13 changeset files against the guidelines in Summary:
Highlights:
All changesets meet quality standards and are ready for release. |
create-cloudflare
@cloudflare/kv-asset-handler
miniflare
@cloudflare/pages-shared
@cloudflare/unenv-preset
@cloudflare/vite-plugin
@cloudflare/vitest-pool-workers
@cloudflare/workers-editor-shared
@cloudflare/workers-utils
wrangler
commit: |
56bdcbf to
0e2f55d
Compare
0e2f55d to
0eb0e71
Compare
Member
|
For posterity... I forgot to approve the PR before merging it, however the PR had been reviewed and was ready to be merged |
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.20260219.0
Minor Changes
#12462
f239077Thanks @petebacondarwin! - AddMiniflare#purgeCache()method to clear cache entries programmaticallyThis allows developers to clear cached data during local development without
restarting the Miniflare instance. Useful when working with Workers Sites
or any application that uses the Cache API.
#12574
527e4f5Thanks @emily-shen! - Local explorer: add /query endpoint to introspect sqlite in DOsThis required adding a wrapper that extends user DO classes and adds in an extra method to access
ctx.storage.sql. This shouldn't have any impact on user code, but is gated by the env varX_LOCAL_EXPLORER.This is for an experimental WIP feature.
Patch Changes
#12592
aaa7200Thanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
#12606
2f19a40Thanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
#12597
0b17117Thanks @sdnts! - The maximum allowed delivery and retry delays for Queues is now 24 hours@cloudflare/unenv-preset@2.14.0
Minor Changes
#11734
5f9f0b4Thanks @petebacondarwin! - Add support for nativenode:readlinemodule when theenable_nodejs_readline_modulecompatibility flag is enabled.This feature is currently experimental and requires both the
enable_nodejs_readline_moduleandexperimentalcompatibility flags to be set.#12043
452cdc8Thanks @petebacondarwin! - Add support for nativenode:worker_threadsmodule from workerd when theenable_nodejs_worker_threads_modulecompatibility flag is enabled.This feature is currently experimental and requires
nodejs_compat,experimental, andenable_nodejs_worker_threads_modulecompatibility flags to be set.wrangler@4.67.0
Minor Changes
#12401
8723684Thanks @jonesphillip! - Add validation retry loops to pipelines setup commandThe
wrangler pipelines setupcommand now prompts users to retry when validation errors occur, instead of failing the entire setup process. This includes:This improves the setup experience by allowing users to correct mistakes without restarting the entire configuration flow.
#12395
aa82c2bThanks @cmackenzie1! - Generate typed pipeline bindings from stream schemasWhen 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.If your stream has a schema with fields like
user_id(string) andevent_count(int32), the generated types will be:For unstructured streams or when not authenticated, bindings fall back to the generic
Pipeline<PipelineRecord>type.Patch Changes
#12592
aaa7200Thanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
#12606
2f19a40Thanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
#12604
e2a6600Thanks @petebacondarwin! - fix: pass--envflag to auxiliary workers in multi-worker modeWhen running
wrangler devwith multiple config files (e.g.-c ./apps/api/wrangler.jsonc -c ./apps/queues/wrangler.jsonc -e=dev), the--envflag was not being passed to auxiliary (non-primary) workers. This meant that environment-specific configuration (such as queue bindings) was not applied to auxiliary workers, causing features like queue consumers to not be triggered in local development.#12597
0b17117Thanks @sdnts! - The maximum allowed delivery and retry delays for Queues is now 24 hours#12598
ca58062Thanks @mattzcarey! - Stop redactingwrangler whoamioutput in non-interactive modewrangler whoamiis explicitly invoked to retrieve account info, so email and account names should always be visible. Redacting them in non-interactive/CI environments makes it difficult for coding agents and automated tools to identify which account to use. Other error messages that may appear unexpectedly in CI logs (e.g. multi-account selection errors) remain redacted.Updated dependencies [
f239077,aaa7200,2f19a40,5f9f0b4,452cdc8,527e4f5,0b17117]:@cloudflare/pages-shared@0.13.109
Patch Changes
f239077,aaa7200,2f19a40,527e4f5,0b17117]:@cloudflare/vite-plugin@1.25.2
Patch Changes
f239077,aaa7200,2f19a40,8723684,e2a6600,5f9f0b4,452cdc8,527e4f5,aa82c2b,0b17117,ca58062]:@cloudflare/vitest-pool-workers@0.12.14
Patch Changes
f239077,aaa7200,2f19a40,8723684,e2a6600,527e4f5,aa82c2b,0b17117,ca58062]:@cloudflare/local-explorer-ui@0.5.0
Minor Changes
#12570
01ded52Thanks @NuroDev! - Add the initial plumbing for data studio components.This serves as another stepping stone for adding the complete data studio to the local explorer.
This is a WIP experimental feature.
@cloudflare/workers-playground@0.3.0
Minor Changes
#12549
10e2e15Thanks @penalosa! - Add expandable object logging and improved console UIThe Quick Editor console now displays logged objects and arrays as expandable tree views instead of
[object Object].