wrangler 4.93.0 → 4.93.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.93.
|
|
3
|
+
"version": "4.93.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.20260520.1",
|
|
58
58
|
"@cloudflare/kv-asset-handler": "0.5.0",
|
|
59
|
-
"
|
|
60
|
-
"
|
|
59
|
+
"miniflare": "4.20260520.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.20260520.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",
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"smol-toml": "^1.5.2",
|
|
131
131
|
"source-map": "^0.6.1",
|
|
132
132
|
"supports-color": "^9.2.2",
|
|
133
|
-
"timeago.js": "
|
|
133
|
+
"timeago.js": "4.0.2",
|
|
134
134
|
"tree-kill": "^1.2.2",
|
|
135
135
|
"ts-dedent": "^2.2.0",
|
|
136
136
|
"ts-json-schema-generator": "^1.5.0",
|
|
@@ -140,21 +140,21 @@
|
|
|
140
140
|
"update-check": "^1.5.4",
|
|
141
141
|
"vitest": "4.1.0",
|
|
142
142
|
"vitest-websocket-mock": "^0.4.0",
|
|
143
|
-
"ws": "8.
|
|
143
|
+
"ws": "8.20.1",
|
|
144
144
|
"xxhash-wasm": "^1.0.1",
|
|
145
145
|
"yaml": "^2.8.1",
|
|
146
146
|
"yargs": "^17.7.2",
|
|
147
147
|
"@cloudflare/cli-shared-helpers": "0.1.3",
|
|
148
148
|
"@cloudflare/codemod": "1.1.0",
|
|
149
|
-
"@cloudflare/containers-shared": "0.15.
|
|
150
|
-
"@cloudflare/pages-shared": "^0.13.
|
|
149
|
+
"@cloudflare/containers-shared": "0.15.1",
|
|
150
|
+
"@cloudflare/pages-shared": "^0.13.138",
|
|
151
151
|
"@cloudflare/workers-shared": "0.19.6",
|
|
152
152
|
"@cloudflare/workers-tsconfig": "0.0.0",
|
|
153
153
|
"@cloudflare/workers-utils": "0.21.0",
|
|
154
|
-
"@cloudflare/workflows-shared": "0.
|
|
154
|
+
"@cloudflare/workflows-shared": "0.11.0"
|
|
155
155
|
},
|
|
156
156
|
"peerDependencies": {
|
|
157
|
-
"@cloudflare/workers-types": "^4.
|
|
157
|
+
"@cloudflare/workers-types": "^4.20260520.1"
|
|
158
158
|
},
|
|
159
159
|
"peerDependenciesMeta": {
|
|
160
160
|
"@cloudflare/workers-types": {
|
|
@@ -157,7 +157,7 @@ export default function (pluginArgs: unknown) {
|
|
|
157
157
|
if (typeof value !== "object" || value === null) {
|
|
158
158
|
throw new Error("context.data must be an object");
|
|
159
159
|
}
|
|
160
|
-
// user has
|
|
160
|
+
// user has overridden context.data, so we need to merge it with the existing data
|
|
161
161
|
data = value;
|
|
162
162
|
},
|
|
163
163
|
pluginArgs,
|
|
@@ -148,7 +148,7 @@ export default {
|
|
|
148
148
|
if (typeof value !== "object" || value === null) {
|
|
149
149
|
throw new Error("context.data must be an object");
|
|
150
150
|
}
|
|
151
|
-
// user has
|
|
151
|
+
// user has overridden context.data, so we need to merge it with the existing data
|
|
152
152
|
data = value;
|
|
153
153
|
},
|
|
154
154
|
env,
|
|
@@ -434,7 +434,7 @@ export class InspectorProxyWorker implements DurableObject {
|
|
|
434
434
|
// by default, sendRuntimeMessage waits for the runtime websocket to connect
|
|
435
435
|
// but we only want to send this message now or never
|
|
436
436
|
// if we schedule it to send later (like waiting for the websocket, by default)
|
|
437
|
-
// then we risk clearing logs that have
|
|
437
|
+
// then we risk clearing logs that have occurred since we scheduled it too
|
|
438
438
|
// which is worse than leaving logs from the previous version on screen
|
|
439
439
|
if (this.websockets.runtime) {
|
|
440
440
|
this.sendRuntimeMessage(
|