Skip to content

Commit 628c30a

Browse files
release: 0.98.0
1 parent c2d4254 commit 628c30a

File tree

4 files changed

+43
-3
lines changed

4 files changed

+43
-3
lines changed

.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.97.0"
2+
".": "0.98.0"
33
}

CHANGELOG.md

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

3+
## 0.98.0 (2025-12-10)
4+
5+
Full Changelog: [v0.97.0...v0.98.0](https://github.com/lithic-com/lithic-go/compare/v0.97.0...v0.98.0)
6+
7+
### Features
8+
9+
* **api:** add bulk card creation APIs ([b9b6d6f](https://github.com/lithic-com/lithic-go/commit/b9b6d6fe2126d1e0eedfaa77a5c29ffe2b7831a8))
10+
* **api:** Add event_streams to auth rules APIs ([e8956cb](https://github.com/lithic-com/lithic-go/commit/e8956cb7728230b222c4b8e25bab944f476a3436))
11+
* **api:** add Google WPP to SDKs ([884c10a](https://github.com/lithic-com/lithic-go/commit/884c10a5f163eba876ddbf4edfc07894461a1f9a))
12+
* **api:** add IS_AFTER / IS_BEFORE operators to Auth Rule APIs ([884c10a](https://github.com/lithic-com/lithic-go/commit/884c10a5f163eba876ddbf4edfc07894461a1f9a))
13+
* **api:** Add new fee types ([e8956cb](https://github.com/lithic-com/lithic-go/commit/e8956cb7728230b222c4b8e25bab944f476a3436))
14+
* **api:** Add optional ach_hold_period ([e8956cb](https://github.com/lithic-com/lithic-go/commit/e8956cb7728230b222c4b8e25bab944f476a3436))
15+
* **api:** add WALLET_RECOMMENDATION_REASONS attribute for tokenization rules ([2a11b16](https://github.com/lithic-com/lithic-go/commit/2a11b1659b3ba327c5a3dc6232b3171ff211bb1c))
16+
* **api:** add webhook schemas to SDKs - add parse and parse_unsafe ([ff840e9](https://github.com/lithic-com/lithic-go/commit/ff840e9306eeed31ccd58c477f5f8286399af3e2))
17+
* **api:** provide a unified model for AuthRule ([2a11b16](https://github.com/lithic-com/lithic-go/commit/2a11b1659b3ba327c5a3dc6232b3171ff211bb1c))
18+
* **api:** support event_streams in auth_rules list endpoint ([8e9cc3c](https://github.com/lithic-com/lithic-go/commit/8e9cc3c7ef4bdcf3c1de9e6e72922feee2792032))
19+
20+
21+
### Bug Fixes
22+
23+
* **api:** extract several common types to reduce duplication ([b9b6d6f](https://github.com/lithic-com/lithic-go/commit/b9b6d6fe2126d1e0eedfaa77a5c29ffe2b7831a8))
24+
* **api:** fix examples in spec that were not fully valid ([2a11b16](https://github.com/lithic-com/lithic-go/commit/2a11b1659b3ba327c5a3dc6232b3171ff211bb1c))
25+
* **api:** make certain payoff fields nullable ([2a11b16](https://github.com/lithic-com/lithic-go/commit/2a11b1659b3ba327c5a3dc6232b3171ff211bb1c))
26+
* **mcp:** correct code tool API endpoint ([174ec9e](https://github.com/lithic-com/lithic-go/commit/174ec9e1fa53e8b700a437ec864f135f1ca89e5a))
27+
* rename param to avoid collision ([6f48a03](https://github.com/lithic-com/lithic-go/commit/6f48a036f88939f79d8111d840c491763044dcac))
28+
29+
30+
### Chores
31+
32+
* elide duplicate aliases ([829889f](https://github.com/lithic-com/lithic-go/commit/829889fb8e62be7cce0405f30d2ddd3918ae374b))
33+
* **internal:** codegen related update ([c2d4254](https://github.com/lithic-com/lithic-go/commit/c2d4254cb85fb5376b30753cb5816d2e2550675c))
34+
* **internal:** codegen related update ([70d9a3d](https://github.com/lithic-com/lithic-go/commit/70d9a3dd440e1693c67cd4b355e2837be01df3c4))
35+
* replace custom webhook signature verification with standardwebhooks ([ff840e9](https://github.com/lithic-com/lithic-go/commit/ff840e9306eeed31ccd58c477f5f8286399af3e2))
36+
* revert some unnecessary custom code ([89da376](https://github.com/lithic-com/lithic-go/commit/89da3762a1cebcfa181fecdfe910ef60834c3360))
37+
38+
39+
### Documentation
40+
41+
* **api:** clarify error 422 for 3DS challenge response ([884c10a](https://github.com/lithic-com/lithic-go/commit/884c10a5f163eba876ddbf4edfc07894461a1f9a))
42+
343
## 0.97.0 (2025-11-20)
444

545
Full Changelog: [v0.96.1...v0.97.0](https://github.com/lithic-com/lithic-go/compare/v0.96.1...v0.97.0)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Or to pin the version:
2222
<!-- x-release-please-start-version -->
2323

2424
```sh
25-
go get -u 'github.com/lithic-com/lithic-go@v0.97.0'
25+
go get -u 'github.com/lithic-com/lithic-go@v0.98.0'
2626
```
2727

2828
<!-- x-release-please-end -->

internal/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
package internal
44

5-
const PackageVersion = "0.97.0" // x-release-please-version
5+
const PackageVersion = "0.98.0" // x-release-please-version

0 commit comments

Comments
 (0)