wrangler 4.87.0 → 4.88.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/config-schema.json +10 -10
- package/package.json +11 -11
- package/wrangler-dist/cli.d.ts +3 -1
- package/wrangler-dist/cli.js +1693 -1400
- package/wrangler-dist/metafile-cjs.json +1 -1
package/config-schema.json
CHANGED
|
@@ -404,8 +404,8 @@
|
|
|
404
404
|
}
|
|
405
405
|
},
|
|
406
406
|
"additionalProperties": false,
|
|
407
|
-
"description": "Secrets configuration
|
|
408
|
-
"markdownDescription": "Secrets configuration
|
|
407
|
+
"description": "Secrets configuration.\n\nNOTE: This field is not automatically inherited from the top level environment, and so must be specified in every named environment.\n\nFor reference, see https://developers.cloudflare.com/workers/wrangler/configuration/#secrets-configuration-property",
|
|
408
|
+
"markdownDescription": "Secrets configuration.\n\nNOTE: This field is not automatically inherited from the top level environment,\nand so must be specified in every named environment.\n\nFor reference, see https://developers.cloudflare.com/workers/wrangler/configuration/#secrets-configuration-property"
|
|
409
409
|
},
|
|
410
410
|
"durable_objects": {
|
|
411
411
|
"type": "object",
|
|
@@ -2048,8 +2048,8 @@
|
|
|
2048
2048
|
}
|
|
2049
2049
|
},
|
|
2050
2050
|
"additionalProperties": false,
|
|
2051
|
-
"description": "Secrets configuration
|
|
2052
|
-
"markdownDescription": "Secrets configuration
|
|
2051
|
+
"description": "Secrets configuration.\n\nNOTE: This field is not automatically inherited from the top level environment, and so must be specified in every named environment.\n\nFor reference, see https://developers.cloudflare.com/workers/wrangler/configuration/#secrets-configuration-property",
|
|
2052
|
+
"markdownDescription": "Secrets configuration.\n\nNOTE: This field is not automatically inherited from the top level environment,\nand so must be specified in every named environment.\n\nFor reference, see https://developers.cloudflare.com/workers/wrangler/configuration/#secrets-configuration-property"
|
|
2053
2053
|
},
|
|
2054
2054
|
"durable_objects": {
|
|
2055
2055
|
"type": "object",
|
|
@@ -3535,13 +3535,13 @@
|
|
|
3535
3535
|
"additionalProperties": false,
|
|
3536
3536
|
"properties": {
|
|
3537
3537
|
"logpush": {
|
|
3538
|
-
"$ref": "#/definitions/interface-769040647-8080-17962-769040647-0-
|
|
3538
|
+
"$ref": "#/definitions/interface-769040647-8080-17962-769040647-0-476602004818536"
|
|
3539
3539
|
},
|
|
3540
3540
|
"observability": {
|
|
3541
|
-
"$ref": "#/definitions/interface-769040647-8080-17962-769040647-0-
|
|
3541
|
+
"$ref": "#/definitions/interface-769040647-8080-17962-769040647-0-476602004818536"
|
|
3542
3542
|
},
|
|
3543
3543
|
"limits": {
|
|
3544
|
-
"$ref": "#/definitions/interface-769040647-8080-17962-769040647-0-
|
|
3544
|
+
"$ref": "#/definitions/interface-769040647-8080-17962-769040647-0-476602004818536"
|
|
3545
3545
|
},
|
|
3546
3546
|
"define": {
|
|
3547
3547
|
"type": "object",
|
|
@@ -3581,8 +3581,8 @@
|
|
|
3581
3581
|
}
|
|
3582
3582
|
},
|
|
3583
3583
|
"additionalProperties": false,
|
|
3584
|
-
"description": "Secrets configuration
|
|
3585
|
-
"markdownDescription": "Secrets configuration
|
|
3584
|
+
"description": "Secrets configuration.\n\nNOTE: This field is not automatically inherited from the top level environment, and so must be specified in every named environment.\n\nFor reference, see https://developers.cloudflare.com/workers/wrangler/configuration/#secrets-configuration-property",
|
|
3585
|
+
"markdownDescription": "Secrets configuration.\n\nNOTE: This field is not automatically inherited from the top level environment,\nand so must be specified in every named environment.\n\nFor reference, see https://developers.cloudflare.com/workers/wrangler/configuration/#secrets-configuration-property"
|
|
3586
3586
|
},
|
|
3587
3587
|
"durable_objects": {
|
|
3588
3588
|
"type": "object",
|
|
@@ -4740,7 +4740,7 @@
|
|
|
4740
4740
|
"description": "Configuration for Worker Previews.\n\nThis defines the settings used when creating Preview deployments. Previews are branches of your Worker's main instance used to test features during feature development outside of production.\n\nThe `previews` block contains any intentionally divergent configuration intended solely for Previews, including:\n- All non-inheritable properties (environment variables and bindings like KV, D1, R2, etc.)\n- Select inheritable properties: `logpush`, `observability`, `limits`",
|
|
4741
4741
|
"markdownDescription": "Configuration for Worker Previews.\n\nThis defines the settings used when creating Preview deployments.\nPreviews are branches of your Worker's main instance used to test features\nduring feature development outside of production.\n\nThe `previews` block contains any intentionally divergent configuration intended solely for Previews, including:\n- All non-inheritable properties (environment variables and bindings like KV, D1, R2, etc.)\n- Select inheritable properties: `logpush`, `observability`, `limits`"
|
|
4742
4742
|
},
|
|
4743
|
-
"interface-769040647-8080-17962-769040647-0-
|
|
4743
|
+
"interface-769040647-8080-17962-769040647-0-476602004818536": {
|
|
4744
4744
|
"type": "object",
|
|
4745
4745
|
"properties": {
|
|
4746
4746
|
"name": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wrangler",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.88.0",
|
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"assembly",
|
|
@@ -54,16 +54,16 @@
|
|
|
54
54
|
"esbuild": "0.27.3",
|
|
55
55
|
"path-to-regexp": "6.3.0",
|
|
56
56
|
"unenv": "2.0.0-rc.24",
|
|
57
|
-
"workerd": "1.
|
|
57
|
+
"workerd": "1.20260504.1",
|
|
58
58
|
"@cloudflare/kv-asset-handler": "0.5.0",
|
|
59
|
-
"
|
|
60
|
-
"
|
|
59
|
+
"miniflare": "4.20260504.0",
|
|
60
|
+
"@cloudflare/unenv-preset": "2.16.1"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@aws-sdk/client-s3": "^3.721.0",
|
|
64
64
|
"@bomb.sh/tab": "^0.0.12",
|
|
65
65
|
"@cloudflare/types": "6.18.4",
|
|
66
|
-
"@cloudflare/workers-types": "^4.
|
|
66
|
+
"@cloudflare/workers-types": "^4.20260504.1",
|
|
67
67
|
"@cspotcode/source-map-support": "0.8.1",
|
|
68
68
|
"@netlify/build-info": "^10.5.1",
|
|
69
69
|
"@sentry/node": "^7.86.0",
|
|
@@ -144,17 +144,17 @@
|
|
|
144
144
|
"xxhash-wasm": "^1.0.1",
|
|
145
145
|
"yaml": "^2.8.1",
|
|
146
146
|
"yargs": "^17.7.2",
|
|
147
|
-
"@cloudflare/cli-shared-helpers": "0.1.
|
|
147
|
+
"@cloudflare/cli-shared-helpers": "0.1.1",
|
|
148
148
|
"@cloudflare/codemod": "1.1.0",
|
|
149
149
|
"@cloudflare/containers-shared": "0.14.1",
|
|
150
|
-
"@cloudflare/
|
|
151
|
-
"@cloudflare/
|
|
150
|
+
"@cloudflare/workers-shared": "0.19.5",
|
|
151
|
+
"@cloudflare/workflows-shared": "0.10.0",
|
|
152
152
|
"@cloudflare/workers-tsconfig": "0.0.0",
|
|
153
|
-
"@cloudflare/
|
|
154
|
-
"@cloudflare/
|
|
153
|
+
"@cloudflare/pages-shared": "^0.13.131",
|
|
154
|
+
"@cloudflare/workers-utils": "0.19.0"
|
|
155
155
|
},
|
|
156
156
|
"peerDependencies": {
|
|
157
|
-
"@cloudflare/workers-types": "^4.
|
|
157
|
+
"@cloudflare/workers-types": "^4.20260504.1"
|
|
158
158
|
},
|
|
159
159
|
"peerDependenciesMeta": {
|
|
160
160
|
"@cloudflare/workers-types": {
|
package/wrangler-dist/cli.d.ts
CHANGED
|
@@ -1557,11 +1557,13 @@ interface EnvironmentNonInheritable {
|
|
|
1557
1557
|
*/
|
|
1558
1558
|
vars: Record<string, string | Json>;
|
|
1559
1559
|
/**
|
|
1560
|
-
* Secrets configuration
|
|
1560
|
+
* Secrets configuration.
|
|
1561
1561
|
*
|
|
1562
1562
|
* NOTE: This field is not automatically inherited from the top level environment,
|
|
1563
1563
|
* and so must be specified in every named environment.
|
|
1564
1564
|
*
|
|
1565
|
+
* For reference, see https://developers.cloudflare.com/workers/wrangler/configuration/#secrets-configuration-property
|
|
1566
|
+
*
|
|
1565
1567
|
* @nonInheritable
|
|
1566
1568
|
*/
|
|
1567
1569
|
secrets?: {
|