Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/gorgeous-coins-worry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"rimraf": "^3.0.2"
},
"devDependencies": {
"@microsoft/api-extractor": "7.34.4",
"@microsoft/api-extractor": "7.52.7",
"@tsconfig/recommended": "1.0.2",
"@types/jest": "28.1.3",
"@types/jsdom": "20.0.1",
Expand All @@ -53,7 +53,7 @@
"puppeteer": "^19.2.0",
"ts-jest": "29.1.2",
"turbo": "2.3.3",
"typescript": "~5.2.2",
"typescript": "~5.8.3",
"vitest": "2.1.8",
"webpack": "5.91.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/submodules/cbor/parseCborBody.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildHttpRpcRequest } from "./parseCborBody";
import { describe, expect, test as it } from "vitest";

import { describe, test as it, expect } from "vitest";
import { buildHttpRpcRequest } from "./parseCborBody";

describe("buildHttpRpcRequest", () => {
it("should copy the input headers", async () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/util-endpoints/src/cache/EndpointCache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class EndpointCache {
let i = 0;
while (true) {
const { value, done } = keys.next();
this.data.delete(value);
this.data.delete(value as string);
if (done || ++i > 10) {
break;
}
Expand Down
2 changes: 1 addition & 1 deletion private/smithy-rpcv2-cbor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"concurrently": "7.0.0",
"downlevel-dts": "0.10.1",
"rimraf": "^3.0.0",
"typescript": "~5.2.2",
"typescript": "~5.8.3",
"vitest": "2.1.8"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion private/util-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
"downlevel-dts": "0.10.1",
"rimraf": "3.0.2",
"typedoc": "0.23.23",
"typescript": "~5.2.2"
"typescript": "~5.8.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"concurrently": "7.0.0",
"downlevel-dts": "0.10.1",
"rimraf": "^3.0.0",
"typescript": "~5.2.2"
"typescript": "~5.8.3"
},
"engines": {
"node": ">=18.0.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"downlevel-dts": "^0.7.0",
"jest": "29.7.0",
"rimraf": "^3.0.2",
"typescript": "~5.2.2"
"typescript": "~5.8.3"
},
"files": [
"dist/cjs/**/*.js",
Expand Down
2 changes: 1 addition & 1 deletion smithy-typescript-ssdk-libs/server-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"downlevel-dts": "^0.7.0",
"jest": "29.7.0",
"rimraf": "^3.0.2",
"typescript": "~5.2.2"
"typescript": "~5.8.3"
},
"files": [
"dist/cjs/**/*.js",
Expand Down
2 changes: 1 addition & 1 deletion smithy-typescript-ssdk-libs/server-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"downlevel-dts": "^0.7.0",
"jest": "29.7.0",
"rimraf": "^3.0.2",
"typescript": "~5.2.2"
"typescript": "~5.8.3"
},
"files": [
"dist/cjs/**/*.js",
Expand Down
Loading