From c78332b980ff8a2b49870d837b6ab06446b0bd1c Mon Sep 17 00:00:00 2001 From: Jenny Date: Thu, 25 Jun 2026 13:09:36 -0700 Subject: [PATCH] Release Databricks AI Bridge 0.21.0 ## databricks-ai-bridge 0.21.0 databricks-openai 0.17.0 (2026-06-25) ### Improvements - databricks-openai: DatabricksOpenAI and AsyncDatabricksOpenAI clients now follow HTTP redirects by default, configurable via the new `follow_redirects` parameter (#445) ### Bug Fixes - databricks-ai-bridge: Genie now returns the full answer text aggregated from all text attachments (#432) Co-Authored-By: Claude Opus 4.8 --- CHANGELOG.md | 8 ++++++++ integrations/openai/pyproject.toml | 4 ++-- pyproject.toml | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba949634..72496720 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # CHANGELOG +## databricks-ai-bridge 0.21.0 databricks-openai 0.17.0 (2026-06-25) + +### Improvements +- databricks-openai: `DatabricksOpenAI` and `AsyncDatabricksOpenAI` clients now follow HTTP redirects by default, configurable via the new `follow_redirects` parameter (#445) + +### Bug Fixes +- databricks-ai-bridge: Genie now returns the full answer text aggregated from all text attachments (#432) + ## databricks-ai-bridge 0.20.0 databricks-langchain 0.20.0 databricks-openai 0.16.0 (2026-06-10) ### New Features diff --git a/integrations/openai/pyproject.toml b/integrations/openai/pyproject.toml index 99f6a92c..e9838a4e 100644 --- a/integrations/openai/pyproject.toml +++ b/integrations/openai/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "databricks-openai" -version = "0.16.0" +version = "0.17.0" description = "Support for Databricks AI support with OpenAI" authors = [ { name="Databricks", email="agent-feedback@databricks.com" }, @@ -10,7 +10,7 @@ license = { text="Apache-2.0" } requires-python = ">=3.10" dependencies = [ "databricks-ai-search>=0.73", - "databricks-ai-bridge>=0.20.0", + "databricks-ai-bridge>=0.21.0", "openai>=1.99.9", "pydantic>2.10.0", "mlflow>=3.10.1", diff --git a/pyproject.toml b/pyproject.toml index b8f4b26b..b0a7bb18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "databricks-ai-bridge" -version = "0.20.0" +version = "0.21.0" description = "Official Python library for Databricks AI support" authors = [ { name="Databricks", email="agent-feedback@databricks.com" },