Skip to content

Commit

Permalink
V2: Update dependencies (#1133)
Browse files Browse the repository at this point in the history
  • Loading branch information
srikrsna-buf authored Jul 2, 2024
1 parent 4378268 commit f7b9194
Show file tree
Hide file tree
Showing 8 changed files with 1,569 additions and 4,139 deletions.
5,678 changes: 1,555 additions & 4,123 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
"@bufbuild/license-header": "^0.0.4",
"@typescript-eslint/parser": "^7.11.0",
"@typescript-eslint/parser": "^7.14.0",
"eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/eslint-plugin": "^7.14.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-n": "^17.4.0",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.2.4",
"typescript": "5.4.5"
"prettier": "^3.3.2",
"typescript": "5.5.2"
}
}
4 changes: 2 additions & 2 deletions packages/connect-cloudflare/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240603.0",
"wrangler": "^3.58.0",
"tsx": "^4.11.0",
"wrangler": "^3.62.0",
"tsx": "^4.16.0",
"@connectrpc/connect-conformance": "^2.0.0-alpha.1",
"@bufbuild/protoc-gen-es": "^2.0.0-beta.2"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/connect-express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@connectrpc/connect-conformance": "^2.0.0-alpha.1",
"@types/express": "^4.17.18",
"express": "^4.19.2",
"tsx": "^4.11.0"
"tsx": "^4.16.0"
},
"peerDependencies": {
"@bufbuild/protobuf": "^2.0.0-beta.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/connect-migrate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"dependencies": {
"fast-glob": "3.3.2",
"jscodeshift": "0.15.2",
"jscodeshift": "0.16.1",
"semver": "^7.6.2"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/connect-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
}
},
"devDependencies": {
"webdriverio": "^8.36.1",
"webdriverio": "^8.39.0",
"@bufbuild/protoc-gen-es": "^2.0.0-beta.2",
"@connectrpc/connect-conformance": "^2.0.0-alpha.1",
"jasmine": "^5.1.0",
Expand Down
4 changes: 1 addition & 3 deletions packages/connect/src/protocol/signals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ export function createLinkedAbortController(
): AbortController {
const controller = new AbortController();

const sa = signals
.filter((s) => s !== undefined)
.concat(controller.signal) as AbortSignal[];
const sa = signals.filter((s) => s !== undefined).concat(controller.signal);

for (const signal of sa) {
if (signal.aborted) {
Expand Down
6 changes: 3 additions & 3 deletions packages/example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
"@bufbuild/protobuf": "^2.0.0-beta.2",
"@connectrpc/connect-node": "^2.0.0-alpha.1",
"@connectrpc/connect-web": "^2.0.0-alpha.1",
"tsx": "^4.11.0"
"tsx": "^4.16.0"
},
"devDependencies": {
"@bufbuild/buf": "^1.32.2",
"@bufbuild/buf": "^1.34.0",
"@bufbuild/protoc-gen-es": "^2.0.0-beta.2",
"@types/express": "^4.17.18",
"esbuild": "^0.19.8",
"typescript": "^5.4.5"
"typescript": "^5.5.2"
}
}

0 comments on commit f7b9194

Please sign in to comment.