Skip to content
Closed
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions integrations/openai/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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" },
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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" },
Expand Down
Loading