wrangler 3.114.12 → 3.114.14
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/config-schema.json +3 -15
- package/package.json +5 -5
- package/wrangler-dist/cli.d.ts +11 -2
- package/wrangler-dist/cli.js +622 -361
package/config-schema.json
CHANGED
@@ -981,12 +981,8 @@
|
|
981
981
|
"description": "Optionally, the entrypoint (named export) of the service to bind to.",
|
982
982
|
"type": "string"
|
983
983
|
},
|
984
|
-
"environment": {
|
985
|
-
"description": "The environment of the service (e.g. production, staging, etc).",
|
986
|
-
"type": "string"
|
987
|
-
},
|
988
984
|
"service": {
|
989
|
-
"description": "The name of the service.",
|
985
|
+
"description": "The name of the service. To bind to a worker in a specific environment, you should use the format `<worker_name>-<environment_name>`.",
|
990
986
|
"type": "string"
|
991
987
|
}
|
992
988
|
},
|
@@ -2029,12 +2025,8 @@
|
|
2029
2025
|
"description": "Optionally, the entrypoint (named export) of the service to bind to.",
|
2030
2026
|
"type": "string"
|
2031
2027
|
},
|
2032
|
-
"environment": {
|
2033
|
-
"description": "The environment of the service (e.g. production, staging, etc).",
|
2034
|
-
"type": "string"
|
2035
|
-
},
|
2036
2028
|
"service": {
|
2037
|
-
"description": "The name of the service.",
|
2029
|
+
"description": "The name of the service. To bind to a worker in a specific environment, you should use the format `<worker_name>-<environment_name>`.",
|
2038
2030
|
"type": "string"
|
2039
2031
|
}
|
2040
2032
|
},
|
@@ -3013,12 +3005,8 @@
|
|
3013
3005
|
"description": "Optionally, the entrypoint (named export) of the service to bind to.",
|
3014
3006
|
"type": "string"
|
3015
3007
|
},
|
3016
|
-
"environment": {
|
3017
|
-
"description": "The environment of the service (e.g. production, staging, etc).",
|
3018
|
-
"type": "string"
|
3019
|
-
},
|
3020
3008
|
"service": {
|
3021
|
-
"description": "The name of the service.",
|
3009
|
+
"description": "The name of the service. To bind to a worker in a specific environment, you should use the format `<worker_name>-<environment_name>`.",
|
3022
3010
|
"type": "string"
|
3023
3011
|
}
|
3024
3012
|
},
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "wrangler",
|
3
|
-
"version": "3.114.
|
3
|
+
"version": "3.114.14",
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
5
5
|
"keywords": [
|
6
6
|
"wrangler",
|
@@ -58,8 +58,8 @@
|
|
58
58
|
"path-to-regexp": "6.3.0",
|
59
59
|
"unenv": "2.0.0-rc.14",
|
60
60
|
"workerd": "1.20250718.0",
|
61
|
-
"
|
62
|
-
"
|
61
|
+
"@cloudflare/kv-asset-handler": "0.3.4",
|
62
|
+
"miniflare": "3.20250718.1"
|
63
63
|
},
|
64
64
|
"devDependencies": {
|
65
65
|
"@aws-sdk/client-s3": "^3.721.0",
|
@@ -138,9 +138,9 @@
|
|
138
138
|
"xxhash-wasm": "^1.0.1",
|
139
139
|
"yargs": "^17.7.2",
|
140
140
|
"@cloudflare/eslint-config-worker": "1.1.0",
|
141
|
-
"@cloudflare/
|
142
|
-
"@cloudflare/pages-shared": "0.13.19",
|
141
|
+
"@cloudflare/pages-shared": "0.13.20",
|
143
142
|
"@cloudflare/workers-shared": "0.15.1",
|
143
|
+
"@cloudflare/cli": "1.1.1",
|
144
144
|
"@cloudflare/workers-tsconfig": "0.0.0"
|
145
145
|
},
|
146
146
|
"peerDependencies": {
|
package/wrangler-dist/cli.d.ts
CHANGED
@@ -2255,9 +2255,18 @@ declare interface EnvironmentNonInheritable {
|
|
2255
2255
|
services: {
|
2256
2256
|
/** The binding name used to refer to the bound service. */
|
2257
2257
|
binding: string;
|
2258
|
-
/**
|
2258
|
+
/**
|
2259
|
+
* The name of the service.
|
2260
|
+
* To bind to a worker in a specific environment,
|
2261
|
+
* you should use the format `<worker_name>-<environment_name>`.
|
2262
|
+
*/
|
2259
2263
|
service: string;
|
2260
|
-
/**
|
2264
|
+
/**
|
2265
|
+
* @hidden
|
2266
|
+
* @deprecated you should use `service: <worker_name>-<environment_name>` instead.
|
2267
|
+
* This refers to the deprecated concept of 'service environments'.
|
2268
|
+
* The environment of the service (e.g. production, staging, etc).
|
2269
|
+
*/
|
2261
2270
|
environment?: string;
|
2262
2271
|
/** Optionally, the entrypoint (named export) of the service to bind to. */
|
2263
2272
|
entrypoint?: string;
|