chore(deps): update dependency wrangler to v4#7111
Closed
renovate[bot] wants to merge 1 commit intomasterfrom
Closed
chore(deps): update dependency wrangler to v4#7111renovate[bot] wants to merge 1 commit intomasterfrom
renovate[bot] wants to merge 1 commit intomasterfrom
Conversation
Collaborator
|
We don't know if this is safe to merge when the task using this dependency is skipped: Build / cloudflare_pages (pull_request) |
Contributor
Author
Renovate Ignore NotificationBecause you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR. |
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 contains the following updates:
3.114.1->4.0.0Release Notes
cloudflare/workers-sdk (wrangler)
v4.0.0Compare Source
Major Changes
#7334
869ec7bThanks @penalosa! - Use--localby default forwrangler kv keyandwrangler r2 objectcommands#7334
869ec7bThanks @dario-piotrowicz! - chore: remove deprecatedgetBindingsProxyremove the deprecated
getBindingsProxyutility which has been replaced withgetPlatformProxy#7334
869ec7bThanks @penalosa! - Remove the deprecated--formatargument onwrangler deployandwrangler dev.Remove deprecated config fields:
typewebpack_configminiflarebuild.uploadzone_idusage_modelexperimental_serviceskv-namespaces#7334
869ec7bThanks @rozenmd! - Removewrangler d1 backupsThis change removes
wrangler d1 backups, a set of alpha-only commands that would allow folks to interact with backups of their D1 alpha DBs.For production D1 DBs, you can restore previous versions of your database with
wrangler d1 time-traveland export it at any time withwrangler d1 export.Closes #7470
#7334
869ec7bThanks @rozenmd! - Remove--batch-sizeas an option forwrangler d1 executeandwrangler d1 migrations applyThis change removes the deprecated
--batch-sizeflag, as it is no longer necessary to decrease the number of queries wrangler sends to D1.Closes #7470
#7334
869ec7bThanks @rozenmd! - Remove alpha support fromwrangler d1 migrations applyThis change removes code that would take a backup of D1 alpha databases before proceeding with applying a migration.
We can remove this code as alpha DBs have not accepted queries in months.
Closes #7470
#7334
869ec7bThanks @penalosa! - Remove the deprecatedwrangler generatecommand. Instead, use the C3 CLI to create new projects: https://developers.cloudflare.com/pages/get-started/c3/#7334
869ec7bThanks @penalosa! - Remove the deprecatedwrangler init --no-delegate-c3command.wrangler initis still available, but will always delegate to C3.#7334
869ec7bThanks @penalosa! - Remove support for legacy assets.This removes support for legacy assets using the
--legacy-assetsflag orlegacy_assetsconfig field. Instead, you should use Workers Assets#7334
869ec7bThanks @penalosa! - Remove the deprecatedwrangler publishcommand. Instead, usewrangler deploy, which takes exactly the same arguments.Additionally, remove the following deprecated commands, which are no longer supported.
wrangler configwrangler previewwrangler routewrangler subdomainRemove the following deprecated command aliases:
wrangler secret:*, replaced bywrangler secret *wrangler kv:*, replaced bywrangler kv *#7334
869ec7bThanks @penalosa! - Remove the deprecatedwrangler versioncommand. Instead, usewrangler --versionto check the current version of Wrangler.#7334
869ec7bThanks @penalosa! - The--node-compatflag andnode_compatconfig properties are no longer supported as of Wrangler v4. Instead, use thenodejs_compatcompatibility flag. This includes the functionality from legacynode_compatpolyfills and natively implemented Node.js APIs. See https://developers.cloudflare.com/workers/runtime-apis/nodejs for more information.If you need to replicate the behaviour of the legacy
node_compatfeature, refer to https://developers.cloudflare.com/workers/wrangler/migration/update-v3-to-v4/ for a detailed guide.#7334
869ec7bThanks @threepointone! - chore: update esbuildThis patch updates esbuild from 0.17.19 to 0.24.2. That's a big bump! Lots has gone into esbuild since May '23. All the details are available at https://github.com/evanw/esbuild/blob/main/CHANGELOG.md / https://github.com/evanw/esbuild/blob/main/CHANGELOG-2023.md.
We now support all modern JavasScript/TypeScript features suported by esbuild (as of December 2024). New additions include standard decorators, auto-accessors, and the
usingsyntax.0.18 introduced wider support for configuration specified via
tsconfig.jsonhttps://github.com/evanw/esbuild/issues/3019. After observing the (lack of) any actual broken code over the last year for this release, we feel comfortable releasing this without considering it a breaking change.0.19.3 introduced support for import attributes
While we don't currently expose the esbuild configuration for developers to add their own plugins to customise how modules with import attributes are bundled, we may introduce new "types" ourselves in the future.
0.19.0 introduced support for wildcard imports. Specifics here (https://github.com/evanw/esbuild/blob/main/CHANGELOG-2023.md#0190). tl;dr -
These 2 patterns will bundle all files that match the glob pattern into a single file.
This pattern will NOT bundle any matching patterns:
You can use
find_additional_modulesto bundle any additional modules that are not referenced in the code but are required by the project.Now, this MAY be a breaking change for some. Specifically, if you were previously using the pattern (that will now include all files matching the glob pattern in the bundle), BUT
find_additional_moduleswas NOT configured to include some files, those files would now be included in the bundle. For example, consider this code:Imagine if in that folder, you had these 3 files:
And your
wrangler.tomlwas:Before this update:
http://localhost:8787/would error. For example, a request tohttp://localhost:8787/one.jswould error with No such module "one.js".wrangler.tomlto include all.jsfiles in thesrcfolder:Now, a request to
http://localhost:8787/one.jswould return the contents ofsrc/one.js, but a request tohttp://localhost:8787/hidden/secret.jswould error with No such module "hidden/secret.js". To include this file, you could expand therulesarray to be:Then, a request to
http://localhost:8787/hidden/secret.jswill return the contents ofsrc/hidden/secret.js.After this update:
Now, a request to
http://localhost:8787/one.jswill return the contents ofsrc/one.js, but a request tohttp://localhost:8787/hidden/secret.jswill ALSO return the contents ofsrc/hidden/secret.js. THIS MAY NOT BE WHAT YOU WANT. You can "fix" this in 2 ways:Now, no extra modules are included in the bundle, and a request to
http://localhost:8787/hidden/secret.jswill throw an error. You can use thefind_additional_modulesfeature to include it again.Further, there may be some files that aren't modules (js/ts/wasm/text/binary/etc) that are in the folder being included (For example, a
photo.jpgfile). This pattern will now attempt to include them in the bundle, and throw an error. It will look like this:[ERROR] No loader is configured for ".png" files: src/photo.jpgTo fix this, simply move the offending file to a different folder.
In general, we DO NOT recommend using the wildcard import pattern. If done wrong, it can leak files into your bundle that you don't want, or make your worker slightly slower to start. If you must use it (either with a wildcard import pattern or with
find_additional_modules) you must be diligent to check that your worker is working as expected and that you are not leaking files into your bundle that you don't want. You can configure eslint to disallow dynamic imports like this:#7334
869ec7bThanks @pmiguel! - Remove worker name prefix from KV namespace createWhen running
wrangler kv namespace create <name>, previously the name of the namespace was automatically prefixed with the worker title, orworker-when running outside the context of a worker.After this change, KV namespaces will no longer get prefixed, and the name used is the name supplied, verbatim.
#7334
869ec7bThanks @penalosa! - Packages in Workers SDK now support the versions of Node that Node itself supports (Current, Active, Maintenance). Currently, that includes Node v18, v20, and v22.Minor Changes
#7334
869ec7bThanks @emily-shen! - Include runtime types in the output ofwrangler typesby defaultwrangler typeswill now produce one file that contains bothEnvtypes and runtime types based on your compatibility date and flags. This is located atworker-configuration.d.tsby default.This behaviour was previously gated behind
--experimental-include-runtime. That flag is no longer necessary and has been removed. It has been replaced by--include-runtimeand--include-env, both of which are set totrueby default. If you were previously using--x-include-runtime, you can drop that flag and remove the separateruntime.d.tsfile.If you were previously using
@cloudflare/workers-typeswe recommend you run uninstall (e.g.npm uninstall @​cloudflare/workers-types) and runwrangler typesinstead. Note that@cloudflare/workers-typeswill continue to be published.#7334
869ec7bThanks @penalosa! - feat: prompt users to rerunwrangler typesduringwrangler devIf a generated types file is found at the default output location of
wrangler types(worker-configuration.d.ts), remind users to rerunwrangler typesif it looks like they're out of date.Patch Changes
869ec7b,869ec7b]:v3.114.2Compare Source
Patch Changes
#8453
f90a669Thanks @workers-devprod! - trigger dummy v3 maintenance release for testing#8500
80bbee3Thanks @workers-devprod! - Supportno_bundleconfig in Pages for bothdevanddeploy.This was already supported via a command line arg (
--no-bundle).#8521
5cd32b1Thanks @emily-shen! - fix: throw explicit error for unknown mimetype duringwrangler check startup#8504
0192aaeThanks @workers-devprod! - Fix Workers Assets metafiles (_headersand_redirects) resolution when running Wrangler from a different directoryUpdated dependencies [
f90a669]: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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.