wrangler 4.81.0 → 4.81.1
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": "4.81.
|
|
3
|
+
"version": "4.81.1",
|
|
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.20260409.1",
|
|
58
58
|
"@cloudflare/kv-asset-handler": "0.4.2",
|
|
59
59
|
"@cloudflare/unenv-preset": "2.16.0",
|
|
60
|
-
"miniflare": "4.
|
|
60
|
+
"miniflare": "4.20260409.0"
|
|
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.20260409.1",
|
|
67
67
|
"@cspotcode/source-map-support": "0.8.1",
|
|
68
68
|
"@netlify/build-info": "^10.2.0",
|
|
69
69
|
"@sentry/node": "^7.86.0",
|
|
@@ -145,16 +145,16 @@
|
|
|
145
145
|
"yaml": "^2.8.1",
|
|
146
146
|
"yargs": "^17.7.2",
|
|
147
147
|
"@cloudflare/cli": "1.4.0",
|
|
148
|
-
"@cloudflare/codemod": "1.1.0",
|
|
149
148
|
"@cloudflare/containers-shared": "0.13.1",
|
|
150
|
-
"@cloudflare/
|
|
149
|
+
"@cloudflare/codemod": "1.1.0",
|
|
150
|
+
"@cloudflare/pages-shared": "^0.13.123",
|
|
151
151
|
"@cloudflare/workers-shared": "0.19.1",
|
|
152
152
|
"@cloudflare/workers-tsconfig": "0.0.0",
|
|
153
|
-
"@cloudflare/
|
|
154
|
-
"@cloudflare/
|
|
153
|
+
"@cloudflare/workers-utils": "0.15.0",
|
|
154
|
+
"@cloudflare/workflows-shared": "0.9.0"
|
|
155
155
|
},
|
|
156
156
|
"peerDependencies": {
|
|
157
|
-
"@cloudflare/workers-types": "^4.
|
|
157
|
+
"@cloudflare/workers-types": "^4.20260409.1"
|
|
158
158
|
},
|
|
159
159
|
"peerDependenciesMeta": {
|
|
160
160
|
"@cloudflare/workers-types": {
|
package/wrangler-dist/cli.js
CHANGED
|
@@ -56812,7 +56812,7 @@ var name, version;
|
|
|
56812
56812
|
var init_package = __esm({
|
|
56813
56813
|
"package.json"() {
|
|
56814
56814
|
name = "wrangler";
|
|
56815
|
-
version = "4.81.
|
|
56815
|
+
version = "4.81.1";
|
|
56816
56816
|
}
|
|
56817
56817
|
});
|
|
56818
56818
|
|
|
@@ -305877,6 +305877,16 @@ function removeRemoteConfigFieldFromBindings(normalizedConfig) {
|
|
|
305877
305877
|
({ remote: _5, ...binding }) => binding
|
|
305878
305878
|
);
|
|
305879
305879
|
}
|
|
305880
|
+
if (normalizedConfig.ai_search_namespaces?.length) {
|
|
305881
|
+
normalizedConfig.ai_search_namespaces = normalizedConfig.ai_search_namespaces.map(
|
|
305882
|
+
({ remote: _5, ...binding }) => binding
|
|
305883
|
+
);
|
|
305884
|
+
}
|
|
305885
|
+
if (normalizedConfig.ai_search?.length) {
|
|
305886
|
+
normalizedConfig.ai_search = normalizedConfig.ai_search.map(
|
|
305887
|
+
({ remote: _5, ...binding }) => binding
|
|
305888
|
+
);
|
|
305889
|
+
}
|
|
305880
305890
|
const singleBindingFields = [
|
|
305881
305891
|
"browser",
|
|
305882
305892
|
"ai",
|
|
@@ -311172,6 +311182,9 @@ function pickRemoteBindings(bindings) {
|
|
|
311172
311182
|
if (binding.type === "vpc_network") {
|
|
311173
311183
|
return true;
|
|
311174
311184
|
}
|
|
311185
|
+
if (binding.type === "ai_search_namespace" || binding.type === "ai_search") {
|
|
311186
|
+
return true;
|
|
311187
|
+
}
|
|
311175
311188
|
return "remote" in binding && binding["remote"];
|
|
311176
311189
|
})
|
|
311177
311190
|
);
|