Skip to content

Commit e5a03d2

Browse files
release: 0.129.0
1 parent 9e5d574 commit e5a03d2

6 files changed

Lines changed: 43 additions & 5 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.128.0"
2+
".": "0.129.0"
33
}

CHANGELOG.md

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

3+
## 0.129.0 (2026-02-10)
4+
5+
Full Changelog: [v0.128.0...v0.129.0](https://github.com/lithic-com/lithic-node/compare/v0.128.0...v0.129.0)
6+
7+
### Features
8+
9+
* **api:** Add /v2/auth_rules/results endpoint for listing rule evaluation data ([9e5d574](https://github.com/lithic-com/lithic-node/commit/9e5d574525ae1e2e01a956855aae828c6e08c420))
10+
* **api:** Add naics_code to account holder requests/responses ([432e7ee](https://github.com/lithic-com/lithic-node/commit/432e7ee8bc80d84fe7f5f5aecc3f60cab6ed8d0f))
11+
* **mcp:** add initial server instructions ([12f5335](https://github.com/lithic-com/lithic-node/commit/12f53350ad370fd5bf432cadfed0d3d331c5b89d))
12+
* **mcp:** allow specifying environment via remote server ([f2bbc59](https://github.com/lithic-com/lithic-node/commit/f2bbc59ef04e4c14c57e541d402148fcc5b7be1e))
13+
14+
15+
### Bug Fixes
16+
17+
* **client:** avoid memory leak with abort signals ([ef3a98b](https://github.com/lithic-com/lithic-node/commit/ef3a98b4be36ad25c38460ed73d95fe4dd25e89f))
18+
* **client:** avoid removing abort listener too early ([eb0e7f7](https://github.com/lithic-com/lithic-node/commit/eb0e7f7bb4ad01a6046437456506eb9d45764119))
19+
* **mcp:** do not fallback on baseUrl if environment env variable is set ([07d71d3](https://github.com/lithic-com/lithic-node/commit/07d71d3bdb85356c58e1dc3a02e93aebea40a824))
20+
21+
22+
### Chores
23+
24+
* **client:** do not parse responses with empty content-length ([f8fdb77](https://github.com/lithic-com/lithic-node/commit/f8fdb779afbcd80ca0666a4622264f8a2740f140))
25+
* **client:** restructure abort controller binding ([45461df](https://github.com/lithic-com/lithic-node/commit/45461df7cce254242b58ce8a7e191f691fb757a1))
26+
* configure new SDK language ([a09926d](https://github.com/lithic-com/lithic-node/commit/a09926d7eee2338358ae33196a5b2e58b3c39b56))
27+
* formatting ([1eb7005](https://github.com/lithic-com/lithic-node/commit/1eb700547c5d303febd261d074c964bf0f764a18))
28+
* **internal:** add health check to MCP server when running in HTTP mode ([7e123b2](https://github.com/lithic-com/lithic-node/commit/7e123b200417ff172942b68f26a540bfb6a23a7f))
29+
* **internal:** allow basic filtering of methods allowed for MCP code mode ([d8c2ff7](https://github.com/lithic-com/lithic-node/commit/d8c2ff7d486e4b1df82840617d488cfa8741da9d))
30+
* **internal:** always generate MCP server dockerfiles and upgrade associated dependencies ([be9d995](https://github.com/lithic-com/lithic-node/commit/be9d995ae5db402dfc94767b34f5ae789dbcaaf5))
31+
* **internal:** configure MCP Server hosting ([3feac24](https://github.com/lithic-com/lithic-node/commit/3feac242ccbf68dcddadf15443974965b7dbd9d7))
32+
* **internal:** fix pagination internals not accepting option promises ([e258c68](https://github.com/lithic-com/lithic-node/commit/e258c6877e3100c092d48ec5c47f8817dd9fb93d))
33+
* **internal:** refactor flag parsing for MCP servers and add debug flag ([5ddc39b](https://github.com/lithic-com/lithic-node/commit/5ddc39bb1a5c9506f97adc1b2a7c61be442278a1))
34+
* **internal:** support oauth authorization code flow for MCP servers ([cc5b02e](https://github.com/lithic-com/lithic-node/commit/cc5b02ec9163804ea55fe607fec6a414d0802e9a))
35+
36+
37+
### Documentation
38+
39+
* Fix documentation of tokenization channel and tokenization source for tokenization rules ([35696df](https://github.com/lithic-com/lithic-node/commit/35696dfef306ec17da89ff762b59aea931f6a2e5))
40+
341
## 0.128.0 (2026-01-27)
442

543
Full Changelog: [v0.127.0...v0.128.0](https://github.com/lithic-com/lithic-node/compare/v0.127.0...v0.128.0)

package.json

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

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": "lithic-mcp",
3-
"version": "0.128.0",
3+
"version": "0.129.0",
44
"description": "The official MCP Server for the Lithic API",
55
"author": "Lithic <sdk-feedback@lithic.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
@@ -58,7 +58,7 @@ export const newMcpServer = async () =>
5858
new McpServer(
5959
{
6060
name: 'lithic_api',
61-
version: '0.128.0',
61+
version: '0.129.0',
6262
},
6363
{
6464
instructions: await getInstructions(),

src/version.ts

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

0 commit comments

Comments
 (0)