chore(deps): update external fixes #53
Open
+742
−243
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 contains the following updates:
4.20250510.0
->4.20250525.0
0.25.4
->0.25.5
11.2.2
->11.5.0
24.2.3
->24.2.5
4.14.4
->4.17.0
Release Notes
cloudflare/workerd (@cloudflare/workers-types)
v4.20250525.0
Compare Source
v4.20250524.0
Compare Source
v4.20250523.0
Compare Source
v4.20250522.0
Compare Source
v4.20250521.0
Compare Source
v4.20250520.0
Compare Source
v4.20250519.0
Compare Source
v4.20250517.0
Compare Source
v4.20250515.0
Compare Source
v4.20250514.0
Compare Source
v4.20250513.0
Compare Source
evanw/esbuild (esbuild)
v0.25.5
Compare Source
Fix a regression with
browser
inpackage.json
(#4187)The fix to #4144 in version 0.25.3 introduced a regression that caused
browser
overrides specified inpackage.json
to fail to override relative path names that end in a trailing slash. That behavior change affected the[email protected]
package. This regression has been fixed, and now has test coverage.Add support for certain keywords as TypeScript tuple labels (#4192)
Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a
?
modifier. These labels includedfunction
,import
,infer
,new
,readonly
, andtypeof
. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:Add CSS prefixes for the
stretch
sizing value (#4184)This release adds support for prefixing CSS declarations such as
div { width: stretch }
. That CSS is now transformed into this depending on what the--target=
setting includes:mochajs/mocha (mocha)
v11.5.0
Compare Source
🌟 Features
v11.4.0
Compare Source
🌟 Features
📚 Documentation
v11.3.0
Compare Source
🌟 Features
📚 Documentation
🧹 Chores
semantic-release/semantic-release (semantic-release)
v24.2.5
Compare Source
v24.2.4
Compare Source
cloudflare/workers-sdk (wrangler)
v4.17.0
Minor Changes
#9321
6c03bde
Thanks @petebacondarwin! - Add support for FedRAMP High compliance regionNow it is possible to target Wrangler at the FedRAMP High compliance region.
There are two ways to signal to Wrangler to run in this mode:
"compliance_region": "fedramp_high"
in a Wrangler configurationCLOUDFLARE_COMPLIANCE_REGION=fedramp_high
environment variable when running WranglerIf both are provided and the values do not match then Wrangler will exit with an error.
When in this mode OAuth authentication is not supported.
It is necessary to authenticate using a Cloudflare API Token acquired from the Cloudflare FedRAMP High dashboard.
Most bindings and commands are supported in this mode.
Resolves DEVX-1921.
#9330
34c71ce
Thanks @edmundhung! - Updated internal configuration to use Miniflare’s newdefaultPersistRoot
instead of per-pluginpersist
flags#8973
cc7fae4
Thanks @Caio-Nogueira! - Show latest instance by default onworkflows instances describe
commandPatch Changes
#9335

6479fc5
Thanks @penalosa! - Redesignwrangler dev
to more clearly present information and have a bit of a glow up ✨#9329
410d985
Thanks @penalosa! - Hide logs in thestartMixedModeSession()
API#9325
c2678d1
Thanks @edmundhung! - refactor: fallbacks to local image binding from miniflare when local mode is enabledUpdated dependencies [
34c71ce
,f7c82a4
,7ddd865
,6479fc5
,e5ae13a
]:v4.16.1
Compare Source
Patch Changes
7344344
Thanks @gabivlj! -wrangler containers delete
handles API errors correctlyv4.16.0
Compare Source
Minor Changes
#9288
3b8f7f1
Thanks @petebacondarwin! - allow --name and --env args on wrangler deployPreviously it was not possible to provide a Worker name as a command line argument at the same time as setting the Wrangler environment.
Now specifying
--name
is supported and will override any names set in the Wrangler config:wrangler.json
#9265
16de0d5
Thanks @edmundhung! - docs: add documentation links to individual config properties in the JSON schema of the Wrangler config filePatch Changes
#9234
2fe6219
Thanks @emily-shen! - fix: add no-opprops
toctx
ingetPlatformProxy
to fix type mismatch#9269
66d975e
Thanks @dario-piotrowicz! - Wire up mixed-mode remote bindings for multi-workerwrangler dev
Under the
--x-mixed-mode
flag, make sure that bindings configurations withremote: true
actually generate bindings to remote resources during a multi-workerwrangler dev
session, currently the bindings included in this are: services, kv_namespaces, r2_buckets, d1_databases, queues and workflows.Also include the ai binding since the bindings is already remote by default anyways.
#9151
5ab035d
Thanks @gabivlj! - wrangler containers can be configured with the kind of application rollout onapply
#9231
02d40ed
Thanks @dario-piotrowicz! - Wire up mixed-mode remote bindings for (single-worker)wrangler dev
Under the
--x-mixed-mode
flag, make sure that bindings configurations withremote: true
actually generate bindings to remote resources during a single-workerwrangler dev
session, currently the bindings included in this are: services, kv_namespaces, r2_buckets, d1_databases, queues and workflows.Also include the ai binding since the bindings is already remote by default anyways.
#9221
2ef31a9
Thanks @vicb! - bump@cloudflare/unenv-preset
#9277
db5ea8f
Thanks @penalosa! - Support Mixed Mode for more binding types#9266
f2a16f1
Thanks @petebacondarwin! - fix: setting triggers.crons:[] in Wrangler config should delete deployed cron schedules#9245
b87b472
Thanks @penalosa! - Support Mixed Mode Dispatch NamespacesUpdated dependencies [
db5ea8f
,b87b472
]:v4.15.2
Compare Source
Patch Changes
#9257
33daa09
Thanks @penalosa! - Relax R2 bucket validation forpages dev
commands#9256
3b384e2
Thanks @penalosa! - Move the Analytics Engine simulator implementation from JSRPC to a Wrapped binding. This fixes a regression introduced in https://github.com/cloudflare/workers-sdk/pull/8935 that preventing Analytics Engine bindings working in local dev for Workers with a compatibility date prior to JSRPC being enabled.Updated dependencies [
3b384e2
]:v4.15.1
Compare Source
Patch Changes
#9248
07f4010
Thanks @vicb! - fix unenv version mismatch#9219
ea71df3
Thanks @vicb! - bump unenv to 2.0.0-rc.17#9246
d033a7d
Thanks @edmundhung! - fix: stripCF-Connecting-IP
header withinfetch
In v4.15.0, Miniflare began stripping the
CF-Connecting-IP
header via a global outbound service, which led to a TCP connection regression due to a bug in Workerd. This PR patches thefetch
API to strip the header during localwrangler dev
sessions as a temporary workaround until the underlying issue is resolved.Updated dependencies [
f61a08e
,ea71df3
,d033a7d
]:v4.15.0
Compare Source
Minor Changes
#8794
02f0699
Thanks @eastlondoner! - This adds support for more accurate types for service bindings when runningwrangler types
. Previously, runningwrangler types
with a config including a service binding would generate anEnv
type like this:This type was "correct", but didn't capture the possibility of using JSRPC to communicate with the service binding. Now, running
wrangler types -c wrangler.json -c ../service/wrangler.json
(the first config representing the current Worker, and any additional configs representing service bound Workers) will generate anEnv
type like this:#8716
63a6504
Thanks @ItsWendell! - add --metafile flag to generate esbuild metadata file during build#9122
f17ee08
Thanks @avenceslau! - Unhide wrangler workflows delete commandPatch Changes
#9168
6b42c28
Thanks @dario-piotrowicz! - remove experimentalMixedModeConnectionString
typeremove the experimental
MixedModeConnectionString
type whichis now exposed by Miniflare instead
#7914
37af035
Thanks @andyjessop! - fix(miniflare): strip CF-Connecting-IP header from all outbound requests#9161
53ba97d
Thanks @lambrospetrou! - Fix d1 info command showing read_replication: [object Object]#9165
91d0c40
Thanks @vicb! - validate r2 bucket names#9183
f6f1a18
Thanks @dario-piotrowicz! - addremote
option to initial bindingsadd the
remote
option (initial implementationgated behind
--x-mixed-mode
) for the followingbindings:
service
,kv
,r2
,d1
,queue
andworkflow
#9149
415520e
Thanks @penalosa! - Implement mixed mode proxy server & clientUpdated dependencies [
37af035
,ceeb375
,349cffc
,362cb0b
,2cc8197
,6b42c28
]:Configuration
📅 Schedule: Branch creation - "after 2pm on Monday" in timezone Europe/Zurich, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.