wrangler 4.37.1 → 4.38.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 +14 -0
- package/package.json +11 -11
- package/wrangler-dist/cli.d.ts +4 -0
- package/wrangler-dist/cli.js +2862 -2093
- package/wrangler-dist/metafile-cjs.json +1 -1
package/config-schema.json
CHANGED
@@ -358,6 +358,13 @@
|
|
358
358
|
},
|
359
359
|
"description": "If this binding should be restricted to a set of verified addresses"
|
360
360
|
},
|
361
|
+
"allowed_sender_addresses": {
|
362
|
+
"type": "array",
|
363
|
+
"items": {
|
364
|
+
"type": "string"
|
365
|
+
},
|
366
|
+
"description": "If this binding should be restricted to a set of sender addresses"
|
367
|
+
},
|
361
368
|
"remote": {
|
362
369
|
"type": "boolean",
|
363
370
|
"description": "Whether the binding should be remote or not"
|
@@ -1451,6 +1458,13 @@
|
|
1451
1458
|
},
|
1452
1459
|
"description": "If this binding should be restricted to a set of verified addresses"
|
1453
1460
|
},
|
1461
|
+
"allowed_sender_addresses": {
|
1462
|
+
"type": "array",
|
1463
|
+
"items": {
|
1464
|
+
"type": "string"
|
1465
|
+
},
|
1466
|
+
"description": "If this binding should be restricted to a set of sender addresses"
|
1467
|
+
},
|
1454
1468
|
"remote": {
|
1455
1469
|
"type": "boolean",
|
1456
1470
|
"description": "Whether the binding should be remote or not"
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "wrangler",
|
3
|
-
"version": "4.
|
3
|
+
"version": "4.38.0",
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
5
5
|
"keywords": [
|
6
6
|
"wrangler",
|
@@ -54,16 +54,16 @@
|
|
54
54
|
"esbuild": "0.25.4",
|
55
55
|
"path-to-regexp": "6.3.0",
|
56
56
|
"unenv": "2.0.0-rc.21",
|
57
|
-
"workerd": "1.
|
57
|
+
"workerd": "1.20250917.0",
|
58
58
|
"@cloudflare/kv-asset-handler": "0.4.0",
|
59
|
-
"@cloudflare/unenv-preset": "2.7.
|
60
|
-
"miniflare": "4.
|
59
|
+
"@cloudflare/unenv-preset": "2.7.4",
|
60
|
+
"miniflare": "4.20250917.0"
|
61
61
|
},
|
62
62
|
"devDependencies": {
|
63
63
|
"@aws-sdk/client-s3": "^3.721.0",
|
64
64
|
"@cloudflare/jsrpc": "link:../../vendor/jsrpc",
|
65
65
|
"@cloudflare/types": "6.18.4",
|
66
|
-
"@cloudflare/workers-types": "^4.
|
66
|
+
"@cloudflare/workers-types": "^4.20250917.0",
|
67
67
|
"@cspotcode/source-map-support": "0.8.1",
|
68
68
|
"@iarna/toml": "^3.0.0",
|
69
69
|
"@sentry/node": "^7.86.0",
|
@@ -89,7 +89,7 @@
|
|
89
89
|
"chalk": "^5.2.0",
|
90
90
|
"chokidar": "^4.0.1",
|
91
91
|
"cli-table3": "^0.6.3",
|
92
|
-
"cloudflare": "^
|
92
|
+
"cloudflare": "^5.1.0",
|
93
93
|
"cmd-shim": "^4.1.0",
|
94
94
|
"command-exists": "^1.2.9",
|
95
95
|
"concurrently": "^8.2.2",
|
@@ -139,14 +139,14 @@
|
|
139
139
|
"xxhash-wasm": "^1.0.1",
|
140
140
|
"yargs": "^17.7.2",
|
141
141
|
"@cloudflare/cli": "1.1.2",
|
142
|
-
"@cloudflare/eslint-config-shared": "1.1.0",
|
143
142
|
"@cloudflare/containers-shared": "0.2.10",
|
144
|
-
"@cloudflare/
|
145
|
-
"@cloudflare/
|
146
|
-
"@cloudflare/workers-tsconfig": "0.0.0"
|
143
|
+
"@cloudflare/eslint-config-shared": "1.1.0",
|
144
|
+
"@cloudflare/pages-shared": "^0.13.73",
|
145
|
+
"@cloudflare/workers-tsconfig": "0.0.0",
|
146
|
+
"@cloudflare/workers-shared": "0.18.8"
|
147
147
|
},
|
148
148
|
"peerDependencies": {
|
149
|
-
"@cloudflare/workers-types": "^4.
|
149
|
+
"@cloudflare/workers-types": "^4.20250917.0"
|
150
150
|
},
|
151
151
|
"peerDependenciesMeta": {
|
152
152
|
"@cloudflare/workers-types": {
|
package/wrangler-dist/cli.d.ts
CHANGED
@@ -670,6 +670,8 @@ interface EnvironmentNonInheritable {
|
|
670
670
|
destination_address?: string;
|
671
671
|
/** If this binding should be restricted to a set of verified addresses */
|
672
672
|
allowed_destination_addresses?: string[];
|
673
|
+
/** If this binding should be restricted to a set of sender addresses */
|
674
|
+
allowed_sender_addresses?: string[];
|
673
675
|
/** Whether the binding should be remote or not */
|
674
676
|
remote?: boolean;
|
675
677
|
}[];
|
@@ -1249,6 +1251,8 @@ type CfSendEmailBindings = {
|
|
1249
1251
|
destination_address?: string;
|
1250
1252
|
} | {
|
1251
1253
|
allowed_destination_addresses?: string[];
|
1254
|
+
} | {
|
1255
|
+
allowed_sender_addresses?: string[];
|
1252
1256
|
});
|
1253
1257
|
/**
|
1254
1258
|
* A binding to the AI project
|