-
Notifications
You must be signed in to change notification settings - Fork 735
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 #4126
Version Packages #4126
Conversation
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/6484668964/npm-package-wrangler-4126 You can reference the automatically updated head of this PR with: npm install --save-dev https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/prs/6484668964/npm-package-wrangler-4126 Or you can use npx https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/runs/6484668964/npm-package-wrangler-4126 dev path/to/script.js Additional artifacts:npm install https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/runs/6484668964/npm-package-cloudflare-pages-shared-4126 Note that these links will no longer work once the GitHub Actions artifact expires.
| Please ensure constraints are pinned, and |
b7d2004
to
9d61773
Compare
Codecov Report
@@ Coverage Diff @@
## main #4126 +/- ##
==========================================
+ Coverage 75.38% 75.41% +0.03%
==========================================
Files 223 223
Lines 12214 12214
Branches 3158 3158
==========================================
+ Hits 9207 9211 +4
+ Misses 3007 3003 -4 |
6b66a75
to
2d6fb78
Compare
3094d64
to
7eab2af
Compare
7eab2af
to
43a7a55
Compare
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@3.12.0
Minor Changes
#4071
f880a009
Thanks @matthewdavidrodgers! - Support TailEvent messages in Tail sessionsWhen tailing a tail worker, messages previously had a null event property. Following Add TraceEventInfo for TraceItem workerd#1248, these events have a valid event, specifying which scripts produced events that caused your tail worker to run.
As part of rolling this out, we're filtering out tail events in the internal tail infrastructure, so we control when these new messages are forward to tail sessions, and can merge this freely.
One idiosyncracy to note, however, is that tail workers always report an "OK" status, even if they run out of memory or throw. That is being tracked and worked on separately.
#2397
93833f04
Thanks @a-robinson! - feature: Support Queue consumer events in tailSo that it's less confusing when tailing a worker that consumes events from a Queue.
Patch Changes
#2687
3077016f
Thanks @jrf0110! - Fixes large Pages projects failing to complete direct upload due to expiring JWTsFor projects which are slow to upload - either because of client bandwidth or large numbers of files and sizes - It's possible for the JWT to expire multiple times. Since our network request concurrency is set to 3, it's possible that each time the JWT expires we get 3 failed attempts. This can quickly exhaust our upload attempt count and cause the entire process to bail.
This change makes it such that jwt refreshes do not count as a failed upload attempt.
#4069
f4d28918
Thanks @a-robinson! - Default new Hyperdrive configs for PostgreSQL databases to port 5432 if the port is not specifiedcreate-cloudflare@2.4.1
Patch Changes
#4125
d0e8e380
Thanks @dependabot! - C3: Bumpedcreate-qwik
from1.2.12
to1.2.13
#4152
acf3b64b
Thanks @dario-piotrowicz! - fix incorrect service example in worker template toml files#4119
64c3ec15
Thanks @jculvey! - Don't prompt the user to use git ifuser.name
anduser.email
haven't been configured