From 43a7a55ab1eb1bb8e9ba1e2eb21d565d89b656c0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 11 Oct 2023 15:24:51 +0000 Subject: [PATCH] Version Packages --- .changeset/c3-frameworks-update-4125.md | 5 ----- .changeset/dull-pans-happen.md | 9 --------- .changeset/five-panthers-crash.md | 5 ----- .changeset/green-days-bow.md | 5 ----- .changeset/serious-beans-hug.md | 11 ----------- .changeset/warm-queens-taste.md | 7 ------- .changeset/weak-trains-pretend.md | 5 ----- packages/create-cloudflare/CHANGELOG.md | 10 ++++++++++ packages/create-cloudflare/package.json | 2 +- packages/wrangler/CHANGELOG.md | 26 +++++++++++++++++++++++++ packages/wrangler/package.json | 2 +- 11 files changed, 38 insertions(+), 49 deletions(-) delete mode 100644 .changeset/c3-frameworks-update-4125.md delete mode 100644 .changeset/dull-pans-happen.md delete mode 100644 .changeset/five-panthers-crash.md delete mode 100644 .changeset/green-days-bow.md delete mode 100644 .changeset/serious-beans-hug.md delete mode 100644 .changeset/warm-queens-taste.md delete mode 100644 .changeset/weak-trains-pretend.md diff --git a/.changeset/c3-frameworks-update-4125.md b/.changeset/c3-frameworks-update-4125.md deleted file mode 100644 index 0a956f3767a9..000000000000 --- a/.changeset/c3-frameworks-update-4125.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"create-cloudflare": patch ---- - -C3: Bumped `create-qwik` from `1.2.12` to `1.2.13` diff --git a/.changeset/dull-pans-happen.md b/.changeset/dull-pans-happen.md deleted file mode 100644 index 68beeed47ee5..000000000000 --- a/.changeset/dull-pans-happen.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"wrangler": patch ---- - -Fixes large Pages projects failing to complete direct upload due to expiring JWTs - -For 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. diff --git a/.changeset/five-panthers-crash.md b/.changeset/five-panthers-crash.md deleted file mode 100644 index c44f6b73ba1c..000000000000 --- a/.changeset/five-panthers-crash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"create-cloudflare": patch ---- - -fix incorrect service example in worker template toml files diff --git a/.changeset/green-days-bow.md b/.changeset/green-days-bow.md deleted file mode 100644 index 092325950818..000000000000 --- a/.changeset/green-days-bow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"create-cloudflare": patch ---- - -Don't prompt the user to use git if `user.name` and `user.email` haven't been configured diff --git a/.changeset/serious-beans-hug.md b/.changeset/serious-beans-hug.md deleted file mode 100644 index 790f97e0e80f..000000000000 --- a/.changeset/serious-beans-hug.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"wrangler": minor ---- - -Support TailEvent messages in Tail sessions - -When tailing a tail worker, messages previously had a null event property. Following https://github.com/cloudflare/workerd/pull/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. diff --git a/.changeset/warm-queens-taste.md b/.changeset/warm-queens-taste.md deleted file mode 100644 index 3b727319dc02..000000000000 --- a/.changeset/warm-queens-taste.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"wrangler": minor ---- - -feature: Support Queue consumer events in tail - -So that it's less confusing when tailing a worker that consumes events from a Queue. diff --git a/.changeset/weak-trains-pretend.md b/.changeset/weak-trains-pretend.md deleted file mode 100644 index d16a0e2d74da..000000000000 --- a/.changeset/weak-trains-pretend.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wrangler": patch ---- - -Default new Hyperdrive configs for PostgreSQL databases to port 5432 if the port is not specified diff --git a/packages/create-cloudflare/CHANGELOG.md b/packages/create-cloudflare/CHANGELOG.md index 5506cc748b1e..528071c08703 100644 --- a/packages/create-cloudflare/CHANGELOG.md +++ b/packages/create-cloudflare/CHANGELOG.md @@ -1,5 +1,15 @@ # create-cloudflare +## 2.4.1 + +### Patch Changes + +- [#4125](https://github.com/cloudflare/workers-sdk/pull/4125) [`d0e8e380`](https://github.com/cloudflare/workers-sdk/commit/d0e8e38035b7d65f99834700426d95dd88d54085) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-qwik` from `1.2.12` to `1.2.13` + +* [#4152](https://github.com/cloudflare/workers-sdk/pull/4152) [`acf3b64b`](https://github.com/cloudflare/workers-sdk/commit/acf3b64b4757325ffb9298bfd5ff3cf0b87bcb19) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix incorrect service example in worker template toml files + +- [#4119](https://github.com/cloudflare/workers-sdk/pull/4119) [`64c3ec15`](https://github.com/cloudflare/workers-sdk/commit/64c3ec15f71271395982746b173ddb5c17a3de0b) Thanks [@jculvey](https://github.com/jculvey)! - Don't prompt the user to use git if `user.name` and `user.email` haven't been configured + ## 2.4.0 ### Minor Changes diff --git a/packages/create-cloudflare/package.json b/packages/create-cloudflare/package.json index c5f1ff872c66..ae3f3580b772 100644 --- a/packages/create-cloudflare/package.json +++ b/packages/create-cloudflare/package.json @@ -1,6 +1,6 @@ { "name": "create-cloudflare", - "version": "2.4.0", + "version": "2.4.1", "description": "A CLI for creating and deploying new applications to Cloudflare.", "keywords": [ "cloudflare", diff --git a/packages/wrangler/CHANGELOG.md b/packages/wrangler/CHANGELOG.md index caf886dd1840..b97854770e13 100644 --- a/packages/wrangler/CHANGELOG.md +++ b/packages/wrangler/CHANGELOG.md @@ -1,5 +1,31 @@ # wrangler +## 3.12.0 + +### Minor Changes + +- [#4071](https://github.com/cloudflare/workers-sdk/pull/4071) [`f880a009`](https://github.com/cloudflare/workers-sdk/commit/f880a009ad7c7ec26a85c51f577164522a307217) Thanks [@matthewdavidrodgers](https://github.com/matthewdavidrodgers)! - Support TailEvent messages in Tail sessions + + When tailing a tail worker, messages previously had a null event property. Following https://github.com/cloudflare/workerd/pull/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](https://github.com/cloudflare/workers-sdk/pull/2397) [`93833f04`](https://github.com/cloudflare/workers-sdk/commit/93833f0418443232bb29daf46559c8e1db754dde) Thanks [@a-robinson](https://github.com/a-robinson)! - feature: Support Queue consumer events in tail + + So that it's less confusing when tailing a worker that consumes events from a Queue. + +### Patch Changes + +- [#2687](https://github.com/cloudflare/workers-sdk/pull/2687) [`3077016f`](https://github.com/cloudflare/workers-sdk/commit/3077016f6112754585c05b7952e456be44b9d8cd) Thanks [@jrf0110](https://github.com/jrf0110)! - Fixes large Pages projects failing to complete direct upload due to expiring JWTs + + For 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](https://github.com/cloudflare/workers-sdk/pull/4069) [`f4d28918`](https://github.com/cloudflare/workers-sdk/commit/f4d28918c566c72782db9dadae12b95a376d082c) Thanks [@a-robinson](https://github.com/a-robinson)! - Default new Hyperdrive configs for PostgreSQL databases to port 5432 if the port is not specified + ## 3.11.0 ### Minor Changes diff --git a/packages/wrangler/package.json b/packages/wrangler/package.json index b7a3ba6015f8..01d1b76cf477 100644 --- a/packages/wrangler/package.json +++ b/packages/wrangler/package.json @@ -1,6 +1,6 @@ { "name": "wrangler", - "version": "3.11.0", + "version": "3.12.0", "description": "Command-line interface for all things Cloudflare Workers", "keywords": [ "wrangler",