wrangler 3.108.1 → 3.109.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wrangler",
3
- "version": "3.108.1",
3
+ "version": "3.109.0",
4
4
  "description": "Command-line interface for all things Cloudflare Workers",
5
5
  "keywords": [
6
6
  "wrangler",
@@ -58,7 +58,7 @@
58
58
  "unenv": "2.0.0-rc.1",
59
59
  "workerd": "1.20250204.0",
60
60
  "@cloudflare/kv-asset-handler": "0.3.4",
61
- "miniflare": "3.20250204.0"
61
+ "miniflare": "3.20250204.1"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@aws-sdk/client-s3": "^3.721.0",
@@ -139,8 +139,8 @@
139
139
  "yargs": "^17.7.2",
140
140
  "@cloudflare/cli": "1.1.1",
141
141
  "@cloudflare/eslint-config-worker": "1.1.0",
142
- "@cloudflare/workers-shared": "0.14.0",
143
- "@cloudflare/pages-shared": "^0.13.6",
142
+ "@cloudflare/pages-shared": "^0.13.7",
143
+ "@cloudflare/workers-shared": "0.14.1",
144
144
  "@cloudflare/workers-tsconfig": "0.0.0"
145
145
  },
146
146
  "peerDependencies": {
@@ -1015,66 +1015,69 @@ attributes?: { name?: string, domain?: string }
1015
1015
  * variable set
1016
1016
  */
1017
1017
  declare function deploy({ directory, accountId, projectName, branch, skipCaching, commitMessage, commitHash, commitDirty, functionsDirectory: customFunctionsDirectory, bundle, sourceMaps, args, }: PagesDeployOptions): Promise<{
1018
- url: string;
1019
- id: string;
1020
- environment: "production" | "preview";
1021
- build_config: {
1022
- build_command: string;
1023
- destination_dir: string;
1024
- root_dir: string;
1025
- web_analytics_tag?: string | undefined;
1026
- web_analytics_token?: string | undefined;
1027
- fast_builds?: boolean | undefined;
1028
- };
1029
- created_on: string;
1030
- production_branch: string;
1031
- project_id: string;
1032
- project_name: string;
1033
- deployment_trigger: {
1034
- metadata: {
1035
- branch: string;
1036
- commit_hash: string;
1037
- commit_message: string;
1038
- };
1039
- type: string;
1040
- };
1041
- latest_stage: {
1042
- status: "canceled" | "active" | "idle" | "success" | "failure" | "skipped";
1043
- name: "queued" | "build" | "deploy" | "initialize" | "clone_repo";
1044
- started_on: string | null;
1045
- ended_on: string | null;
1018
+ deploymentResponse: {
1019
+ url: string;
1020
+ id: string;
1021
+ environment: "production" | "preview";
1022
+ build_config: {
1023
+ build_command: string;
1024
+ destination_dir: string;
1025
+ root_dir: string;
1026
+ web_analytics_tag?: string | undefined;
1027
+ web_analytics_token?: string | undefined;
1028
+ fast_builds?: boolean | undefined;
1029
+ };
1030
+ created_on: string;
1031
+ production_branch: string;
1032
+ project_id: string;
1033
+ project_name: string;
1034
+ deployment_trigger: {
1035
+ metadata: {
1036
+ branch: string;
1037
+ commit_hash: string;
1038
+ commit_message: string;
1039
+ };
1040
+ type: string;
1041
+ };
1042
+ latest_stage: {
1043
+ status: "canceled" | "active" | "idle" | "success" | "failure" | "skipped";
1044
+ name: "queued" | "build" | "deploy" | "initialize" | "clone_repo";
1045
+ started_on: string | null;
1046
+ ended_on: string | null;
1047
+ };
1048
+ stages: {
1049
+ status: "canceled" | "active" | "idle" | "success" | "failure" | "skipped";
1050
+ name: "queued" | "build" | "deploy" | "initialize" | "clone_repo";
1051
+ started_on: string | null;
1052
+ ended_on: string | null;
1053
+ }[];
1054
+ aliases: string[];
1055
+ modified_on: string;
1056
+ short_id: string;
1057
+ build_image_major_version: number;
1058
+ kv_namespaces?: any;
1059
+ source?: {
1060
+ config: {
1061
+ owner: string;
1062
+ repo_name: string;
1063
+ production_branch?: string | undefined;
1064
+ pr_comments_enabled?: boolean | undefined;
1065
+ deployments_enabled?: boolean | undefined;
1066
+ production_deployments_enabled?: boolean | undefined;
1067
+ preview_deployment_setting?: "none" | "custom" | "all" | undefined;
1068
+ preview_branch_includes?: string[] | undefined;
1069
+ preview_branch_excludes?: string[] | undefined;
1070
+ };
1071
+ type: "github" | "gitlab";
1072
+ } | undefined;
1073
+ env_vars?: any;
1074
+ durable_object_namespaces?: any;
1075
+ is_skipped?: boolean | undefined;
1076
+ files?: {
1077
+ [x: string]: string | undefined;
1078
+ } | undefined;
1046
1079
  };
1047
- stages: {
1048
- status: "canceled" | "active" | "idle" | "success" | "failure" | "skipped";
1049
- name: "queued" | "build" | "deploy" | "initialize" | "clone_repo";
1050
- started_on: string | null;
1051
- ended_on: string | null;
1052
- }[];
1053
- aliases: string[];
1054
- modified_on: string;
1055
- short_id: string;
1056
- build_image_major_version: number;
1057
- kv_namespaces?: any;
1058
- source?: {
1059
- config: {
1060
- owner: string;
1061
- repo_name: string;
1062
- production_branch?: string | undefined;
1063
- pr_comments_enabled?: boolean | undefined;
1064
- deployments_enabled?: boolean | undefined;
1065
- production_deployments_enabled?: boolean | undefined;
1066
- preview_deployment_setting?: "none" | "custom" | "all" | undefined;
1067
- preview_branch_includes?: string[] | undefined;
1068
- preview_branch_excludes?: string[] | undefined;
1069
- };
1070
- type: "github" | "gitlab";
1071
- } | undefined;
1072
- env_vars?: any;
1073
- durable_object_namespaces?: any;
1074
- is_skipped?: boolean | undefined;
1075
- files?: {
1076
- [x: string]: string | undefined;
1077
- } | undefined;
1080
+ formData: FormData_2;
1078
1081
  }>;
1079
1082
 
1080
1083
  declare interface DeprecatedConfigFields {
@@ -2818,6 +2821,7 @@ declare class Logger {
2818
2821
  private onceHistory;
2819
2822
  get loggerLevel(): "log" | "error" | "none" | "debug" | "info" | "warn";
2820
2823
  set loggerLevel(val: "log" | "error" | "none" | "debug" | "info" | "warn");
2824
+ resetLoggerLevel(): void;
2821
2825
  columns: number;
2822
2826
  debug: (...args: unknown[]) => void;
2823
2827
  debugWithSanitization: (label: string, ...args: unknown[]) => void;