From 9580f80c9eac74a8e6c60301c26b1fd073af220a Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Wed, 15 May 2024 14:07:04 +0100 Subject: [PATCH] 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 9331f82..67f4ba8 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 d30453c..5b11dd4 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.