Open
Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
papermc-website | c5c9089 | Commit Preview URL Branch Preview URL |
Apr 16 2026, 11:05 PM |
fd27323 to
4c05906
Compare
4c05906 to
6bceda1
Compare
6bceda1 to
c5c9089
Compare
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:
4.80.0→4.82.2Release Notes
cloudflare/workers-sdk (wrangler)
v4.82.2Compare Source
Patch Changes
9b2b6baThanks @jamesopstad! - Add Flagship OAuth scopes towrangler loginv4.82.1Compare Source
Patch Changes
#13453
6b11b07Thanks @petebacondarwin! - Disable flagship OAuth scopes that are not yet valid in the Cloudflare backendThe
flagship:readandflagship:writeOAuth scopes have been temporarily commented out from the default scopes requested during login, as they are not yet recognized by the Cloudflare backend.#13438
dd4e888Thanks @dependabot! - fix: handle Vike config files that use a variable-referenced default exportNewer versions of
create-vike(0.0.616+) generatepages/+config.tsfiles usingconst config: Config = { ... }; export default config;instead of the previousexport default { ... } satisfies Config;. The Wrangler autoconfig AST transformation now resolvesIdentifierexports to their variable declarations, supporting both old and new Vike config file formats.v4.82.0Compare Source
Minor Changes
#13353
5338bb6Thanks @mattzcarey! - Addartifacts:writeto Wrangler's default OAuth scopes, enablingwrangler loginto request access to Cloudflare Artifacts (registries and artifacts).#13139
79fd529Thanks @roerohan! - feat: add Flagship feature flag binding supportAdds end-to-end support for the Flagship feature flag binding, which allows Workers to evaluate feature flags from Cloudflare's Flagship service. Configure it in
wrangler.jsonwith aflagshiparray containingbindingandapp_identries. In local dev, the binding returns default values for all flag evaluations; use"remote": truein the binding to evaluate flags against the live Flagship service.#12983
28bc2beThanks @1000hz! - Added thewrangler previewcommand family for creating Preview deployments (currently in private beta).#13197
4fd138bThanks @shahsimpson! - Addpreviewoutput-file entries forwrangler previewdeploymentswrangler previewnow writes apreviewentry to the Wrangler output file whenWRANGLER_OUTPUT_FILE_PATHorWRANGLER_OUTPUT_FILE_DIRECTORYis configured. The entry includes the Worker name, preview metadata (preview_id,preview_name,preview_slug,preview_urls) and deployment metadata (deployment_id,deployment_urls).This makes preview command runs machine-readable in the same output stream as other Wrangler commands, which helps CI integrations consume preview URLs and IDs directly.
#13159
bafb96bThanks @ruifigueira! - Addwrangler browsercommands for managing Browser Rendering sessionsNew commands for Browser Rendering DevTools:
wrangler browser create [--lab] [--keepAlive <seconds>] [--open]- Create a new sessionwrangler browser close <sessionId>- Close a sessionwrangler browser list- List active sessionswrangler browser view [sessionId] [--target <selector>] [--open]- View a live browser sessionThe
viewcommand auto-selects when only one session exists, or prompts for selection when multiple are available.The
--openflag controls whether to open DevTools in browser (default: true in interactive mode, false in CI/scripts). Use--no-opento just print the DevTools URL.All commands support
--jsonfor programmatic output. Also addsbrowser:writeOAuth scope towrangler login.#13392
2589395Thanks @emily-shen! - Add telemetry to local REST APIThe local REST API (used by the local explorer) now collects anonymous usage telemetry. This respects any existing telemetry preferences, which can be disabled by running the command
wrangler telemetry disable.This only applies when the dev session is started via Wrangler, and not via the Vite plugin or standalone Miniflare.
No actual data values, keys, query contents, or resource IDs are collected.
Event schema:
{ "event": "localapi.<route>.<method>", // e.g. localapi.kv.keys.get "deviceId": "<uuid>", "timestamp": 1234567890, "properties": { "userAgent": "Mozilla/5.0 ...", // Only for localapi.local.workers.get: "workerCount": 2, "kvCount": 3, "d1Count": 1, "r2Count": 0, "doCount": 1, "workflowsCount": 0 } }Note: the Local Explorer and corresponding local REST API is still an experimental feature.
#13137
1313275Thanks @emily-shen! - explorer: expose the local explorer hotkeyList the local explorer's hotkey
[e]in wrangler dev output.Patch Changes
#13393
c50cb5bThanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
#13424
525a46bThanks @paulelliotco! - Keep proxy notices off stdout for JSON Wrangler commandsWrangler now writes the startup notice for
HTTP_PROXYandHTTPS_PROXYto stderr instead of stdout. This keeps commands likewrangler auth token --jsonmachine-readable when a proxy is configured.Updated dependencies [
79fd529,c50cb5b,2589395,5eff8c1]:v4.81.1Compare Source
Patch Changes
#13337
c510494Thanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
#13362
8b71ecaThanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
#13329
7ca6f6eThanks @G4brym! - fix: Treat AI Search bindings as always-remote in local devAI Search namespace (
ai_search_namespaces) and instance (ai_search) bindings are always-remote (they have no local simulation), butpickRemoteBindings()did not include them in its always-remote type list. This caused the remote proxy session to exclude these bindings whenremote: truewas not explicitly set in the config, resulting in broken AI Search bindings duringwrangler dev.Additionally,
removeRemoteConfigFieldFromBindings()in the deploy config-diff logic was not stripping theremotefield from AI Search bindings, which could cause false config diffs during deployment.Updated dependencies [
42c7ef0,c510494,8b71eca,a42e0e8]:v4.81.0Compare Source
Minor Changes
#12932
96ee5d4Thanks @thomasgauvin! - feat: addwrangler email routingandwrangler email sendingcommandsEmail Routing commands:
wrangler email routing list- list zones with email routing statuswrangler email routing settings <domain>- get email routing settings for a zonewrangler email routing enable/disable <domain>- enable or disable email routingwrangler email routing dns get/unlock <domain>- manage DNS recordswrangler email routing rules list/get/create/update/delete <domain>- manage routing rules (usecatch-allas the rule ID for the catch-all rule)wrangler email routing addresses list/get/create/delete- manage destination addressesEmail Sending commands:
wrangler email sending list- list zones with email sendingwrangler email sending settings <domain>- get email sending settings for a zonewrangler email sending enable <domain>- enable email sending for a zone or subdomainwrangler email sending disable <domain>- disable email sending for a zone or subdomainwrangler email sending dns get <domain>- get DNS records for a sending domainwrangler email sending send- send an email using the builder APIwrangler email sending send-raw- send a raw MIME email messageAlso adds
email_routing:writeandemail_sending:writeOAuth scopes towrangler login.Patch Changes
#13241
7d318e1Thanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
#13305
fa6d84fThanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
#13193
78cbe37Thanks @dario-piotrowicz! - During autoconfig filter out Hono when there are 2 detected frameworksDuring the auto-configuration process Hono is now treated as an auxiliary framework (like Vite) and automatically filtered out when two frameworks are detected (before Hono was being filtered out only when the other framework was Waku).
#13205
6fa5dfdThanks @petebacondarwin! - fix: useformatConfigSnippetfor compatibility_date warning inwrangler devThe compatibility_date warning shown when no date is configured in
wrangler devwas hardcoded in TOML format. This now usesformatConfigSnippetto render the snippet in the correct format (TOML or JSON) based on the user's config file type.Updated dependencies [
a3e3b57,7d318e1,fa6d84f,7d318e1,7a60d4b]:Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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.