wrangler 3.52.0 → 3.53.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.
@@ -142,6 +142,9 @@
142
142
  "properties": {
143
143
  "binding": {
144
144
  "type": "string"
145
+ },
146
+ "staging": {
147
+ "type": "boolean"
145
148
  }
146
149
  },
147
150
  "required": [
@@ -967,6 +970,9 @@
967
970
  "properties": {
968
971
  "binding": {
969
972
  "type": "string"
973
+ },
974
+ "staging": {
975
+ "type": "boolean"
970
976
  }
971
977
  },
972
978
  "required": [
@@ -2013,6 +2019,9 @@
2013
2019
  "properties": {
2014
2020
  "binding": {
2015
2021
  "type": "string"
2022
+ },
2023
+ "staging": {
2024
+ "type": "boolean"
2016
2025
  }
2017
2026
  },
2018
2027
  "required": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wrangler",
3
- "version": "3.52.0",
3
+ "version": "3.53.0",
4
4
  "description": "Command-line interface for all things Cloudflare Workers",
5
5
  "keywords": [
6
6
  "wrangler",
@@ -94,7 +94,6 @@
94
94
  "miniflare": "3.20240419.0"
95
95
  },
96
96
  "devDependencies": {
97
- "@cloudflare/ai": "^1.0.35",
98
97
  "@cloudflare/eslint-config-worker": "*",
99
98
  "@cloudflare/types": "^6.18.4",
100
99
  "@cloudflare/workers-types": "^4.20240419.0",
@@ -105,7 +104,6 @@
105
104
  "@sentry/types": "^7.86.0",
106
105
  "@sentry/utils": "^7.86.0",
107
106
  "@types/body-parser": "^1.19.2",
108
- "@types/busboy": "^1.5.0",
109
107
  "@types/command-exists": "^1.2.0",
110
108
  "@types/express": "^4.17.13",
111
109
  "@types/glob-to-regexp": "0.4.1",
@@ -120,7 +118,6 @@
120
118
  "@types/serve-static": "^1.13.10",
121
119
  "@types/shell-quote": "^1.7.2",
122
120
  "@types/signal-exit": "^3.0.1",
123
- "@types/source-map-support": "^0.5.7",
124
121
  "@types/supports-color": "^8.1.1",
125
122
  "@types/ws": "^8.5.3",
126
123
  "@types/yargs": "^17.0.10",
@@ -138,7 +135,6 @@
138
135
  "esbuild-jest": "0.5.0",
139
136
  "execa": "^6.1.0",
140
137
  "express": "^4.18.1",
141
- "finalhandler": "^1.2.0",
142
138
  "find-up": "^6.3.0",
143
139
  "get-port": "^6.1.2",
144
140
  "glob-to-regexp": "0.4.1",
@@ -149,8 +145,6 @@
149
145
  "ink-select-input": "^4.2.1",
150
146
  "ink-spinner": "^4.0.3",
151
147
  "ink-table": "^3.0.0",
152
- "ink-testing-library": "^2.1.0",
153
- "ink-text-input": "^4.0.3",
154
148
  "is-ci": "^3.0.1",
155
149
  "javascript-time-ago": "^2.5.4",
156
150
  "jest": "^29.7.0",
@@ -166,7 +160,6 @@
166
160
  "prompts": "^2.4.2",
167
161
  "react": "^17.0.2",
168
162
  "react-error-boundary": "^3.1.4",
169
- "remove-accents-esm": "^0.0.1",
170
163
  "semiver": "^1.1.0",
171
164
  "serve-static": "^1.15.0",
172
165
  "shell-quote": "^1.8.1",
@@ -184,7 +177,7 @@
184
177
  "yargs": "^17.7.2",
185
178
  "yoga-layout": "file:../../vendor/yoga-layout-2.0.0-beta.1.tgz",
186
179
  "@cloudflare/cli": "1.1.1",
187
- "@cloudflare/pages-shared": "^0.11.30",
180
+ "@cloudflare/pages-shared": "^0.11.31",
188
181
  "@cloudflare/workers-tsconfig": "0.0.0"
189
182
  },
190
183
  "optionalDependencies": {
@@ -1862,6 +1862,7 @@ declare interface EnvironmentNonInheritable {
1862
1862
  */
1863
1863
  ai: {
1864
1864
  binding: string;
1865
+ staging?: boolean;
1865
1866
  } | undefined;
1866
1867
  /**
1867
1868
  * Binding to the Worker Version's metadata
@@ -2371,6 +2372,10 @@ export declare function getPlatformProxy<Env = Record<string, unknown>, CfProper
2371
2372
  * Options for the `getPlatformProxy` utility
2372
2373
  */
2373
2374
  export declare type GetPlatformProxyOptions = {
2375
+ /**
2376
+ * The name of the environment to use
2377
+ */
2378
+ environment?: string;
2374
2379
  /**
2375
2380
  * The path to the config object to use (default `wrangler.toml`)
2376
2381
  */