Skip to content

Commit d98048a

Browse files
authored
Merge pull request #36 from brand-dot-dev/release-please--branches--main--changes--next
release: 0.1.0-alpha.34
2 parents aa89c1d + 7a0b4af commit d98048a

File tree

6 files changed

+19
-15
lines changed

6 files changed

+19
-15
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.1.0-alpha.33"
2+
".": "0.1.0-alpha.34"
33
}

CHANGELOG.md

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

3+
## 0.1.0-alpha.34 (2026-03-06)
4+
5+
Full Changelog: [v0.1.0-alpha.33...v0.1.0-alpha.34](https://github.com/brand-dot-dev/java-sdk/compare/v0.1.0-alpha.33...v0.1.0-alpha.34)
6+
7+
### Chores
8+
9+
* **internal:** bump palantir-java-format ([a0b7293](https://github.com/brand-dot-dev/java-sdk/commit/a0b7293dd2b70262c25ba82ede465e9dcfec3c68))
10+
* **internal:** codegen related update ([0d5dbf7](https://github.com/brand-dot-dev/java-sdk/commit/0d5dbf7c4b9b344b2ce649bad9857eb292a9731c))
11+
312
## 0.1.0-alpha.33 (2026-03-01)
413

514
Full Changelog: [v0.1.0-alpha.32...v0.1.0-alpha.33](https://github.com/brand-dot-dev/java-sdk/compare/v0.1.0-alpha.32...v0.1.0-alpha.33)

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.branddev.api/brand-dev-java)](https://central.sonatype.com/artifact/com.branddev.api/brand-dev-java/0.1.0-alpha.33)
6-
[![javadoc](https://javadoc.io/badge2/com.branddev.api/brand-dev-java/0.1.0-alpha.33/javadoc.svg)](https://javadoc.io/doc/com.branddev.api/brand-dev-java/0.1.0-alpha.33)
5+
[![Maven Central](https://img.shields.io/maven-central/v/com.branddev.api/brand-dev-java)](https://central.sonatype.com/artifact/com.branddev.api/brand-dev-java/0.1.0-alpha.34)
6+
[![javadoc](https://javadoc.io/badge2/com.branddev.api/brand-dev-java/0.1.0-alpha.34/javadoc.svg)](https://javadoc.io/doc/com.branddev.api/brand-dev-java/0.1.0-alpha.34)
77

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

@@ -22,7 +22,7 @@ Use the Brand Dev MCP Server to enable AI assistants to interact with this API,
2222
2323
<!-- x-release-please-start-version -->
2424

25-
The REST API documentation can be found on [docs.brand.dev](https://docs.brand.dev/). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.branddev.api/brand-dev-java/0.1.0-alpha.33).
25+
The REST API documentation can be found on [docs.brand.dev](https://docs.brand.dev/). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.branddev.api/brand-dev-java/0.1.0-alpha.34).
2626

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

@@ -33,7 +33,7 @@ The REST API documentation can be found on [docs.brand.dev](https://docs.brand.d
3333
### Gradle
3434

3535
```kotlin
36-
implementation("com.branddev.api:brand-dev-java:0.1.0-alpha.33")
36+
implementation("com.branddev.api:brand-dev-java:0.1.0-alpha.34")
3737
```
3838

3939
### Maven
@@ -42,7 +42,7 @@ implementation("com.branddev.api:brand-dev-java:0.1.0-alpha.33")
4242
<dependency>
4343
<groupId>com.branddev.api</groupId>
4444
<artifactId>brand-dev-java</artifactId>
45-
<version>0.1.0-alpha.33</version>
45+
<version>0.1.0-alpha.34</version>
4646
</dependency>
4747
```
4848

brand-dev-java-core/src/main/kotlin/com/branddev/api/core/http/RetryingHttpClient.kt

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -214,13 +214,8 @@ private constructor(
214214
}
215215
}
216216
?.let { retryAfterNanos ->
217-
// If the API asks us to wait a certain amount of time (and it's a reasonable
218-
// amount), just
219-
// do what it says.
220-
val retryAfter = Duration.ofNanos(retryAfterNanos.toLong())
221-
if (retryAfter in Duration.ofNanos(0)..Duration.ofMinutes(1)) {
222-
return retryAfter
223-
}
217+
// If the API asks us to wait a certain amount of time, do what it says.
218+
return Duration.ofNanos(retryAfterNanos.toLong())
224219
}
225220

226221
// Apply exponential backoff, but not more than the max.

build.gradle.kts

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

1010
allprojects {
1111
group = "com.branddev.api"
12-
version = "0.1.0-alpha.33" // x-release-please-version
12+
version = "0.1.0-alpha.34" // x-release-please-version
1313
}
1414

1515
subprojects {

buildSrc/src/main/kotlin/brand-dev.java.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ tasks.withType<Test>().configureEach {
5454

5555
val palantir by configurations.creating
5656
dependencies {
57-
palantir("com.palantir.javaformat:palantir-java-format:2.73.0")
57+
palantir("com.palantir.javaformat:palantir-java-format:2.89.0")
5858
}
5959

6060
fun registerPalantir(

0 commit comments

Comments
 (0)