Skip to content

Commit

Permalink
Bump default wrangler version to 3.90.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximo-Guk committed Nov 26, 2024
1 parent 3c6e4da commit 9fed19a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/rich-maps-hide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"wrangler-action": minor
---

Bump default wrangler version to 3.90.0
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { getPackageManager } from "./packageManagers";
import { checkWorkingDirectory } from "./utils";
import { main, WranglerActionConfig } from "./wranglerAction";

const DEFAULT_WRANGLER_VERSION = "3.81.0";
const DEFAULT_WRANGLER_VERSION = "3.90.0";

/**
* A configuration object that contains all the inputs & immutable state for the action.
Expand Down
6 changes: 3 additions & 3 deletions src/wranglerArtifactManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ const OutputEntryPagesDeployment = OutputEntryBase.merge(
url: z.string().optional(),
alias: z.string().optional(),
environment: z.enum(["production", "preview"]),
// optional, added in wrangler@TBD
// optional, added in wrangler@3.89.0
production_branch: z.string().optional(),
// optional, added in wrangler@TBD
// optional, added in wrangler@3.89.0
stages: z
.array(
z.object({
Expand All @@ -40,7 +40,7 @@ const OutputEntryPagesDeployment = OutputEntryBase.merge(
}),
)
.optional(),
// optional, added in wrangler@TBD
// optional, added in wrangler@3.89.0
deployment_trigger: z
.object({
metadata: z.object({
Expand Down

0 comments on commit 9fed19a

Please sign in to comment.