Skip to content

Commit 154558c

Browse files
authored
Merge branch 'openapi-ts:main' into support-custom-path-serializer
2 parents d5d8981 + 68cefd2 commit 154558c

File tree

24 files changed

+6769
-3012
lines changed

24 files changed

+6769
-3012
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Ultra-fast fetching for TypeScript generated automatically from your OpenAPI sch
1818

1919
<p align="center">
2020
<a href="https://zuplo.link/openapi-ts-gh"><img width="288" height="120" alt="Zuplo" src="./docs/public/assets/zuplo.svg"></a>
21-
<a href="https://www.speakeasy.com/editor?utm_source=pow_openapi_ts" target="_blank"><img width="288" height="120" src="./docs/public/assets/speakeasy.svg" /></a>
21+
<a href="https://www.speakeasy.com/editor?utm_source=pow_openapi_ts" target="_blank"><img width="288" height="120" src="./docs/public/assets/speakeasy.png" /></a>
2222
</p>
2323

2424
### 🥈 Silver Sponsors

docs/data/contributors.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/data/sponsors.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"gold": [
33
{
44
"name": "Speakeasy",
5-
"logo": "/assets/speakeasy.svg",
5+
"logo": "/assets/speakeasy.png",
66
"url": "https://www.speakeasy.com/product/sdk-generation?utm_source=pow_openapi_ts"
77
}
88
],

docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"devDependencies": {
1212
"@shikijs/vitepress-twoslash": "^3.3.0",
1313
"openapi-metadata": "workspace:*",
14-
"vite": "^6.3.4",
15-
"vitepress": "^1.6.3"
14+
"vite": "^7.1.1",
15+
"vitepress": "^1.6.4"
1616
}
1717
}

docs/public/assets/speakeasy.png

116 KB
Loading

docs/public/assets/speakeasy.svg

Lines changed: 0 additions & 306 deletions
This file was deleted.

docs/scripts/update-contributors.js

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -201,16 +201,6 @@ const CONTRIBUTORS_JSON = new URL("../data/contributors.json", import.meta.url);
201201

202202
const data = JSON.parse(fs.readFileSync(CONTRIBUTORS_JSON, "utf8"));
203203

204-
function getGitHubToken() {
205-
const GITHUB_TOKEN = process.env.GITHUB_TOKEN;
206-
if (!GITHUB_TOKEN) {
207-
throw new Error(
208-
'GITHUB_TOKEN not set! Create a token with "read:user" scope and set as an environment variable.\nhttps://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#creating-a-personal-access-token-classic',
209-
);
210-
}
211-
return GITHUB_TOKEN;
212-
}
213-
214204
class UserFetchError extends Error {
215205
/**
216206
* @param {string} message
@@ -234,7 +224,6 @@ async function fetchUserInfo(username) {
234224
const res = await fetch(`https://api.github.com/users/${username}`, {
235225
headers: {
236226
Accept: "application/vnd.github+json",
237-
Authorization: `Bearer ${getGitHubToken()}`,
238227
"X-GitHub-Api-Version": "2022-11-28",
239228
},
240229
});

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"name": "Drew Powers",
88
"email": "[email protected]"
99
},
10-
"packageManager": "pnpm@10.10.0",
10+
"packageManager": "pnpm@10.14.0",
1111
"scripts": {
1212
"build": "turbo run build",
1313
"lint": "turbo run lint",
@@ -19,19 +19,19 @@
1919
"version": "pnpm run build && changeset version && pnpm i"
2020
},
2121
"devDependencies": {
22-
"@arethetypeswrong/cli": "^0.18.1",
22+
"@arethetypeswrong/cli": "^0.18.2",
2323
"@biomejs/biome": "^1.9.4",
2424
"@changesets/changelog-github": "^0.5.1",
25-
"@changesets/cli": "^2.29.2",
26-
"@playwright/test": "^1.52.0",
25+
"@changesets/cli": "^2.29.5",
26+
"@playwright/test": "^1.54.2",
2727
"@size-limit/preset-small-lib": "^11.2.0",
28-
"@types/node": "^22.15.3",
29-
"prettier": "^3.5.3",
28+
"@types/node": "^22.17.1",
29+
"prettier": "^3.6.2",
3030
"size-limit": "^11.2.0",
31-
"turbo": "^2.5.2",
32-
"typescript": "^5.8.3",
33-
"unbuild": "^3.5.0",
34-
"vitest": "^3.1.3"
31+
"turbo": "^2.5.5",
32+
"typescript": "^5.9.2",
33+
"unbuild": "^3.6.0",
34+
"vitest": "^3.2.4"
3535
},
3636
"size-limit": [
3737
{

packages/openapi-fetch/examples/nextjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
"@types/react": "^18.3.20",
1616
"@types/react-dom": "^18.3.7",
1717
"openapi-typescript": "workspace:^",
18-
"typescript": "^5.8.3"
18+
"typescript": "^5.9.2"
1919
}
2020
}

packages/openapi-fetch/examples/sveltekit/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"openapi-typescript": "workspace:^",
1616
"svelte": "^5.34.9",
1717
"svelte-check": "^4.2.2",
18-
"typescript": "^5.8.3",
19-
"vite": "^6.3.5"
18+
"typescript": "^5.9.2",
19+
"vite": "^7.1.1"
2020
},
2121
"pnpm": {
2222
"onlyBuiltDependencies": [

0 commit comments

Comments
 (0)