diff --git a/.changeset/mighty-hats-sleep.md b/.changeset/mighty-hats-sleep.md deleted file mode 100644 index 048197a6accc..000000000000 --- a/.changeset/mighty-hats-sleep.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"wrangler": patch ---- - -fix: log proper response status codes in `dev` - -During `dev` we log the method/url/statuscode for every req+res. This fix logs the correct details for every request. - -Fixes https://github.com/cloudflare/wrangler2/issues/931 diff --git a/.changeset/stupid-wombats-know.md b/.changeset/stupid-wombats-know.md deleted file mode 100644 index 642b66085f82..000000000000 --- a/.changeset/stupid-wombats-know.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wrangler": patch ---- - -fix: Default to creating a new project when no existing ones are available for 'wrangler pages publish' diff --git a/.changeset/weak-mangos-admire.md b/.changeset/weak-mangos-admire.md deleted file mode 100644 index c27f8bf6362c..000000000000 --- a/.changeset/weak-mangos-admire.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wrangler": patch ---- - -fix: Suppress beta warning when operating in Pages' CI environment diff --git a/.changeset/wise-lies-visit.md b/.changeset/wise-lies-visit.md deleted file mode 100644 index 6351bcddfe7e..000000000000 --- a/.changeset/wise-lies-visit.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -"wrangler": patch ---- - -fix: support Windows line-endings in TOML files - -The TOML parser that Wrangler uses crashes if there is a Windows line-ending in a comment. -See https://github.com/iarna/iarna-toml/issues/33. - -According to the TOML spec, we should be able to normalize line-endings as we see fit. -See https://toml.io/en/v1.0.0#:~:text=normalize%20newline%20to%20whatever%20makes%20sense. - -This change normalizes line-endings of TOML strings before parsing to avoid hitting this bug. - -Fixes https://github.com/cloudflare/wrangler2/issues/915 diff --git a/package-lock.json b/package-lock.json index 6c9a5a96f0a3..bfcb1c43310f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -20302,7 +20302,7 @@ } }, "packages/wrangler": { - "version": "2.0.0", + "version": "2.0.1", "license": "MIT OR Apache-2.0", "dependencies": { "@esbuild-plugins/node-globals-polyfill": "^0.1.1", diff --git a/packages/wrangler/CHANGELOG.md b/packages/wrangler/CHANGELOG.md index 6ef9c1103804..bcf371d2f9d1 100644 --- a/packages/wrangler/CHANGELOG.md +++ b/packages/wrangler/CHANGELOG.md @@ -1,5 +1,31 @@ # wrangler +## 2.0.1 + +### Patch Changes + +- [#932](https://github.com/cloudflare/wrangler2/pull/932) [`e95e5a0`](https://github.com/cloudflare/wrangler2/commit/e95e5a0a4e6848a747cba067ad7c095d672f0f55) Thanks [@threepointone](https://github.com/threepointone)! - fix: log proper response status codes in `dev` + + During `dev` we log the method/url/statuscode for every req+res. This fix logs the correct details for every request. + + Fixes https://github.com/cloudflare/wrangler2/issues/931 + +* [#930](https://github.com/cloudflare/wrangler2/pull/930) [`bc28bea`](https://github.com/cloudflare/wrangler2/commit/bc28bea376260abb6fed996698436fb11e7840fc) Thanks [@GregBrimble](https://github.com/GregBrimble)! - fix: Default to creating a new project when no existing ones are available for 'wrangler pages publish' + +- [#934](https://github.com/cloudflare/wrangler2/pull/934) [`692ddc4`](https://github.com/cloudflare/wrangler2/commit/692ddc4f1a3770758a8199bbdcd0abee108c3a2c) Thanks [@GregBrimble](https://github.com/GregBrimble)! - fix: Suppress beta warning when operating in Pages' CI environment + +* [#936](https://github.com/cloudflare/wrangler2/pull/936) [`a0e0b26`](https://github.com/cloudflare/wrangler2/commit/a0e0b2696f498e0d7913e8ffd3db5abd025e7085) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: support Windows line-endings in TOML files + + The TOML parser that Wrangler uses crashes if there is a Windows line-ending in a comment. + See https://github.com/iarna/iarna-toml/issues/33. + + According to the TOML spec, we should be able to normalize line-endings as we see fit. + See https://toml.io/en/v1.0.0#:~:text=normalize%20newline%20to%20whatever%20makes%20sense. + + This change normalizes line-endings of TOML strings before parsing to avoid hitting this bug. + + Fixes https://github.com/cloudflare/wrangler2/issues/915 + ## 2.0.0 ### Major Changes diff --git a/packages/wrangler/package.json b/packages/wrangler/package.json index a8a753533751..828dc3767811 100644 --- a/packages/wrangler/package.json +++ b/packages/wrangler/package.json @@ -1,6 +1,6 @@ { "name": "wrangler", - "version": "2.0.0", + "version": "2.0.1", "author": "wrangler@cloudflare.com", "description": "Command-line interface for all things Cloudflare Workers", "bin": {