New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

wrangler

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wrangler - npm Package Compare versions

Comparing version

to
0.0.0-665ebd857

{
"name": "wrangler",
"version": "0.0.0-6657b80ca",
"version": "0.0.0-665ebd857",
"description": "Command-line interface for all things Cloudflare Workers",

@@ -53,9 +53,10 @@ "keywords": [

"dependencies": {
"@cloudflare/unenv-preset": "2.3.1",
"blake3-wasm": "2.1.5",
"esbuild": "0.24.2",
"path-to-regexp": "6.3.0",
"unenv": "2.0.0-rc.1",
"workerd": "1.20250214.0",
"@cloudflare/kv-asset-handler": "0.3.4",
"miniflare": "0.0.0-6657b80ca"
"unenv": "2.0.0-rc.15",
"workerd": "1.20250321.0",
"@cloudflare/kv-asset-handler": "0.4.0",
"miniflare": "0.0.0-665ebd857"
},

@@ -65,3 +66,3 @@ "devDependencies": {

"@cloudflare/types": "6.18.4",
"@cloudflare/workers-types": "^4.20250214.0",
"@cloudflare/workers-types": "^4.20250321.0",
"@cspotcode/source-map-support": "0.8.1",

@@ -88,3 +89,3 @@ "@iarna/toml": "^3.0.0",

"@types/yargs": "^17.0.22",
"@vitest/ui": "~3.0.5",
"@vitest/ui": "~3.0.8",
"@webcontainer/env": "^1.1.0",

@@ -105,3 +106,2 @@ "chalk": "^5.2.0",

"https-proxy-agent": "7.0.2",
"ignore": "^5.2.0",
"is-ci": "^3.0.1",

@@ -136,3 +136,3 @@ "itty-time": "^1.0.6",

"update-check": "^1.5.4",
"vitest": "~3.0.5",
"vitest": "~3.0.8",
"vitest-websocket-mock": "^0.4.0",

@@ -143,10 +143,10 @@ "ws": "8.18.0",

"yargs": "^17.7.2",
"@cloudflare/pages-shared": "^0.13.20",
"@cloudflare/cli": "1.1.1",
"@cloudflare/eslint-config-worker": "1.1.0",
"@cloudflare/pages-shared": "^0.13.10",
"@cloudflare/workers-shared": "0.14.4",
"@cloudflare/workers-tsconfig": "0.0.0"
"@cloudflare/workers-shared": "0.0.0-665ebd857",
"@cloudflare/workers-tsconfig": "0.0.0",
"@cloudflare/eslint-config-worker": "1.1.0"
},
"peerDependencies": {
"@cloudflare/workers-types": "^4.20250214.0"
"@cloudflare/workers-types": "^4.20250321.0"
},

@@ -176,7 +176,7 @@ "peerDependenciesMeta": {

"check:lint": "eslint . --max-warnings=0",
"check:type": "tsc",
"check:type": "tsc -p ./tsconfig.json && tsc -p ./templates/tsconfig.json",
"clean": "rimraf wrangler-dist miniflare-dist emitted-types",
"dev": "pnpm run clean && concurrently -c black,blue --kill-others-on-fail false \"pnpm run bundle --watch\" \"pnpm run check:type --watch --preserveWatchOutput\"",
"emit-types": "tsc -p tsconfig.emit.json && node -r esbuild-register scripts/emit-types.ts",
"generate-json-schema": "pnpm exec ts-json-schema-generator --no-type-check --path src/config/config.ts --type RawConfig --out config-schema.json",
"generate-json-schema": "node -r esbuild-register scripts/generate-json-schema.ts",
"start": "pnpm run bundle && cross-env NODE_OPTIONS=--enable-source-maps ./bin/wrangler.js",

@@ -183,0 +183,0 @@ "test": "dotenv -- pnpm run assert-git-version && dotenv -- vitest",

@@ -23,6 +23,7 @@ // @ts-ignore entry point will get replaced

if (isRoutingRuleMatch(pathname, include)) {
if (worker.fetch === undefined) {
const workerAsHandler = worker as ExportedHandler;
if (workerAsHandler.fetch === undefined) {
throw new TypeError("Entry point missing `fetch` handler");
}
return worker.fetch(request, env, context);
return workerAsHandler.fetch(request, env, context);
}

@@ -29,0 +30,0 @@ }

@@ -88,2 +88,5 @@ import assert from "node:assert";

// Only allow a limited number of error-based reconnections, so as not to infinite loop
reconnectionsRemaining = 3;
async fetch(req: Request) {

@@ -321,2 +324,13 @@ if (

// Sometimes the backend will fail to connect the runtime websocket with a 502 error. These are usually transient, so try and reconnect
if (upgrade.status === 502 && this.reconnectionsRemaining >= 0) {
await scheduler.wait((3 - this.reconnectionsRemaining) * 1000);
this.sendDebugLog(
"RECONNECTING RUNTIME WEBSOCKET after 502. Reconnections remaining:",
this.reconnectionsRemaining
);
return this.reconnectRuntimeWebSocket();
}
this.websockets.runtimeDeferred.reject(error);

@@ -382,2 +396,3 @@ this.sendProxyControllerRequest({

this.sendDebugLog("RUNTIME WEBSOCKET OPENED");
this.reconnectionsRemaining = 3;

@@ -384,0 +399,0 @@ this.sendRuntimeMessage(

@@ -7,3 +7,10 @@ {

"include": ["**/*.ts"],
"exclude": ["__tests__", "./init-tests/**"]
"exclude": [
"__tests__",
"./init-tests/**",
// Note: `startDevWorker` and `middleware` should also be included but some work is needed
// for that first (see: https://github.com/cloudflare/workers-sdk/issues/8303)
"startDevWorker",
"middleware"
]
}

@@ -72,2 +72,4 @@ // templates/startDevWorker/InspectorProxyWorker.ts

runtimeMessageBuffer = [];
// Only allow a limited number of error-based reconnections, so as not to infinite loop
reconnectionsRemaining = 3;
async fetch(req) {

@@ -235,2 +237,10 @@ if (req.headers.get("Authorization") === this.env.PROXY_CONTROLLER_AUTH_SECRET) {

);
if (upgrade.status === 502 && this.reconnectionsRemaining >= 0) {
await scheduler.wait((3 - this.reconnectionsRemaining) * 1e3);
this.sendDebugLog(
"RECONNECTING RUNTIME WEBSOCKET after 502. Reconnections remaining:",
this.reconnectionsRemaining
);
return this.reconnectRuntimeWebSocket();
}
this.websockets.runtimeDeferred.reject(error);

@@ -273,2 +283,3 @@ this.sendProxyControllerRequest({

this.sendDebugLog("RUNTIME WEBSOCKET OPENED");
this.reconnectionsRemaining = 3;
this.sendRuntimeMessage(

@@ -275,0 +286,0 @@ { method: "Runtime.enable", id: this.nextCounter() },

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet