Skip to content

Commit ff1208c

Browse files
chore: release main
1 parent f7bfe59 commit ff1208c

7 files changed

Lines changed: 25 additions & 6 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"packages/sdk/server-ai": "1.2.0",
2+
"packages/sdk/server-ai": "2.0.0",
33
"packages/ai-providers/server-ai-langchain": "0.8.0",
44
"packages/ai-providers/server-ai-openai": "0.7.0",
55
"packages/optimization": "0.2.1"

packages/ai-providers/server-ai-langchain/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ classifiers = [
2020
"Topic :: Software Development :: Libraries",
2121
]
2222
dependencies = [
23-
"launchdarkly-server-sdk-ai>=1.2.0", # x-release-please-version
23+
"launchdarkly-server-sdk-ai>=2.0.0", # x-release-please-version
2424
"langchain-core>=1.0.0",
2525
"langchain>=1.0.0",
2626
]

packages/ai-providers/server-ai-openai/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ classifiers = [
2020
"Topic :: Software Development :: Libraries",
2121
]
2222
dependencies = [
23-
"launchdarkly-server-sdk-ai>=1.2.0", # x-release-please-version
23+
"launchdarkly-server-sdk-ai>=2.0.0", # x-release-please-version
2424
"openai>=1.0.0",
2525
]
2626

packages/sdk/server-ai/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
All notable changes to the LaunchDarkly Python AI package will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [2.0.0](https://github.com/launchdarkly/python-server-sdk-ai/compare/launchdarkly-server-sdk-ai-1.2.0...launchdarkly-server-sdk-ai-2.0.0) (2026-09-02)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* Make AgentGraph traversal topological ([#214](https://github.com/launchdarkly/python-server-sdk-ai/issues/214))
11+
12+
### Features
13+
14+
* **server-ai:** stamp modelKey and modelVersion on AI usage events (AIC-2851) ([#208](https://github.com/launchdarkly/python-server-sdk-ai/issues/208)) ([66588f0](https://github.com/launchdarkly/python-server-sdk-ai/commit/66588f0c053db9beb021f6b82f9f41a872b7c0dc))
15+
16+
17+
### Bug Fixes
18+
19+
* Make AgentGraph traversal topological ([#214](https://github.com/launchdarkly/python-server-sdk-ai/issues/214)) ([d1828ab](https://github.com/launchdarkly/python-server-sdk-ai/commit/d1828ab3d2d6ccde39074cc7134f6c0d0d02a75d))
20+
* **server-ai:** stop exposing model_key/model_version on ModelConfig ([5f8b5f8](https://github.com/launchdarkly/python-server-sdk-ai/commit/5f8b5f840895252e6ada32aa7e94a0707b91f35d))
21+
* use == 0 for agent graph ready-check parity ([3f801da](https://github.com/launchdarkly/python-server-sdk-ai/commit/3f801da138a8c106832407f9275e72c55e5a3df7))
22+
* use topological order and scoped context for agent graph traversal ([d76b2d9](https://github.com/launchdarkly/python-server-sdk-ai/commit/d76b2d9cfa79e00b5ad9dd91f46a50e26716aaa5))
23+
524
## [1.2.0](https://github.com/launchdarkly/python-server-sdk-ai/compare/launchdarkly-server-sdk-ai-1.1.0...launchdarkly-server-sdk-ai-1.2.0) (2026-07-17)
625

726

packages/sdk/server-ai/PROVENANCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ To verify build provenance attestations, we recommend using the [GitHub CLI `att
99
<!-- x-release-please-start-version -->
1010
```
1111
# Set the version of the library to verify
12-
VERSION=1.2.0
12+
VERSION=2.0.0
1313
```
1414
<!-- x-release-please-end -->
1515

packages/sdk/server-ai/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "launchdarkly-server-sdk-ai"
3-
version = "1.2.0" # x-release-please-version
3+
version = "2.0.0" # x-release-please-version
44
description = "LaunchDarkly SDK for AI"
55
authors = [{name = "LaunchDarkly", email = "dev@launchdarkly.com"}]
66
license = {text = "Apache-2.0"}

packages/sdk/server-ai/src/ldai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.2.0" # x-release-please-version
1+
__version__ = "2.0.0" # x-release-please-version
22

33
from ldclient import log
44

0 commit comments

Comments
 (0)