Merged
Conversation
Contributor
Author
|
Codeowners approval required for this PR:
Show detailed file reviewers
|
Contributor
|
create-cloudflare
@cloudflare/kv-asset-handler
miniflare
@cloudflare/pages-shared
@cloudflare/unenv-preset
@cloudflare/vite-plugin
@cloudflare/vitest-pool-workers
@cloudflare/workers-editor-shared
wrangler
commit: |
953fad4 to
1fe99e8
Compare
2acf537 to
7305ec9
Compare
7305ec9 to
1727a46
Compare
jamesopstad
approved these changes
Mar 5, 2026
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
@cloudflare/[email protected]
Minor Changes
#10618
5cc8fcfThanks @petebacondarwin! - Use the native workerdnode:perf_hooksmodule andPerformanceglobal classes when availableThey are enabled when the
enable_nodejs_perf_hooks_modulecompatibility flag is set. This feature is currently experimental and requires the above flag andexperimentalcompatibility flag to be set.[email protected]
Minor Changes
#11656
ec2459eThanks @prydt! - feat(hyperdrive): add MySQL SSL mode and Custom CA supportHyperdrive now supports MySQL-specific SSL modes (
REQUIRED,VERIFY_CA,VERIFY_IDENTITY) alongside the existing PostgreSQL modes. The--sslmodeflag now validates the provided value based on the database scheme (PostgreSQL or MySQL) and enforces appropriate CA certificate requirements for each.Usage:
Patch Changes
5cc8fcf]:@cloudflare/[email protected]
Patch Changes
5cc8fcf,ec2459e]:@cloudflare/[email protected]
Patch Changes
ec2459e]:@cloudflare/[email protected]
Minor Changes
#12453
9764ea0Thanks @NuroDev! - Add initial data studio with D1 and Durable Objects supportAdds a data studio interface to the local explorer UI, allowing you to browse and interact with D1 databases and Durable Objects during local development. The studio provides table browsing, query execution, and data editing capabilities.
#12760
fa88fefThanks @NuroDev! - Add schema editor to data studioAdds a visual schema editor to the data studio that allows you to create new database tables and edit existing table schemas. The editor provides column management (add, edit, remove), constraint editing (primary keys, unique constraints), and generates the corresponding SQL statements for review before committing changes.
This is a WIP experimental feature.
@cloudflare/[email protected]
Minor Changes
#11970
f235827Thanks @pombosilva! - Adds step context with attempt count to step.do() callbacks.Workflow step callbacks now receive a context object containing the current attempt number (1-indexed).
This allows developers to access which retry attempt is currently executing.
Example:
@cloudflare/[email protected]
Patch Changes
#12752
00a4356Thanks @WillTaylorDev! - fix: Normalize backslash characters in/cdn-cgipathsRequests containing backslash characters in
/cdn-cgipaths are now redirected to their normalized equivalents with forward slashes. This ensures consistent URL handling across different browsers and HTTP clients.