Skip to content
Open
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,5 +1,5 @@
{
"lib/sdk/server-ai": "0.1.0",
"lib/sdk/server-ai": "0.2.0",
"lib/java-server-sdk-otel": "0.2.0",
"lib/java-server-sdk-redis-store": "3.2.0",
"lib/shared/common": "2.5.0",
Expand Down
17 changes: 16 additions & 1 deletion lib/sdk/server-ai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
# Change log
# Changelog

## [0.2.0](https://github.com/launchdarkly/java-core/compare/launchdarkly-java-server-sdk-ai-0.1.0...launchdarkly-java-server-sdk-ai-0.2.0) (2026-07-13)


### Features

* Add AIConfigTracker with at-most-once tracking and resumption tokens ([#179](https://github.com/launchdarkly/java-core/issues/179)) ([9a9941b](https://github.com/launchdarkly/java-core/commit/9a9941b20060e4668380db835727d379bf30cf55))
* add Runner, RunnerResult, Judge, and Evaluator ([#180](https://github.com/launchdarkly/java-core/issues/180)) ([a32c4fa](https://github.com/launchdarkly/java-core/commit/a32c4fa1fe2cc98c189fe9541de4edfa35bed115))
* Add template config methods to AI SDK ([#184](https://github.com/launchdarkly/java-core/issues/184)) ([29f31fc](https://github.com/launchdarkly/java-core/commit/29f31fc91c833169982a0cd8988aa2a99fb75231))
* Agent graph support ([#181](https://github.com/launchdarkly/java-core/issues/181)) ([47c4f36](https://github.com/launchdarkly/java-core/commit/47c4f36b95fe96027f51fef5c26fc797456c2e51))
* AgentControl data model, parsing & interpolation (AIC-2662) ([#171](https://github.com/launchdarkly/java-core/issues/171)) ([d954ba6](https://github.com/launchdarkly/java-core/commit/d954ba602713b991b6845fa74ae992e775a70001))
* AICONF config types & LDAIClient methods (AIC-2663) ([#173](https://github.com/launchdarkly/java-core/issues/173)) ([ad2ac08](https://github.com/launchdarkly/java-core/commit/ad2ac08c571ef067f3df79a2c0774229c722cc90))
* vendor Mustache templating engine & add Interpolator (AIC-2695) ([#172](https://github.com/launchdarkly/java-core/issues/172)) ([32732ea](https://github.com/launchdarkly/java-core/commit/32732eac85f727e7f27e97304f27cd1d7ba6b3a6))

## Change log

All notable changes to the LaunchDarkly Server-Side AI SDK for Java will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org).
2 changes: 1 addition & 1 deletion lib/sdk/server-ai/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#x-release-please-start-version
version=0.1.0
version=0.2.0
Comment thread
cursor[bot] marked this conversation as resolved.
#x-release-please-end
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public final class AISdkInfo {
* packaged jar.
*/
// x-release-please-start-version
public static final String VERSION = "0.1.0";
public static final String VERSION = "0.2.0";
// x-release-please-end

private AISdkInfo() {
Expand Down
Loading