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.6.7
->4.6.12
3.83.0
->3.92.0
Release Notes
honojs/hono (hono)
v4.6.12
Compare Source
What's Changed
KB
by @EdamAme-x in https://github.com/honojs/hono/pull/3696New Contributors
Full Changelog: honojs/hono@v4.6.11...v4.6.12
v4.6.11
Compare Source
What's Changed
qs
for query-param by @yusukebe in https://github.com/honojs/hono/pull/3674perf-measures
by @yusukebe in https://github.com/honojs/hono/pull/3683build
andperf-measures
by @yusukebe in https://github.com/honojs/hono/pull/3686errorHandler
withprivate
not use#
by @yusukebe in https://github.com/honojs/hono/pull/3692New Contributors
Full Changelog: honojs/hono@v4.6.10...v4.6.11
v4.6.10
Compare Source
What's Changed
no-response.yml
by @yusukebe in https://github.com/honojs/hono/pull/3622devDependencies
by @EdamAme-x in https://github.com/honojs/hono/pull/3633package.json
andjsr.json
by @EdamAme-x in https://github.com/honojs/hono/pull/3638#
for private props to reduce the minified bundle size by @EdamAme-x in https://github.com/honojs/hono/pull/3660c.req.routeIndex
from being changed by @usualoma in https://github.com/honojs/hono/pull/3663New Contributors
Full Changelog: honojs/hono@v4.6.9...v4.6.10
v4.6.9
Compare Source
What's Changed
c.req.param
decodes invalid percent strings by @yusukebe in https://github.com/honojs/hono/pull/3573memo
for DOM renderer by @usualoma in https://github.com/honojs/hono/pull/3568.concat
instead of spread syntax by @EdamAme-x in https://github.com/honojs/hono/pull/3584any
and fix types of adapter/deno by @EdamAme-x in https://github.com/honojs/hono/pull/3291.matchRoute
and reduce bundle size by @EdamAme-x in https://github.com/honojs/hono/pull/3595c.redirect()
by @cometkim in https://github.com/honojs/hono/pull/3609| 0
instead ofMath.floor
by @EdamAme-x in https://github.com/honojs/hono/pull/3605#
for private methods to reduce the minified file size by @yusukebe in https://github.com/honojs/hono/pull/3596New Contributors
Full Changelog: honojs/hono@v4.6.8...v4.6.9
v4.6.8
Compare Source
What's Changed
--hot
by @nakasyou in https://github.com/honojs/hono/pull/3576New Contributors
Full Changelog: honojs/hono@v4.6.7...v4.6.8
cloudflare/workers-sdk (wrangler)
v3.92.0
Minor Changes
#7251
80a83bb
Thanks @penalosa! - Improve Wrangler's multiworker support to allow running multiple workers at once with one command. To try it out, pass multiple-c
flags to Wrangler: i.e.wrangler dev -c wrangler.toml -c ../other-worker/wrangler.toml
. The first config will be treated as the primary worker and will be exposed over HTTP as usual (localhost:8787) while the rest will be treated as secondary and will only be accessible via a service binding from the primary worker. Notably, these workers all run in the same runtime instance, which should improve reliability of multiworker dev and fix some bugs (RPC to cross worker Durable Objects, for instance).#7130
11338d0
Thanks @nickbabcock! - Update import resolution for files and package exportsIn an npm workspace environment, wrangler will now be able to successfully resolve package exports.
Previously, wrangler would only be able to resolve modules in a relative
node_modules
directory and not the workspace rootnode_modules
directory.#7355
5928e8c
Thanks @emily-shen! - feat: addexperimental_serve_directly
option to Workers with AssetsUsers can now specify whether their assets are served directly against HTTP requests or whether these requests always go to the Worker, which can then respond with asset retrieved by its assets binding.
Patch Changes
#7326
24c752e
Thanks @OilyLime! - Print wrangler.toml snippet when creating new Hyperdrive Config#7272
a3f56d1
Thanks @penalosa! - Make debug log for.env
not found less scary#7377
6ecc74e
Thanks @edmundhung! - Thex-provision
experimental flag now skips validation of KV, R2, and D1 IDs in the configuration file.#7348
4cd8b46
Thanks @edmundhung! - Addedx-provision
global optionThis experimental flag currently has no effect. More details will be shared as we roll out its functionality.
#7381
22a4055
Thanks @penalosa! - Turn on--x-registry
for Pages by default#7360
98d2725
Thanks @emily-shen! - fix: allow runningwrangler types
when expected entrypoint doesn't existUpdated dependencies [
ac87395
,6b21919
,b3d2e7d
]:v3.91.0
Compare Source
Minor Changes
#7230
6fe9533
Thanks @penalosa! - Turn onwrangler.json(c)
support by defaultWrangler now supports both JSON (
wrangler.json
) and TOML (wrangler.toml
) for it's configuration file. The format of Wrangler's configuration file is exactly the same across both languages, except that the syntax isJSON
rather thanTOML
. e.g.would be interpreted the same as the equivalent JSON
#7330
219109a
Thanks @jonesphillip! - Added Oceania (oc) location hint as acceptable choice when creating an R2 bucket.#7227
02a0e1e
Thanks @taylorlee! - Addpreview_urls
toggle towrangler.toml
The current Preview URLs (beta) feature routes to version preview urls based on the status of the
workers_dev
config value. Beta users have requested the ability to enable deployment urls and preview urls separately onworkers.dev
, and the newpreviews_enabled
field of the enable-subdomain API will allow that. This change separates theworkers_dev
andpreview_urls
behavior duringwrangler triggers deploy
andwrangler versions upload
.preview_urls
defaults to true, and does not implicitly depend on routes the wayworkers_dev
does.#7308
1b1d01a
Thanks @gpanders! - Add a default image for cloudchamber create and modify commands#7232
7da76de
Thanks @toddmantell! - feat: implement queues info commandThis command allows users to get information on individual queues.
To run this command use the queues info command with the name of a queue in the user's account.
wrangler queues info my-queue-name
Patch Changes
#7319
5a2c93d
Thanks @vicb! - chore(wrangler): update unenv dependency versionPulls in the implementation of module.findSourceMap
Updated dependencies [
0d314ed
,476e5df
]:v3.90.0
Compare Source
Minor Changes
31729ee
Thanks @G4brym! - Update local AI fetcher to forward method and url to upstreamPatch Changes
6ba5903
]:v3.89.0
Compare Source
Minor Changes
#7252
97acf07
Thanks @Maximo-Guk! - feat: Add production_branch and deployment_trigger to pages deploy detailed artifact for wrangler-action pages parity#7263
1b80dec
Thanks @danielrs! - Fix wrangler pages deployment (list|tail) environment filtering.Patch Changes
#7314
a30c805
Thanks @Ankcorn! - Fix observability.logs.enabled validation#7285
fa21312
Thanks @penalosa! - Renamedirectory
toprojectRoot
and ensure it's relative to thewrangler.toml
. This fixes a regression which meant that.wrangler
temporary folders were inadvertently generated relative toprocess.cwd()
rather than the location of thewrangler.toml
file. It also renamesdirectory
toprojectRoot
, which affects the `unstable_startWorker() interface.Updated dependencies [
563439b
]:v3.88.0
Compare Source
Minor Changes
#7173
b6cbfbd
Thanks @Ankcorn! - Adds [observability.logs] settings to wrangler. This setting lets developers control the settings for logs as an independent dataset enabling more dataset types in the future. The most specific setting will win if any of the datasets are not enabled.It also adds the following setting to the logs config
invocation_logs
- set to false to disable invocation logs. Defaults to true.#7207
edec415
Thanks @jonesphillip! - Added r2 bucket lifecycle command to Wrangler including list, add, remove, setPatch Changes
#7243
941d411
Thanks @penalosa! - Include Version Preview URL in Wrangler's output file#7038
e2e6912
Thanks @petebacondarwin! - fix: only show fetch warning if on old compatibility_dateNow that we have the
allow_custom_ports
compatibility flag, we only need to show the fetch warnings when that flag is not enabled.Fixes https://github.com/cloudflare/workerd/issues/2955
#7216
09e6e90
Thanks @vicb! - chore(wrangler): update unenv dependency version#7081
b4a0e74
Thanks @penalosa! - Default the file based registry (--x-registry
) to on. This should improve stability of multi-worker developmentUpdated dependencies []:
v3.87.0
Compare Source
Minor Changes
#7201
beed72e
Thanks @GregBrimble! - feat: Tail Consumers are now supported for Workers with assets.You can now configure
tail_consumers
in conjunction withassets
in yourwrangler.toml
file. Read more about Static Assets and Tail Consumers in the documentation.#7212
837f2f5
Thanks @jonesphillip! - Added r2 bucket info command to Wrangler. Improved formatting of r2 bucket list outputPatch Changes
#7210
c12c0fe
Thanks @taylorlee! - Avoid an unnecessary GET request duringwrangler deploy
.#7197
4814455
Thanks @michelheusschen! - fix console output forwrangler d1 migrations create
#6795
94f07ee
Thanks @benmccann! - chore: upgrade chokidar to v4#7133
c46e02d
Thanks @gpanders! - Do not emit escape sequences when stdout is not a TTYv3.86.1
Compare Source
Patch Changes
b499b74
Thanks @penalosa! - Internal refactor to remove the non--x-dev-env
flow fromwrangler dev
v3.86.0
Compare Source
Minor Changes
ef7c0b3
Thanks @jonesphillip! - Added the ability to enable, disable, and get r2.dev public access URLs for R2 buckets.Patch Changes
#7169
9098a3b
Thanks @penalosa! - Ensureworkerd
processes are cleaned up after address-in-use errors#7172
3dce388
Thanks @penalosa! - Clarify dev registry messaging around locally connected services. The connection status of local service bindings & durable object bindings is now indicated byconnected
ornot connected
next to their entry in the bindings summary. For more details, refer to https://developers.cloudflare.com/workers/runtime-apis/bindings/service-bindings/#local-development#7193
ad51d1d
Thanks @sdnts! - Output suggested wrangler.toml changes after creating an R2 bucket#7191
1d5bc6d
Thanks @sdnts! - Output suggested wrangler.toml changes after creating a QueueUpdated dependencies [
1db7846
,08c6580
]:v3.85.0
Compare Source
Minor Changes
#7105
a5f1779
Thanks @jonesphillip! - Added the ability to list, add, remove, and update R2 bucket custom domains.#7132
89f6274
Thanks @gabivlj! - Event messages are capitalized, images of wrong architectures properly show the error incloudchamber create
When a new "health" enum is introduced,
wrangler cloudchamber list
won't crash anymore.Update Cloudchamber schemas.
#7121
2278616
Thanks @bruxodasilva! - Added pause and resume commands to manage Workflows and hidded unimplemented delete commandPatch Changes
#7134
3ee1353
Thanks @cmackenzie1! - Change Pipelines to use name instead of ID#7020
e1d2fd6
Thanks @KianNH! - chore: move printWranglerBanner for secret delete into handler#7150
6380d86
Thanks @emily-shen! - refactor: improve login/logout/whoami setup with the new internal registration utils#6756
49ef163
Thanks @WalshyDev! - chore: disable wrangler.toml warnings when doingwrangler login
&wrangler logout
#7164
1bd4885
Thanks @penalosa! - Fix--test-scheduled
with custom builds &--x-dev-env
v3.84.1
Compare Source
Patch Changes
#7141
d938bb3
Thanks @emily-shen! - fix: throw a better error if there is an "ASSETS" user binding in a Pages projects#7124
f8ebdd1
Thanks @skepticfx! - fix: Modify Cloudchamber deployment labels in interactive modev3.84.0
Compare Source
Minor Changes
#6999
0111edb
Thanks @garvit-gupta! - docs: Vectorize GA Announcement Banner#6916
a33a133
Thanks @garrettgu10! - Local development now supports Vectorize bindings#7004
15ef013
Thanks @garvit-gupta! - feat: Enable Vectorize query by id via Wrangler#7092
038fdd9
Thanks @jonesphillip! - Added location hint option for the Wrangler R2 bucket create command#7024
bd66d51
Thanks @xortive! - feature: allow using a connection string when updating hyperdrive configsboth
hyperdrive create
andhyperdrive update
now support updating configs with connection strings.Patch Changes
#7091
68a2a84
Thanks @taylorlee! - fix: synchronize observability settings duringwrangler versions deploy
When running
wrangler versions deploy
, Wrangler will now updateobservability
settings in addition tologpush
andtail_consumers
. Unlikewrangler deploy
, it will not disable observability whenobservability
is undefined inwrangler.toml
.#7080
924ec18
Thanks @vicb! - chore(wrangler): update unenv dependency version#7097
8ca4b32
Thanks @emily-shen! - fix: remove deprecation warnings forwrangler init
We will not be removing
wrangler init
(it just delegates to create-cloudflare now). These warnings were causing confusion for users as itwrangler init
is still recommended in many places.#7073
656a444
Thanks @penalosa! - Internal refactor to removees-module-lexer
and supportwrangler types
for Workers with Durable Objects & JSX#7024
bd66d51
Thanks @xortive! - fix: make individual parameters work forwrangler hyperdrive create
when not using HoAwrangler hyperdrive create
individual parameters were not setting the database name correctly when calling the api.#7024
bd66d51
Thanks @xortive! - refactor: use same param parsing code forwrangler hyperdrive create
andwrangler hyperdrive update
ensures that going forward, both commands support the same features and have the same names for config flags
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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.