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 @@
{
".": "4.15.0"
".": "4.16.0"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 119
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/courier/courier-a64bb97c3455b0689de7f6a297ba1dc1e747561ce310ddb18b9c4a5f4d3d510a.yml
openapi_spec_hash: 6a3b89f3ea7600e784902f61680f8f1a
config_hash: 822a92efc80e63cdb2d496dbd6176620
configured_endpoints: 120
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/courier/courier-cf10f3428ad9b9f636939a9305e80dd49118fea2c3f86cf61bf2b95367469e0f.yml
openapi_spec_hash: a61356bb015cec773770d2b61cabaa58
config_hash: 86b472590f1c27b5a74499744b30c2ee
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 4.16.0 (2026-06-17)

Full Changelog: [v4.15.0...v4.16.0](https://github.com/trycourier/courier-java/compare/v4.15.0...v4.16.0)

### Features

* **openapi:** add add-to-digest JourneyNode variant ([01ef61c](https://github.com/trycourier/courier-java/commit/01ef61c19aef27fb6df26735cf5e1d9ee94cc6b6))
* **openapi:** add DELETE /users/{id}/preferences/{topicId} ([34315dd](https://github.com/trycourier/courier-java/commit/34315ddb9b1b1663efbaf95d9ac9b594039dcd60))

## 4.15.0 (2026-06-12)

Full Changelog: [v4.14.0...v4.15.0](https://github.com/trycourier/courier-java/compare/v4.14.0...v4.15.0)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

allprojects {
group = "com.courier"
version = "4.15.0" // x-release-please-version
version = "4.16.0" // x-release-please-version
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,10 @@ private constructor(
/** Alias for calling [addNode] with `JourneyNode.ofBatch(batch)`. */
fun addNode(batch: JourneyNode.JourneyBatchNode) = addNode(JourneyNode.ofBatch(batch))

/** Alias for calling [addNode] with `JourneyNode.ofAddToDigest(addToDigest)`. */
fun addNode(addToDigest: JourneyNode.JourneyAddToDigestNode) =
addNode(JourneyNode.ofAddToDigest(addToDigest))

/** Alias for calling [addNode] with `JourneyNode.ofExit(exit)`. */
fun addNode(exit: JourneyExitNode) = addNode(JourneyNode.ofExit(exit))

Expand Down
Loading
Loading