Skip to content

Commit 28813cb

Browse files
release: 0.23.0
1 parent e738d97 commit 28813cb

7 files changed

Lines changed: 37 additions & 6 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.22.4"
2+
".": "0.23.0"
33
}

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Changelog
22

3+
## 0.23.0 (2026-05-29)
4+
5+
Full Changelog: [v0.22.4...v0.23.0](https://github.com/isaacus-dev/isaacus-typescript/compare/v0.22.4...v0.23.0)
6+
7+
### Features
8+
9+
* support setting headers via env ([05c6abd](https://github.com/isaacus-dev/isaacus-typescript/commit/05c6abd544a0ecd87ddb3b635929018598aac5f4))
10+
11+
12+
### Bug Fixes
13+
14+
* **mcp:** use `pure-lockfile` when building mcp server ([e738d97](https://github.com/isaacus-dev/isaacus-typescript/commit/e738d97b7431f1353aaaf460727266de2eb6a96b))
15+
* **typescript:** upgrade tsc-multi so that it works with Node 26 ([4430b91](https://github.com/isaacus-dev/isaacus-typescript/commit/4430b91fafc8fb07474b11aef0a36755ed24f1eb))
16+
17+
18+
### Chores
19+
20+
* avoid formatting file that gets changed during releases ([ec88aef](https://github.com/isaacus-dev/isaacus-typescript/commit/ec88aef38af1f4b559e51184bb7d838edaff4f50))
21+
* **format:** run eslint and prettier separately ([8b0b6f7](https://github.com/isaacus-dev/isaacus-typescript/commit/8b0b6f764ce8c34b9e25ceabfb0557fad33e07db))
22+
* **internal:** codegen related update ([36d1802](https://github.com/isaacus-dev/isaacus-typescript/commit/36d18023d8bf4c886d1aec14504cb70d793f9a28))
23+
* **internal:** codegen related update ([9b13b88](https://github.com/isaacus-dev/isaacus-typescript/commit/9b13b888121581e04c3ce13aba2c6d10a23fa55a))
24+
* **internal:** more robust bootstrap script ([32259bd](https://github.com/isaacus-dev/isaacus-typescript/commit/32259bd667f736fb8f8da16a424f71c6f5242b09))
25+
* redact api-key headers in debug logs ([9767ee7](https://github.com/isaacus-dev/isaacus-typescript/commit/9767ee7e62f113d5483d22f36851ff9c3ece6aaf))
26+
* restructure docs search code ([e1919fe](https://github.com/isaacus-dev/isaacus-typescript/commit/e1919fee72c32029b6b87608e7ad6c3db30082e1))
27+
* **tests:** remove redundant File import ([b9de8d5](https://github.com/isaacus-dev/isaacus-typescript/commit/b9de8d58a97c963a739494c31951ac6015537cd7))
28+
29+
30+
### Documentation
31+
32+
* update http mcp docs ([3c73de3](https://github.com/isaacus-dev/isaacus-typescript/commit/3c73de3e01c16dd31ec03ac7ddff05a325f79bb4))
33+
334
## 0.22.4 (2026-04-23)
435

536
Full Changelog: [v0.22.3...v0.22.4](https://github.com/isaacus-dev/isaacus-typescript/compare/v0.22.3...v0.22.4)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "isaacus",
3-
"version": "0.22.4",
3+
"version": "0.23.0",
44
"description": "The official TypeScript library for the Isaacus API",
55
"author": "Isaacus <support@isaacus.com>",
66
"types": "dist/index.d.ts",

packages/mcp-server/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dxt_version": "0.2",
33
"name": "isaacus-mcp",
4-
"version": "0.22.4",
4+
"version": "0.23.0",
55
"description": "The official MCP Server for the Isaacus API",
66
"author": {
77
"name": "Isaacus",

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "isaacus-mcp",
3-
"version": "0.22.4",
3+
"version": "0.23.0",
44
"description": "The official MCP Server for the Isaacus API",
55
"author": "Isaacus <support@isaacus.com>",
66
"types": "dist/index.d.ts",

packages/mcp-server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const newMcpServer = async ({
2828
new McpServer(
2929
{
3030
name: 'isaacus_api',
31-
version: '0.22.4',
31+
version: '0.23.0',
3232
},
3333
{
3434
instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.22.4'; // x-release-please-version
1+
export const VERSION = '0.23.0'; // x-release-please-version

0 commit comments

Comments
 (0)