Skip to content

Commit 9fed19a

Browse files
committed
Bump default wrangler version to 3.90.0
1 parent 3c6e4da commit 9fed19a

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.changeset/rich-maps-hide.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"wrangler-action": minor
3+
---
4+
5+
Bump default wrangler version to 3.90.0

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { getPackageManager } from "./packageManagers";
55
import { checkWorkingDirectory } from "./utils";
66
import { main, WranglerActionConfig } from "./wranglerAction";
77

8-
const DEFAULT_WRANGLER_VERSION = "3.81.0";
8+
const DEFAULT_WRANGLER_VERSION = "3.90.0";
99

1010
/**
1111
* A configuration object that contains all the inputs & immutable state for the action.

src/wranglerArtifactManager.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ const OutputEntryPagesDeployment = OutputEntryBase.merge(
1414
url: z.string().optional(),
1515
alias: z.string().optional(),
1616
environment: z.enum(["production", "preview"]),
17-
// optional, added in wrangler@TBD
17+
// optional, added in wrangler@3.89.0
1818
production_branch: z.string().optional(),
19-
// optional, added in wrangler@TBD
19+
// optional, added in wrangler@3.89.0
2020
stages: z
2121
.array(
2222
z.object({
@@ -40,7 +40,7 @@ const OutputEntryPagesDeployment = OutputEntryBase.merge(
4040
}),
4141
)
4242
.optional(),
43-
// optional, added in wrangler@TBD
43+
// optional, added in wrangler@3.89.0
4444
deployment_trigger: z
4545
.object({
4646
metadata: z.object({

0 commit comments

Comments
 (0)