Skip to content

Commit 432bb06

Browse files
chore: release main (#202)
🤖 I have created a release *beep* *boop* --- <details><summary>launchdarkly-server-sdk-ai: 1.1.0</summary> ## [1.1.0](launchdarkly-server-sdk-ai-1.0.1...launchdarkly-server-sdk-ai-1.1.0) (2026-06-05) ### Features * Add region property to ModelConfig ([45707b6](45707b6)) * Add region property to ModelConfig ([219f71b](219f71b)) * Add region property to ModelConfig ([3427d26](3427d26)) </details> --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Mechanical version and changelog updates from Release Please; no runtime logic changes in this diff. > > **Overview** > **Release Please** cuts **launchdarkly-server-sdk-ai `1.1.0`** (from `1.0.1`) and aligns release metadata across the monorepo. > > Version strings move to **`1.1.0`** in the release manifest, `packages/sdk/server-ai` (`pyproject.toml`, `ldai.__version__`), and **PROVENANCE** verification docs. **CHANGELOG** adds the **`1.1.0`** section noting the shipped feature: optional **`region`** on **`ModelConfig`** (for model deployment region from AI config variations). > > **LangChain** and **OpenAI** provider packages bump their **`launchdarkly-server-sdk-ai`** dependency floor from **`>=1.0.1`** to **`>=1.1.0`** so installs stay compatible with this release. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 2513f16. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY --> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Jason Bailey <jbailey@launchdarkly.com>
1 parent 45707b6 commit 432bb06

7 files changed

Lines changed: 13 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.0.1",
2+
"packages/sdk/server-ai": "1.1.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.1.0"

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.0.1", # x-release-please-version
23+
"launchdarkly-server-sdk-ai>=1.1.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.0.1", # x-release-please-version
23+
"launchdarkly-server-sdk-ai>=1.1.0", # x-release-please-version
2424
"openai>=1.0.0",
2525
]
2626

packages/sdk/server-ai/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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+
## [1.1.0](https://github.com/launchdarkly/python-server-sdk-ai/compare/launchdarkly-server-sdk-ai-1.0.1...launchdarkly-server-sdk-ai-1.1.0) (2026-06-05)
6+
7+
8+
### Features
9+
10+
* Add region property to ModelConfig ([45707b6](https://github.com/launchdarkly/python-server-sdk-ai/commit/45707b691afc1031992add2d75b1b2fa0313c10a))
11+
512
## [1.0.1](https://github.com/launchdarkly/python-server-sdk-ai/compare/launchdarkly-server-sdk-ai-1.0.0...launchdarkly-server-sdk-ai-1.0.1) (2026-05-19)
613

714

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.0.1
12+
VERSION=1.1.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.0.1" # x-release-please-version
3+
version = "1.1.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.0.1" # x-release-please-version
1+
__version__ = "1.1.0" # x-release-please-version
22

33
from ldclient import log
44

0 commit comments

Comments
 (0)