Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6eae321

Browse files
release: 0.14.0
1 parent 773e8ce commit 6eae321

4 files changed

Lines changed: 41 additions & 7 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.13.0"
2+
".": "0.14.0"
33
}

CHANGELOG.md

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

3+
## 0.14.0 (2026-05-13)
4+
5+
Full Changelog: [v0.13.0...v0.14.0](https://github.com/rye-com/checkout-intents-java/compare/v0.13.0...v0.14.0)
6+
7+
### Features
8+
9+
* **api:** add merchant connector installation link endpoint ([9354874](https://github.com/rye-com/checkout-intents-java/commit/93548741aa1338d4716189525527b66a9f010985))
10+
* Catch cvc expiration early ([af8a360](https://github.com/rye-com/checkout-intents-java/commit/af8a3603d1174918e1e4dcb0f2d49b809ef42634))
11+
* **client:** improve logging ([87fd822](https://github.com/rye-com/checkout-intents-java/commit/87fd822de4b4828802e47f4e055f7409b4a9268e))
12+
* **client:** more robust error parsing ([afe3fdb](https://github.com/rye-com/checkout-intents-java/commit/afe3fdb62b40dad7e0932885bfebe4881b325cd0))
13+
* **client:** support proxy authentication ([d030185](https://github.com/rye-com/checkout-intents-java/commit/d0301857655fbf39f07d39b6e5738d3359ed2568))
14+
* Commission REST endpoints + response enrichment (RYE-6914) ([773e8ce](https://github.com/rye-com/checkout-intents-java/commit/773e8ce188c570a865071364a2ae1b56ad29cc99))
15+
* **commissions:** types + cursor-paginated repo (1/2) ([3146baa](https://github.com/rye-com/checkout-intents-java/commit/3146baa81be3f8dd36a3ae262ffc5d6aa8a96ee4))
16+
* Detect expired CVCs ([1f44693](https://github.com/rye-com/checkout-intents-java/commit/1f4469370c56c05fb913593b4b97821fc3153ff0))
17+
* internal updates ([50fc91e](https://github.com/rye-com/checkout-intents-java/commit/50fc91e4a8bb7c4a77c35c5f9d0e87bc922e3633))
18+
* Revert "Catch cvc expiration early" ([35ce024](https://github.com/rye-com/checkout-intents-java/commit/35ce02411df9daac4a6f22cd2df4d7bb5fd32825))
19+
* support setting headers via env ([74327b3](https://github.com/rye-com/checkout-intents-java/commit/74327b34d7ff5be0e5c3ea507d6e3028872c4cb8))
20+
21+
22+
### Performance Improvements
23+
24+
* **client:** create one json mapper ([617c724](https://github.com/rye-com/checkout-intents-java/commit/617c7249ce33e3e542b4557e075928aab3bd494c))
25+
26+
27+
### Chores
28+
29+
* redact api-key headers in debug logs ([a031359](https://github.com/rye-com/checkout-intents-java/commit/a031359f88102d81f3b80290040208807999ea79))
30+
* remove duplicated dokka setup ([6856d36](https://github.com/rye-com/checkout-intents-java/commit/6856d363d2d726ac8a1f5a58719b6eae560e31a7))
31+
32+
33+
### Documentation
34+
35+
* clarify forwards compat behavior ([716301b](https://github.com/rye-com/checkout-intents-java/commit/716301b6cd032ca0bfd1300ad5a5425eead6af6d))
36+
337
## 0.13.0 (2026-04-27)
438

539
Full Changelog: [v0.12.0...v0.13.0](https://github.com/rye-com/checkout-intents-java/compare/v0.12.0...v0.13.0)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
<!-- x-release-please-start-version -->
44

5-
[![Maven Central](https://img.shields.io/maven-central/v/com.rye/checkout-intents)](https://central.sonatype.com/artifact/com.rye/checkout-intents/0.13.0)
6-
[![javadoc](https://javadoc.io/badge2/com.rye/checkout-intents/0.13.0/javadoc.svg)](https://javadoc.io/doc/com.rye/checkout-intents/0.13.0)
5+
[![Maven Central](https://img.shields.io/maven-central/v/com.rye/checkout-intents)](https://central.sonatype.com/artifact/com.rye/checkout-intents/0.14.0)
6+
[![javadoc](https://javadoc.io/badge2/com.rye/checkout-intents/0.14.0/javadoc.svg)](https://javadoc.io/doc/com.rye/checkout-intents/0.14.0)
77

88
<!-- x-release-please-end -->
99

@@ -13,7 +13,7 @@ It is generated with [Stainless](https://www.stainless.com/).
1313

1414
<!-- x-release-please-start-version -->
1515

16-
The REST API documentation can be found on [docs.rye.com](https://docs.rye.com). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.rye/checkout-intents/0.13.0).
16+
The REST API documentation can be found on [docs.rye.com](https://docs.rye.com). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.rye/checkout-intents/0.14.0).
1717

1818
<!-- x-release-please-end -->
1919

@@ -24,7 +24,7 @@ The REST API documentation can be found on [docs.rye.com](https://docs.rye.com).
2424
### Gradle
2525

2626
```kotlin
27-
implementation("com.rye:checkout-intents:0.13.0")
27+
implementation("com.rye:checkout-intents:0.14.0")
2828
```
2929

3030
### Maven
@@ -33,7 +33,7 @@ implementation("com.rye:checkout-intents:0.13.0")
3333
<dependency>
3434
<groupId>com.rye</groupId>
3535
<artifactId>checkout-intents</artifactId>
36-
<version>0.13.0</version>
36+
<version>0.14.0</version>
3737
</dependency>
3838
```
3939

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88

99
allprojects {
1010
group = "com.rye"
11-
version = "0.13.0" // x-release-please-version
11+
version = "0.14.0" // x-release-please-version
1212
}
1313

1414
subprojects {

0 commit comments

Comments
 (0)