From 0c989237eca39488294f71d4f7647a26b9f728f2 Mon Sep 17 00:00:00 2001 From: "workers-devprod@cloudflare.com" <116369605+workers-devprod@users.noreply.github.com> Date: Fri, 6 Sep 2024 09:05:57 +0100 Subject: [PATCH] Version Packages (#6630) Co-authored-by: github-actions[bot] --- .changeset/friendly-brooms-brush.md | 7 ----- .changeset/funny-comics-lick.md | 13 -------- .changeset/modern-scissors-relax.md | 18 ----------- .changeset/poor-books-attack.md | 5 --- .changeset/real-cooks-argue.md | 5 --- packages/vitest-pool-workers/CHANGELOG.md | 9 ++++++ packages/vitest-pool-workers/package.json | 2 +- packages/wrangler/CHANGELOG.md | 37 +++++++++++++++++++++++ packages/wrangler/package.json | 2 +- pnpm-lock.yaml | 16 +++++----- 10 files changed, 56 insertions(+), 58 deletions(-) delete mode 100644 .changeset/friendly-brooms-brush.md delete mode 100644 .changeset/funny-comics-lick.md delete mode 100644 .changeset/modern-scissors-relax.md delete mode 100644 .changeset/poor-books-attack.md delete mode 100644 .changeset/real-cooks-argue.md diff --git a/.changeset/friendly-brooms-brush.md b/.changeset/friendly-brooms-brush.md deleted file mode 100644 index 40f852202d44..000000000000 --- a/.changeset/friendly-brooms-brush.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"wrangler": patch ---- - -chore: avoid potential double-install of create-cloudflare - -When `wrangler init` delegates to C3, it did so via `npm create cloudflare@2.5.0`. C3's v2.5.0 was the first to include auto-update support to avoid `npx`'s potentially stale cache. But this also guaranteed a double install for users who do not have 2.5.0 cached. Now, wrangler delegates via `npm create cloudflare@^2.5.0` which should use the latest version cached on the user's system or install and use the latest v2.x.x. diff --git a/.changeset/funny-comics-lick.md b/.changeset/funny-comics-lick.md deleted file mode 100644 index adbd350be530..000000000000 --- a/.changeset/funny-comics-lick.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"wrangler": minor ---- - -feature: log version preview url when previews exist - -The version upload API returns a field indicating whether -a preview exists for that version. If a preview exists and -workers.dev is enabled, wrangler will now log the full -URL on version upload. - -This does not impact wrangler deploy, which only prints the -workers.dev route of the latest deployment. diff --git a/.changeset/modern-scissors-relax.md b/.changeset/modern-scissors-relax.md deleted file mode 100644 index f3e9168b258e..000000000000 --- a/.changeset/modern-scissors-relax.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -"wrangler": patch ---- - -chore: fix version upload log order - -Previously deploy prints: -upload timings -deploy timings -current version id - -while version upload prints: -worker version id -upload timings - -This change makes version upload more similar to deploy by printing -version id after upload, which also makes more sense, as version ID can -only be known after upload has finished. diff --git a/.changeset/poor-books-attack.md b/.changeset/poor-books-attack.md deleted file mode 100644 index c032cfd4e55b..000000000000 --- a/.changeset/poor-books-attack.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wrangler": minor ---- - -feature: add RateLimit type generation to the ratelimit unsafe binding. diff --git a/.changeset/real-cooks-argue.md b/.changeset/real-cooks-argue.md deleted file mode 100644 index 4b6260ba1f45..000000000000 --- a/.changeset/real-cooks-argue.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@cloudflare/vitest-pool-workers": patch ---- - -Ensures console methods are bound to their instance in Vitest Pool Worker tests diff --git a/packages/vitest-pool-workers/CHANGELOG.md b/packages/vitest-pool-workers/CHANGELOG.md index 82fac0a6903e..1f31ca37817e 100644 --- a/packages/vitest-pool-workers/CHANGELOG.md +++ b/packages/vitest-pool-workers/CHANGELOG.md @@ -1,5 +1,14 @@ # @cloudflare/vitest-pool-workers +## 0.4.29 + +### Patch Changes + +- [#6633](https://github.com/cloudflare/workers-sdk/pull/6633) [`1a4b4ba`](https://github.com/cloudflare/workers-sdk/commit/1a4b4ba406d7caf72f8ce06fc4d9c3dfdaacbb53) Thanks [@andyjessop](https://github.com/andyjessop)! - Ensures console methods are bound to their instance in Vitest Pool Worker tests + +- Updated dependencies [[`21a09e0`](https://github.com/cloudflare/workers-sdk/commit/21a09e06473e28722c3fe73dee9cd49b41807be3), [`a197460`](https://github.com/cloudflare/workers-sdk/commit/a197460f47db47279f2c5536269cd0de2b543576), [`a197460`](https://github.com/cloudflare/workers-sdk/commit/a197460f47db47279f2c5536269cd0de2b543576), [`8d1d464`](https://github.com/cloudflare/workers-sdk/commit/8d1d464f2b549dc7d7020fd45f025cd7c8671ce9)]: + - wrangler@3.75.0 + ## 0.4.28 ### Patch Changes diff --git a/packages/vitest-pool-workers/package.json b/packages/vitest-pool-workers/package.json index 3cbdeee56ff9..0b18f9e5dfc0 100644 --- a/packages/vitest-pool-workers/package.json +++ b/packages/vitest-pool-workers/package.json @@ -1,6 +1,6 @@ { "name": "@cloudflare/vitest-pool-workers", - "version": "0.4.28", + "version": "0.4.29", "description": "Workers Vitest integration for writing Vitest unit and integration tests that run inside the Workers runtime", "keywords": [ "cloudflare", diff --git a/packages/wrangler/CHANGELOG.md b/packages/wrangler/CHANGELOG.md index e70abe5bf5e0..5fb9d6e87aab 100644 --- a/packages/wrangler/CHANGELOG.md +++ b/packages/wrangler/CHANGELOG.md @@ -1,5 +1,42 @@ # wrangler +## 3.75.0 + +### Minor Changes + +- [#6603](https://github.com/cloudflare/workers-sdk/pull/6603) [`a197460`](https://github.com/cloudflare/workers-sdk/commit/a197460f47db47279f2c5536269cd0de2b543576) Thanks [@taylorlee](https://github.com/taylorlee)! - feature: log version preview url when previews exist + + The version upload API returns a field indicating whether + a preview exists for that version. If a preview exists and + workers.dev is enabled, wrangler will now log the full + URL on version upload. + + This does not impact wrangler deploy, which only prints the + workers.dev route of the latest deployment. + +- [#6550](https://github.com/cloudflare/workers-sdk/pull/6550) [`8d1d464`](https://github.com/cloudflare/workers-sdk/commit/8d1d464f2b549dc7d7020fd45f025cd7c8671ce9) Thanks [@Pedr0Rocha](https://github.com/Pedr0Rocha)! - feature: add RateLimit type generation to the ratelimit unsafe binding. + +### Patch Changes + +- [#6615](https://github.com/cloudflare/workers-sdk/pull/6615) [`21a09e0`](https://github.com/cloudflare/workers-sdk/commit/21a09e06473e28722c3fe73dee9cd49b41807be3) Thanks [@RamIdeas](https://github.com/RamIdeas)! - chore: avoid potential double-install of create-cloudflare + + When `wrangler init` delegates to C3, it did so via `npm create cloudflare@2.5.0`. C3's v2.5.0 was the first to include auto-update support to avoid `npx`'s potentially stale cache. But this also guaranteed a double install for users who do not have 2.5.0 cached. Now, wrangler delegates via `npm create cloudflare@^2.5.0` which should use the latest version cached on the user's system or install and use the latest v2.x.x. + +- [#6603](https://github.com/cloudflare/workers-sdk/pull/6603) [`a197460`](https://github.com/cloudflare/workers-sdk/commit/a197460f47db47279f2c5536269cd0de2b543576) Thanks [@taylorlee](https://github.com/taylorlee)! - chore: fix version upload log order + + Previously deploy prints: + upload timings + deploy timings + current version id + + while version upload prints: + worker version id + upload timings + + This change makes version upload more similar to deploy by printing + version id after upload, which also makes more sense, as version ID can + only be known after upload has finished. + ## 3.74.0 ### Minor Changes diff --git a/packages/wrangler/package.json b/packages/wrangler/package.json index 3ce6f0dbe2c9..443abdf11fa9 100644 --- a/packages/wrangler/package.json +++ b/packages/wrangler/package.json @@ -1,6 +1,6 @@ { "name": "wrangler", - "version": "3.74.0", + "version": "3.75.0", "description": "Command-line interface for all things Cloudflare Workers", "keywords": [ "wrangler", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 45eb0209039f..46a8e2180f37 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -921,7 +921,7 @@ importers: version: 8.49.0 eslint-config-turbo: specifier: latest - version: 2.1.0(eslint@8.49.0) + version: 2.1.1(eslint@8.49.0) eslint-plugin-import: specifier: 2.26.x version: 2.26.0(@typescript-eslint/parser@6.10.0(eslint@8.49.0)(typescript@5.5.4))(eslint@8.49.0) @@ -5166,8 +5166,8 @@ packages: peerDependencies: eslint: '>=7.0.0' - eslint-config-turbo@2.1.0: - resolution: {integrity: sha512-3SeE2OCWnkA/84adGJXABm++966LNGxRdXtXKBcplJdIe4PmERkov1z6Kzp2PrPKT13wGu/bwoLV5h1rm7v9ug==} + eslint-config-turbo@2.1.1: + resolution: {integrity: sha512-JJF8SZErmgKCGkt124WUmTt0sQ5YLvPo2YxDsfzn9avGJC7/BQIa+3FZoDb3zeYYsZx91pZ6htQAJaKK8NQQAg==} peerDependencies: eslint: '>6.6.0' @@ -5241,8 +5241,8 @@ packages: peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - eslint-plugin-turbo@2.1.0: - resolution: {integrity: sha512-+CWVY29y7Qa+gvrKSzP+TOYrHAlNLCh/97K5VtDdnpH54h/JFmnd3U0aSG6WANe0HgAK8NHQfeWFDdRzfDqbKA==} + eslint-plugin-turbo@2.1.1: + resolution: {integrity: sha512-E/34kdQd0n3RP18+e0DSV0f3YTSCOojUh1p4X0Xrho2PBYmJ3umSnNo9FhkZt6UDACl+nBQcYTFkRHMz76lJdw==} peerDependencies: eslint: '>6.6.0' @@ -12818,10 +12818,10 @@ snapshots: dependencies: eslint: 8.57.0 - eslint-config-turbo@2.1.0(eslint@8.49.0): + eslint-config-turbo@2.1.1(eslint@8.49.0): dependencies: eslint: 8.49.0 - eslint-plugin-turbo: 2.1.0(eslint@8.49.0) + eslint-plugin-turbo: 2.1.1(eslint@8.49.0) eslint-import-resolver-node@0.3.7: dependencies: @@ -12938,7 +12938,7 @@ snapshots: semver: 6.3.1 string.prototype.matchall: 4.0.8 - eslint-plugin-turbo@2.1.0(eslint@8.49.0): + eslint-plugin-turbo@2.1.1(eslint@8.49.0): dependencies: dotenv: 16.0.3 eslint: 8.49.0