Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.13.0"
".": "1.14.0"
}
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [1.14.0](https://github.com/orbcorp/orb-java/compare/v1.13.0...v1.14.0) (2026-07-16)


### Features

* **api:** add alert deletion, customer portal session, and invoice PDF regeneration endpoints ([52c7a44](https://github.com/orbcorp/orb-java/commit/52c7a4489b96984a0e4e49dd4adefced67e8dd34))
* **api:** remove deprecated debug field from events backfill endpoints ([37bae4a](https://github.com/orbcorp/orb-java/commit/37bae4a596ec5eff0452dff5c5aac83d50e8a3e5))
* **api:** remove deprecated debug parameter and field from backfill endpoints ([37bae4a](https://github.com/orbcorp/orb-java/commit/37bae4a596ec5eff0452dff5c5aac83d50e8a3e5))
* **api:** remove deprecated debug query parameter and field from events API ([37bae4a](https://github.com/orbcorp/orb-java/commit/37bae4a596ec5eff0452dff5c5aac83d50e8a3e5))

## [1.13.0](https://github.com/orbcorp/orb-java/compare/v1.12.0...v1.13.0) (2026-07-15)


Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

[![Maven Central](https://img.shields.io/maven-central/v/com.withorb.api/orb-java)](https://central.sonatype.com/artifact/com.withorb.api/orb-java/1.13.0)
[![Maven Central](https://img.shields.io/maven-central/v/com.withorb.api/orb-java)](https://central.sonatype.com/artifact/com.withorb.api/orb-java/1.14.0)

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

Expand All @@ -19,7 +19,7 @@ The REST API documentation can be found on [docs.withorb.com](https://docs.witho
### Gradle

```kotlin
implementation("com.withorb.api:orb-java:1.13.0")
implementation("com.withorb.api:orb-java:1.14.0")
```

### Maven
Expand All @@ -28,7 +28,7 @@ implementation("com.withorb.api:orb-java:1.13.0")
<dependency>
<groupId>com.withorb.api</groupId>
<artifactId>orb-java</artifactId>
<version>1.13.0</version>
<version>1.14.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
allprojects {
group = "com.withorb.api"
version = "1.13.0" // x-release-please-version
version = "1.14.0" // x-release-please-version
}

subprojects {
Expand Down
Loading