From 1d28a051a65de3a9ed28aff311c35df6700860fc Mon Sep 17 00:00:00 2001 From: Eusebio Trigo Date: Thu, 29 Feb 2024 15:52:09 +0100 Subject: [PATCH 1/5] Update default wrangler version to 3.30.0 --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index e864ffff..9f5d6529 100755 --- a/src/index.ts +++ b/src/index.ts @@ -16,7 +16,7 @@ import { exec, execShell } from "./exec"; import { checkWorkingDirectory, semverCompare } from "./utils"; import { getPackageManager } from "./packageManagers"; -const DEFAULT_WRANGLER_VERSION = "3.13.2"; +const DEFAULT_WRANGLER_VERSION = "3.30.0"; /** * A configuration object that contains all the inputs & immutable state for the action. From a99a39566779760a5803a32aa2841b9aafb99cd1 Mon Sep 17 00:00:00 2001 From: Eusebio Trigo Date: Mon, 25 Mar 2024 21:41:44 +0100 Subject: [PATCH 2/5] Update default wrangler version to 3.37.0 --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 9f5d6529..c601304b 100755 --- a/src/index.ts +++ b/src/index.ts @@ -16,7 +16,7 @@ import { exec, execShell } from "./exec"; import { checkWorkingDirectory, semverCompare } from "./utils"; import { getPackageManager } from "./packageManagers"; -const DEFAULT_WRANGLER_VERSION = "3.30.0"; +const DEFAULT_WRANGLER_VERSION = "3.37.0"; /** * A configuration object that contains all the inputs & immutable state for the action. From b959cd27a4d713c2f6e739bf192d16c10c2ff907 Mon Sep 17 00:00:00 2001 From: Eusebio Trigo Date: Mon, 25 Mar 2024 21:53:54 +0100 Subject: [PATCH 3/5] Adding changeset --- .changeset/twenty-beans-compare.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/twenty-beans-compare.md diff --git a/.changeset/twenty-beans-compare.md b/.changeset/twenty-beans-compare.md new file mode 100644 index 00000000..ffc4b41d --- /dev/null +++ b/.changeset/twenty-beans-compare.md @@ -0,0 +1,5 @@ +--- +"wrangler-action": patch +--- + +Bumped DEFAULT_WRANGLER_VERSION to 3.37.0 From 888649cb345a9fabb1b2974f19078598ba2d3828 Mon Sep 17 00:00:00 2001 From: Eusebio Trigo Date: Mon, 29 Apr 2024 09:33:01 +0200 Subject: [PATCH 4/5] Update default wrangler version to 3.52.0 --- .changeset/twenty-beans-compare.md | 2 +- src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.changeset/twenty-beans-compare.md b/.changeset/twenty-beans-compare.md index ffc4b41d..9331f82e 100644 --- a/.changeset/twenty-beans-compare.md +++ b/.changeset/twenty-beans-compare.md @@ -2,4 +2,4 @@ "wrangler-action": patch --- -Bumped DEFAULT_WRANGLER_VERSION to 3.37.0 +Bumped DEFAULT_WRANGLER_VERSION to 3.52.0 diff --git a/src/index.ts b/src/index.ts index c601304b..d30453c0 100755 --- a/src/index.ts +++ b/src/index.ts @@ -16,7 +16,7 @@ import { exec, execShell } from "./exec"; import { checkWorkingDirectory, semverCompare } from "./utils"; import { getPackageManager } from "./packageManagers"; -const DEFAULT_WRANGLER_VERSION = "3.37.0"; +const DEFAULT_WRANGLER_VERSION = "3.52.0"; /** * A configuration object that contains all the inputs & immutable state for the action. From 9580f80c9eac74a8e6c60301c26b1fd073af220a Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Wed, 15 May 2024 14:07:04 +0100 Subject: [PATCH 5/5] feature: Set DEFAULT_WRANGLER_VERSION to 3.x This will ensure that wrangler-action will use the latest compatible version of Wrangler if not specified otherwise. There are two ways to lock down the version of Wrangler for this action: - Specify the required version in the action's parameters when implementing it in your Github Workflows. - Add a dependency to a specific version in your package.json of the project being deployed via this action. --- .changeset/twenty-beans-compare.md | 11 +++++++++-- src/index.ts | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.changeset/twenty-beans-compare.md b/.changeset/twenty-beans-compare.md index 9331f82e..67f4ba84 100644 --- a/.changeset/twenty-beans-compare.md +++ b/.changeset/twenty-beans-compare.md @@ -1,5 +1,12 @@ --- -"wrangler-action": patch +"wrangler-action": minor --- -Bumped DEFAULT_WRANGLER_VERSION to 3.52.0 +feature: Set DEFAULT_WRANGLER_VERSION to 3.x + +This will ensure that wrangler-action will use the latest compatible version of Wrangler if not specified otherwise. + +There are two ways to lock down the version of Wrangler for this action: + +- Specify the required version in the action's parameters when implementing it in your Github Workflows. +- Add a dependency to a specific version in your package.json of the project being deployed via this action. diff --git a/src/index.ts b/src/index.ts index d30453c0..5b11dd4c 100755 --- a/src/index.ts +++ b/src/index.ts @@ -16,7 +16,7 @@ import { exec, execShell } from "./exec"; import { checkWorkingDirectory, semverCompare } from "./utils"; import { getPackageManager } from "./packageManagers"; -const DEFAULT_WRANGLER_VERSION = "3.52.0"; +const DEFAULT_WRANGLER_VERSION = "3.x"; /** * A configuration object that contains all the inputs & immutable state for the action.