-
Notifications
You must be signed in to change notification settings - Fork 779
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version Packages #3416
Merged
Merged
Version Packages #3416
Conversation
This file contains 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
A wrangler prerelease is available for testing. You can install this latest build in your project with: npm install --save-dev https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/runs/5326483642/npm-package-wrangler-3416 You can reference the automatically updated head of this PR with: npm install --save-dev https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/prs/3416/npm-package-wrangler-3416 Or you can use npx https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/runs/5326483642/npm-package-wrangler-3416 dev path/to/script.js Additional artifacts:npm install https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/runs/5326483642/npm-package-cloudflare-pages-shared-3416 Note that these links will no longer work once the GitHub Actions artifact expires. |
aa2c336
to
da8e0c7
Compare
Codecov Report
@@ Coverage Diff @@
## main #3416 +/- ##
==========================================
+ Coverage 75.08% 75.10% +0.02%
==========================================
Files 183 183
Lines 11084 11084
Branches 2918 2918
==========================================
+ Hits 8322 8325 +3
+ Misses 2762 2759 -3 |
da8e0c7
to
1e79a9d
Compare
d361504
to
c0bbc8c
Compare
1a0b39a
to
0b41b5f
Compare
lrapoport-cf
approved these changes
Jun 20, 2023
GregBrimble
approved these changes
Jun 20, 2023
233a93a
to
10033d3
Compare
10033d3
to
6d3fc0f
Compare
lrapoport-cf
pushed a commit
that referenced
this pull request
Aug 11, 2023
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This was referenced Sep 1, 2023
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
[email protected]
Patch Changes
#3345
42f7eb81
Thanks @jculvey! - Usepnpm dlx
instead ofpnpx
for versions of pnpm that support it#3435
23be8025
Thanks @sdnts! - Updated wrangler.toml for Workers projects generated by create-cloudflare#3496
91135e02
Thanks @petebacondarwin! - fix: ensure that default project name can be usedIf you hit enter when asked for the name of the project, you expect it
to use the default value. But the project name validation was then failing
as it was receiving undefined for the value of the input rather than the
default value.
Now the validator will be passed the default if no value was provided.
#3474
a72dc0a1
Thanks @elithrar! - Add new Queues and Scheduled (Cron Trigger) Worker templates.#3446
ca0bd174
Thanks @admah! - refactor: renamesimple
template tohello-world
in create-cloudflare packageThis change describes the "hello-world" template more accurately.
Also, new e2e tests have been added to validate that Workers templates are created correctly.
#3359
5eef992f
Thanks @RamIdeas! -wrangler init ... -y
now delegates to C3 without prompts (respects the-y
flag)@cloudflare/[email protected]
Patch Changes
#3454
a2194043
Thanks @mrbbot! - chore: upgrademiniflare
to3.0.1
This version ensures root CA certificates are trusted on Windows.
It also loads extra certificates from the
NODE_EXTRA_CA_CERTS
environment variable,allowing
wrangler dev
to be used with Cloudflare WARP enabled.[email protected]
Patch Changes
#3498
fddffdf0
Thanks @GregBrimble! - fix: Preventwrangler pages dev
from serving asset files outside of the build output directory#3431
68ba49a8
Thanks @Cherry! - fix: allow context.data to be overriden in Pages Functions#3414
6b1870ad
Thanks @rozenmd! - fix: in D1, lift error.cause into the error messagePrior to this PR, folks had to console.log the
error.cause
property to understand why their D1 operations were failing. With this PR,error.cause
will continue to work, but we'll also lift the cause into the error message.#3483
a9349a89
Thanks @petebacondarwin! - fix: ensure that the script name is passed through to C3 fromwrangler init
#3359
5eef992f
Thanks @RamIdeas! -wrangler init ... -y
now delegates to C3 without prompts (respects the-y
flag)#3434
4beac418
Thanks @rozenmd! - fix: add the number of read queries and write queries in the last 24 hours to thed1 info
command#3454
a2194043
Thanks @mrbbot! - chore: upgrademiniflare
to3.0.1
This version ensures root CA certificates are trusted on Windows.
It also loads extra certificates from the
NODE_EXTRA_CA_CERTS
environment variable,allowing
wrangler dev
to be used with Cloudflare WARP enabled.#3485
e8df68ee
Thanks @GregBrimble! - feat: Allow setting a D1 database ID when usingwrangler pages dev
by providing an optional=<ID>
suffix to the argument like--d1 BINDING_NAME=database-id
[email protected]
Patch Changes
#3448
acc9881b
Thanks @1000hz! - fix: Allowed arbitrary headers on cross-origin requests to Raw HTTP preview.Requests sent to the rawhttp preview endpoint with arbitrary headers were being blocked due to same-origin policy.
We now include any request headers as part of
Access-Control-Allow-Headers
in the preflight response.