diff --git a/.changeset/itchy-buses-grow.md b/.changeset/itchy-buses-grow.md new file mode 100644 index 0000000..8bd1eca --- /dev/null +++ b/.changeset/itchy-buses-grow.md @@ -0,0 +1,10 @@ +--- +"wrangler-action": patch +--- + +Added more error logging when a command fails to execute +Previously, we prevented any error logs from propagating too far to prevent leaking of any potentially sensitive information. However, this made it difficult for developers to debug their code. + +In this release, we have updated our error handling to allow for more error messaging from pre/post and custom commands. We still discourage the use of these commands for secrets or other sensitive information, but we believe this change will make it easier for developers to debug their code. + +Relates to #137 diff --git a/.changeset/stale-beers-promise.md b/.changeset/stale-beers-promise.md new file mode 100644 index 0000000..829840f --- /dev/null +++ b/.changeset/stale-beers-promise.md @@ -0,0 +1,5 @@ +--- +"wrangler-action": patch +--- + +Adding Changesets diff --git a/CHANGELOG.md b/CHANGELOG.md index 2248fcd..486f48d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,18 +1,5 @@ # Changelog -## 3.0.2 - -### Patch Changes - -- [#145](https://github.com/cloudflare/wrangler-action/pull/145) [`554eea1`](https://github.com/cloudflare/wrangler-action/commit/554eea134a56c1c05f54c44fa53c6432fb6405f6) Thanks [@JacobMGEvans](https://github.com/JacobMGEvans)! - Added more error logging when a command fails to execute - Previously, we prevented any error logs from propagating too far to prevent leaking of any potentially sensitive information. However, this made it difficult for developers to debug their code. - - In this release, we have updated our error handling to allow for more error messaging from pre/post and custom commands. We still discourage the use of these commands for secrets or other sensitive information, but we believe this change will make it easier for developers to debug their code. - - Relates to #137 - -- [#145](https://github.com/cloudflare/wrangler-action/pull/145) [`554eea1`](https://github.com/cloudflare/wrangler-action/commit/554eea134a56c1c05f54c44fa53c6432fb6405f6) Thanks [@JacobMGEvans](https://github.com/JacobMGEvans)! - Adding Changesets - - [Version 3.0.0](#version-300) - [Version 2.0.0](#version-200) diff --git a/package.json b/package.json index 9c85715..c3f886a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wrangler-action", - "version": "3.0.2", + "version": "3.0.1", "description": "GitHub Action to use [Wrangler](https://developers.cloudflare.com/workers/cli-wrangler/).", "author": "wrangler@cloudflare.com", "license": "MIT OR Apache-2.0",