From a333df3c9ec7775d470fe5a884b4741aeddacb23 Mon Sep 17 00:00:00 2001 From: Jacob M-G Evans Date: Thu, 10 Aug 2023 15:30:29 -0500 Subject: [PATCH 1/2] Update documentation to include new versioning syntax support --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 66319f05..00ae3ae0 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,12 @@ Easy-to-use GitHub Action to use [Wrangler](https://developers.cloudflare.com/workers/cli-wrangler/). Makes deploying Workers, Pages or modifying R2 easy to do. +## Big Changes in v3 + - Wrangler v1 is no longer supported. - Global API key & Email Auth no longer supported +- Wrangler Action supports Action version syntax, i.e. `uses: cloudflare/wrangler-action@v3` or `uses: cloudflare/wrangler-action@v3.x` and will continue + to support `uses: cloudflare/wrangler-action@3.x.x` syntax. [Refer to Changelog for more information](CHANGELOG.md). From 3c728e1d5d1f9a6d737a2e5a594c7a31d0f80b9c Mon Sep 17 00:00:00 2001 From: Jacob M-G Evans <27247160+JacobMGEvans@users.noreply.github.com> Date: Thu, 10 Aug 2023 15:45:08 -0500 Subject: [PATCH 2/2] Update README.md Co-authored-by: lrapoport-cf <107272160+lrapoport-cf@users.noreply.github.com> --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 00ae3ae0..8e915884 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,7 @@ Easy-to-use GitHub Action to use [Wrangler](https://developers.cloudflare.com/wo - Wrangler v1 is no longer supported. - Global API key & Email Auth no longer supported -- Wrangler Action supports Action version syntax, i.e. `uses: cloudflare/wrangler-action@v3` or `uses: cloudflare/wrangler-action@v3.x` and will continue - to support `uses: cloudflare/wrangler-action@3.x.x` syntax. +- Action version syntax is newly supported. This means e.g. `uses: cloudflare/wrangler-action@v3` and `uses: cloudflare/wrangler-action@v3.x` are both now valid syntax. Previously supported syntax e.g. `uses: cloudflare/wrangler-action@3.x.x` continues to be supported. [Refer to Changelog for more information](CHANGELOG.md).