Skip to content
Draft
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: 0 additions & 2 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ updates:
update-types: ['version-update:semver-patch']
- dependency-name: io-ts
versions: ['2.x']
- dependency-name: typescript
versions: ['>4.8']
- dependency-name: '@semantic-release-extras/github-comment-specific'
versions: ['>1.0.7']
# Ignore @swc/* dependencies due to upstream issues
Expand Down
135 changes: 22 additions & 113 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"devDependencies": {
"@semantic-release-extras/github-comment-specific": "1.0.7",
"@semantic-release/npm": "12.0.1",
"@types/node": "22.5.0",
"@types/node": "22.13.9",
"multi-semantic-release": "3.0.2",
"patch-package": "8.0.0",
"typescript": "4.6.4"
"typescript": "5.8.2"
},
"engines": {
"npm": ">=7"
Expand Down
2 changes: 1 addition & 1 deletion packages/express-wrapper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@swc-node/register": "1.10.9",
"@types/express": "4.17.21",
"c8": "10.1.3",
"typescript": "4.7.4"
"typescript": "5.8.2"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/io-ts-http/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"devDependencies": {
"@swc-node/register": "1.10.9",
"c8": "10.1.3",
"typescript": "4.7.4"
"typescript": "5.8.2"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/openapi-generator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@types/resolve": "1.20.6",
"c8": "10.1.3",
"memfs": "4.17.0",
"typescript": "4.7.4"
"typescript": "5.8.2"
},
"optionalDependencies": {
"@swc/core-linux-x64-gnu": "1.5.7",
Expand Down
13 changes: 6 additions & 7 deletions packages/openapi-generator/test/externalModuleApiSpec.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import assert from 'assert';
import test from 'node:test';
import { version } from 'typescript';
import {
Project,
Route,
Expand Down Expand Up @@ -118,7 +117,7 @@ async function testCase(
const openapi = convertRoutesToOpenAPI(
{
title: name,
version,
version: "1.0.0",
description,
},
[],
Expand All @@ -138,7 +137,7 @@ testCase(
openapi: '3.0.3',
info: {
title: 'simple api spec with imported types',
version: '4.7.4',
version: '1.0.0',
description: 'simple api spec with imported types',
},
paths: {
Expand Down Expand Up @@ -237,7 +236,7 @@ testCase(
openapi: '3.0.3',
info: {
title: 'simple api spec with exported enum',
version: '4.7.4',
version: '1.0.0',
description: 'simple api spec with exported enum',
},
paths: {
Expand Down Expand Up @@ -279,7 +278,7 @@ testCase(
openapi: "3.0.3",
info: {
title: "simple api spec with exported union type",
version: "4.7.4",
version: "1.0.0",
description: "simple api spec with exported union type"
},
paths: {
Expand Down Expand Up @@ -324,7 +323,7 @@ testCase("simple api spec with custom codec", "test/sample-types/apiSpecWithCust
openapi: "3.0.3",
info: {
title: "simple api spec with custom codec",
version: "4.7.4",
version: "1.0.0",
description: "simple api spec with custom codec"
},
paths: {
Expand Down Expand Up @@ -363,4 +362,4 @@ testCase("simple api spec with custom codec", "test/sample-types/apiSpecWithCust
components: {
schemas: {}
}
}, []);
}, []);
2 changes: 1 addition & 1 deletion packages/response/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"clean": "rm -rf -- dist"
},
"devDependencies": {
"typescript": "4.7.4"
"typescript": "5.8.2"
},
"publishConfig": {
"access": "public"
Expand Down
4 changes: 2 additions & 2 deletions packages/superagent-wrapper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"devDependencies": {
"@swc-node/register": "1.10.9",
"@types/express": "4.17.21",
"@types/node": "22.5.0",
"@types/node": "22.13.9",
"@types/superagent": "8.1.9",
"@types/supertest": "6.0.2",
"@types/whatwg-url": "13.0.0",
Expand All @@ -34,7 +34,7 @@
"io-ts-types": "0.5.19",
"superagent": "10.1.1",
"supertest": "7.0.0",
"typescript": "4.7.4"
"typescript": "5.8.2"
},
"peerDependencies": {
"superagent": "*"
Expand Down
2 changes: 1 addition & 1 deletion packages/typed-express-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"@api-ts/superagent-wrapper": "0.0.0-semantically-released",
"@swc-node/register": "1.10.9",
"c8": "10.1.3",
"typescript": "4.7.4"
"typescript": "5.8.2"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/tutorial-basics/create-an-api-spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ In your new directory, create a `package.json` file:
"io-ts": "2.1.3"
},
"devDependencies": {
"typescript": "4.7.4"
"typescript": "5.8.2"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion website/docs/tutorial-basics/create-an-http-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ As before, first edit your `package.json` file to add our new dependencies
"@types/express": "4.17.13",
"@types/node": "18.6.1",
"@types/superagent": "4.1.15",
"typescript": "4.7.4"
"typescript": "5.8.2"
}
}
```
Expand Down
Loading
Loading