Version Packages#2394
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
13 times, most recently
from
December 16, 2022 14:46
635f3d6 to
18c5fe5
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
5 times, most recently
from
December 22, 2022 20:42
c660051 to
82d527a
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
11 times, most recently
from
January 2, 2023 12:52
e0ebeff to
83c935f
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
8 times, most recently
from
January 6, 2023 10:08
bfc5833 to
f30b4a5
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
2 times, most recently
from
January 6, 2023 13:25
0bb8a51 to
3111eb8
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
January 9, 2023 18:47
3111eb8 to
186c7b6
Compare
JacobMGEvans
approved these changes
Jan 9, 2023
JacobMGEvans
left a comment
Contributor
There was a problem hiding this comment.
Spot checked. Fixed some outstanding issues with changes to public API layer with wrangler init found during checks.
lrapoport-cf
approved these changes
Jan 9, 2023
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 was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
wrangler@2.7.0
Minor Changes
#2465
e1c2f5b9Thanks @JacobMGEvans! - After this PR,wrangler init --yeswill generate a test for your new Worker project, using Vitest with TypeScript.When using
wrangler init, and choosing to create a Typescript project, you will now be asked if Wrangler should write tests for you, using Vitest.This resolves issue 🐛 BUG:
wrangler init workername -yadds "jest" to tsconfig.json, but nothing else #2436.#2333
71691421Thanks @markjmiller! - Remove the experimental binding warning from Dispatch Namespace since it is GA.Patch Changes
#2460
c2b2dfb8Thanks @rozenmd! - fix: resolve unstable_dev flakiness in tests by awaiting the dev registry#2439
616f8739Thanks @petebacondarwin! - fix(wrangler): do not login or read wrangler.toml when applying D1 migrations in local mode.When applying D1 migrations to a deployed database, it is important that we are logged in
and that we have the database ID from the wrangler.toml.
This is not needed for
--localmode where we are just writing to a local SQLite file.#1869
917b07b0Thanks @petebacondarwin! - feat: enable Wrangler to target the staging API by setting WRANGLER_API_ENVIRONMENT=stagingIf you are developing Wrangler, or an internal Cloudflare feature, and during testing,
need Wrangler to target the staging API rather than production, it is now possible by
setting the
WRANGLER_API_ENVIRONMENTenvironment variable tostaging.This will update all the necessary OAuth and API URLs, update the OAuth client ID, and
also (if necessary) acquire an Access token for to get through the firewall to the
staging URLs.
#2377
32686e42Thanks @mrbbot! - FixReferenceErrorwhen usingwrangler dev --experimental-localin Node 16#2393
a6d24732Thanks @mrbbot! - Remove login requirement fromwrangler dev --experimental-local#2502
6b7ebc8dThanks @mrbbot! - Upgrademiniflareto2.11.0#2485
4c0e2309Thanks @GregBrimble! - fix: Pages Plugin routing when mounted at the root of a projectPreviously, there was a bug which meant that Plugins mounted at the root of a Pages project were not correctly matching incoming requests. This change fixes that bug so Plugins mounted at the root should now correctly work.
#2479
7b479b91Thanks @rozenmd! - fix: bump d1jsThis PR bumps d1js, adding the following functionality to the d1 alpha shim:
#2392
7785591cThanks @rozenmd! - fix: improvewrangler init --from-dashhelp text and error handling#2391
19525a4bThanks @mrbbot! - Always log when delegating to localwranglerinstall.When a global
wranglercommand is executed in a package directory withwranglerinstalled locally, the command is redirected to the localwranglerinstall.We now always log a message when this happens, so you know what's going on.
#2468
97282459Thanks @rozenmd! - BREAKING CHANGE: move experimental options under the experimental object for unstable_dev#2477
3bd1b676Thanks @rozenmd! - fix: update NO_D1_WARNING to make it clear how to turn it off#2495
e93063e9Thanks @petebacondarwin! - fix(d1): ensure that migrations support compound statementsThis fix updates the SQL statement splitting so that it does not split in the middle of compound statements.
Previously we were using a third party splitting library, but this needed fixing and was actually unnecessary for our purposes.
So a new splitter has been implemented and the library dependency removed.
Also the error handling in
d1 migrations applyhas been improved to handle a wider range of error types.Fixes 🐛 BUG: Incorrect SQL statement splitting #2463
#2400
08a0b22eThanks @mrbbot! - Cleanly exitwrangler dev --experimental-localwhen pressingx/q/CTRL-C#2374
ecba1edeThanks @rozenmd! - fix: make --from-dash error output clearerThis PR makes it clearer what --from-dash wants from you.
closes 🐛 BUG: --from-dash confusing #2373
closes 🚀 Feature Request: --from-dash script missing error #2375
#2377
32686e42Thanks @mrbbot! - RespectFORCE_COLOR=0environment variable to disable colored output when usingwrangler dev --local#2455
d9c1d273Thanks @rozenmd! - BREAKING CHANGE: refactor unstable_dev to use an experimental object, instead of a second options objectBefore, if you wanted to disable the experimental warning, you would run:
After this change, you'll need to do this instead:
@cloudflare/pages-shared@0.0.13
Patch Changes
6b7ebc8dThanks @mrbbot! - Upgrademiniflareto2.11.0