chore(deps): update dependency wrangler to ^3.63.1
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
wrangler (source) | devDependencies | patch | ^3.63.0 -> ^3.63.1 |
MR created with the help of gitlab-org/frontend/renovate-gitlab-bot
Release Notes
cloudflare/workers-sdk (wrangler)
v3.63.1
Patch Changes
-
#6192
b879ce4
Thanks @petebacondarwin! - fix: do not report D1 user errors to Sentry -
#6150
d993409
Thanks @CarmenPopoviciu! - fix: Fixpages dev
watch mode [_worker.js]The watch mode in
pages dev
for Advanced Mode projects is currently partially broken, as it only watches for changes in the "_worker.js" file, but not for changes in any of its imported dependencies. This means that given the following "_worker.js" fileimport { graham } from "./graham-the-dog"; export default { fetch(request, env) { return new Response(graham) } }
pages dev
will reload for any changes in the_worker.js
file itself, but not for any changes ingraham-the-dog.js
, which is its dependency.Similarly,
pages dev
will not reload for any changes in non-JS module imports, such as wasm/html/binary module imports.This commit fixes all the aforementioned issues.
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.