Merge pull request #334 from cloudflare/maximo/bump-default-wrangler-version

Bump default wrangler version to 3.90.0
This commit is contained in:
Maximo Guk 2024-11-26 15:26:40 -04:00 committed by GitHub
commit ee57f258dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 4 deletions

View file

@ -0,0 +1,5 @@
---
"wrangler-action": minor
---
Bump default wrangler version to 3.90.0

View file

@ -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.

View file

@ -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({
@ -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({