diff --git a/.changeset/clever-cooks-smell.md b/.changeset/clever-cooks-smell.md deleted file mode 100644 index 9a77ed55c742..000000000000 --- a/.changeset/clever-cooks-smell.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -"create-cloudflare": patch ---- - -adjusted arguments passing so that arguments following an extra `--` are -passed to the underlying cli (if any) - -For example: - -``` -$ npm create cloudflare -- --framework=X -- -a -b -``` - -now will run the framework X's cli with the `-a` and `-b` arguments -(such arguments will be completely ignored by C3) diff --git a/.changeset/dirty-roses-appear.md b/.changeset/dirty-roses-appear.md deleted file mode 100644 index 5040ece0bfcb..000000000000 --- a/.changeset/dirty-roses-appear.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wrangler": minor ---- - -Warn user when the last deployment was via the API diff --git a/.changeset/dull-pets-search.md b/.changeset/dull-pets-search.md deleted file mode 100644 index 910da96d4651..000000000000 --- a/.changeset/dull-pets-search.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wrangler": patch ---- - -feat: Add internal `wrangler pages project validate [directory]` command which validates an asset directory diff --git a/.changeset/hip-rules-cross.md b/.changeset/hip-rules-cross.md deleted file mode 100644 index d34c47425a85..000000000000 --- a/.changeset/hip-rules-cross.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"wrangler": patch ---- - -fix: Retry deployment errors in wrangler pages publish - -This will improve reliability when deploying to Cloudflare Pages diff --git a/.changeset/nasty-dolphins-prove.md b/.changeset/nasty-dolphins-prove.md deleted file mode 100644 index 1653772ef09e..000000000000 --- a/.changeset/nasty-dolphins-prove.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"create-cloudflare": minor ---- - -add final commit when generating Pages projects - -before after the user would have completed the creation of a Pages project -they would find the Cloudflare added/modified files uncommitted, instead of -leaving these uncommitted this change adds an extra commit (on top of the -framework specific) which also contains some useful information about the -project diff --git a/.changeset/nervous-insects-happen.md b/.changeset/nervous-insects-happen.md deleted file mode 100644 index fac7ca21f310..000000000000 --- a/.changeset/nervous-insects-happen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"create-cloudflare": minor ---- - -C3: Checks for a newer version of create-cloudflare and uses it if available. This behavior can be suppressed with the --no-auto-update flag. diff --git a/.changeset/two-suns-heal.md b/.changeset/two-suns-heal.md deleted file mode 100644 index 1ded3157942a..000000000000 --- a/.changeset/two-suns-heal.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"create-cloudflare": patch ---- - -update the frameworks' cli versions used in C3 - -- `@angular/cli` from 16.1.x to 16.2.0 -- `create-next-app` from 13.4.2 to 13.4.19 -- `create-remix` from 1.16.0 to 1.19.3 -- `gatsby` from 5.10.0 to 5.11.0 -- `nuxi` from 3.4.2 to 3.6.5 diff --git a/package-lock.json b/package-lock.json index ef4a14f24ca1..a895828b3acb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -30316,7 +30316,7 @@ } }, "packages/create-cloudflare": { - "version": "2.1.1", + "version": "2.2.0", "license": "MIT OR Apache-2.0", "bin": { "create-cloudflare": "dist/cli.js" @@ -32162,7 +32162,7 @@ "dev": true }, "packages/wrangler": { - "version": "3.5.1", + "version": "3.6.0", "license": "MIT OR Apache-2.0", "dependencies": { "@cloudflare/kv-asset-handler": "^0.2.0", diff --git a/packages/create-cloudflare/CHANGELOG.md b/packages/create-cloudflare/CHANGELOG.md index 55e6b51c24ce..ae3e9bf4836d 100644 --- a/packages/create-cloudflare/CHANGELOG.md +++ b/packages/create-cloudflare/CHANGELOG.md @@ -1,5 +1,41 @@ # create-cloudflare +## 2.2.0 + +### Minor Changes + +- [#3776](https://github.com/cloudflare/workers-sdk/pull/3776) [`83e526b3`](https://github.com/cloudflare/workers-sdk/commit/83e526b3c9ea53b8cfbba5ab222613bf21c1db79) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - add final commit when generating Pages projects + + before after the user would have completed the creation of a Pages project + they would find the Cloudflare added/modified files uncommitted, instead of + leaving these uncommitted this change adds an extra commit (on top of the + framework specific) which also contains some useful information about the + project + +* [#3803](https://github.com/cloudflare/workers-sdk/pull/3803) [`9156994e`](https://github.com/cloudflare/workers-sdk/commit/9156994e1b1dccccc0dde8b6eba01a5a241f9511) Thanks [@jculvey](https://github.com/jculvey)! - C3: Checks for a newer version of create-cloudflare and uses it if available. This behavior can be suppressed with the --no-auto-update flag. + +### Patch Changes + +- [#3807](https://github.com/cloudflare/workers-sdk/pull/3807) [`fac199ba`](https://github.com/cloudflare/workers-sdk/commit/fac199ba0c3bee758ac13fa8e6133c19f4af845d) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - adjusted arguments passing so that arguments following an extra `--` are + passed to the underlying cli (if any) + + For example: + + ``` + $ npm create cloudflare -- --framework=X -- -a -b + ``` + + now will run the framework X's cli with the `-a` and `-b` arguments + (such arguments will be completely ignored by C3) + +* [#3822](https://github.com/cloudflare/workers-sdk/pull/3822) [`3db34519`](https://github.com/cloudflare/workers-sdk/commit/3db3451988988c0af82023cc53975bbaef14ac8a) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - update the frameworks' cli versions used in C3 + + - `@angular/cli` from 16.1.x to 16.2.0 + - `create-next-app` from 13.4.2 to 13.4.19 + - `create-remix` from 1.16.0 to 1.19.3 + - `gatsby` from 5.10.0 to 5.11.0 + - `nuxi` from 3.4.2 to 3.6.5 + ## 2.1.1 ### Patch Changes diff --git a/packages/create-cloudflare/package.json b/packages/create-cloudflare/package.json index f5061ed3f1bb..0b77b0b121fe 100644 --- a/packages/create-cloudflare/package.json +++ b/packages/create-cloudflare/package.json @@ -1,6 +1,6 @@ { "name": "create-cloudflare", - "version": "2.1.1", + "version": "2.2.0", "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 080e16ef821e..ee1e919fd462 100644 --- a/packages/wrangler/CHANGELOG.md +++ b/packages/wrangler/CHANGELOG.md @@ -1,5 +1,19 @@ # wrangler +## 3.6.0 + +### Minor Changes + +- [#3727](https://github.com/cloudflare/workers-sdk/pull/3727) [`a5e7c0be`](https://github.com/cloudflare/workers-sdk/commit/a5e7c0be0f1b095f9af3d2b55782f9d8b2a6bb09) Thanks [@echen67](https://github.com/echen67)! - Warn user when the last deployment was via the API + +### Patch Changes + +- [#3762](https://github.com/cloudflare/workers-sdk/pull/3762) [`18dc7b54`](https://github.com/cloudflare/workers-sdk/commit/18dc7b5428ffb5c68dc5ebbbaf506d8fc2fe1f48) Thanks [@GregBrimble](https://github.com/GregBrimble)! - feat: Add internal `wrangler pages project validate [directory]` command which validates an asset directory + +* [#3758](https://github.com/cloudflare/workers-sdk/pull/3758) [`0adccc71`](https://github.com/cloudflare/workers-sdk/commit/0adccc71789efe1b42b6d3de55f6d6d7e50fda64) Thanks [@jahands](https://github.com/jahands)! - fix: Retry deployment errors in wrangler pages publish + + This will improve reliability when deploying to Cloudflare Pages + ## 3.5.1 ### Patch Changes diff --git a/packages/wrangler/package.json b/packages/wrangler/package.json index 569dfcdfc20b..0b3ceac83536 100644 --- a/packages/wrangler/package.json +++ b/packages/wrangler/package.json @@ -1,6 +1,6 @@ { "name": "wrangler", - "version": "3.5.1", + "version": "3.6.0", "description": "Command-line interface for all things Cloudflare Workers", "keywords": [ "wrangler",