Skip to content
Merged
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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# CHANGELOG

## databricks-ai-bridge 0.14.0 databricks-langchain 0.15.0 databricks-openai 0.11.0 databricks-mcp 0.8.0 (2026-02-09)

### New Features
- databricks-ai-bridge: Added `AsyncLakebaseSQLAlchemy` class for SQLAlchemy async engine with automatic OAuth token rotation
- databricks-openai: Added `AsyncDatabricksSession` class supporting Session Protocol for stateful conversation management
- databricks-openai: Added support for querying Databricks apps via OpenAI client
- databricks-langchain: Added async support for `similarity_search_by_vector_with_score`
- databricks-langchain: Added async support to `ChatDatabricks`

### Improvements
- Updated Lakebase token cache duration to 15 minutes per Databricks documentation

### Testing & Infrastructure
- Added pytest coverage reporting to CI

## databricks-ai-bridge 0.13.0 databricks-langchain 0.14.0 databricks-openai 0.10.0 databricks-mcp 0.7.0 (2026-01-28)

- Lakebase Permission Granting SDK
Expand Down
2 changes: 1 addition & 1 deletion databricks_mcp/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "databricks-mcp"
version = "0.7.0"
version = "0.8.0"
description = "MCP helpers for Databricks"
authors = [
{ name="Databricks", email="agent-feedback@databricks.com" },
Expand Down
2 changes: 1 addition & 1 deletion integrations/langchain/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "databricks-langchain"
version = "0.14.0"
version = "0.15.0"
description = "Support for Databricks AI support in LangChain"
authors = [
{ name="Databricks", email="agent-feedback@databricks.com" },
Expand Down
8 changes: 4 additions & 4 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.10.0"
version = "0.11.0"
description = "Support for Databricks AI support with OpenAI"
authors = [
{ name="Databricks", email="agent-feedback@databricks.com" },
Expand All @@ -11,7 +11,7 @@ requires-python = ">=3.10"
dependencies = [
"databricks-vectorsearch>=0.50",
"langchain>=0.3.0",
"databricks-ai-bridge>=0.13.0",
"databricks-ai-bridge>=0.14.0",
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Needs newer databricks-ai-bridge due to dependencies introduced in 4fbc9ea

"openai>=1.99.9",
"pydantic>2.10.0",
"mlflow>=2.20.1",
Expand All @@ -22,7 +22,7 @@ dependencies = [

[project.optional-dependencies]
memory = [
"databricks-ai-bridge[memory]>=0.13.0",
"databricks-ai-bridge[memory]>=0.14.0",
]

[dependency-groups]
Expand All @@ -39,7 +39,7 @@ tests = [
"pytest-asyncio>=1.3.0",
"pytest-timeout>=2.3.1",
"pytest-cov>=4.1.0",
"databricks-ai-bridge[memory]>=0.13.0",
"databricks-ai-bridge[memory]>=0.14.0",
]

[build-system]
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.13.0"
version = "0.14.0"
description = "Official Python library for Databricks AI support"
authors = [
{ name="Databricks", email="agent-feedback@databricks.com" },
Expand Down
Loading