databricks/databricks-sdk-java v0.117.0
databricks/databricks-sdk-java
Captured source
source ↗published Jun 8, 2026seen 2dcaptured 10hhttp 200method plain
v0.117.0
Repository: databricks/databricks-sdk-java
Tag: v0.117.0
Published: 2026-06-08T09:47:11Z
Prerelease: no
Release notes:
New Features and Improvements
- Detect the
AI_AGENTenvironment variable (Vercel@vercel/detect-agentconvention) as a secondary fallback for the AI agent reported in the user agent, consulted only when the agents.mdAGENTvariable is unset or empty. An unrecognizedAGENTorAI_AGENTvalue is now passed through as-is (sanitized to the user agent allowlist and capped at 64 characters) instead of being reported asunknown. Mirrors databricks/databricks-sdk-go#1683.
- Added
Paginator.newTokenPagination(...)andPaginator.newOffsetPagination(...)factory methods incom.databricks.sdk.support, which make the pagination strategy explicit. ThePaginatorconstructor is now deprecated in favor of these; it keeps its previous (offset/limit) behavior.
Bug Fixes
- Fixed
Paginatorsilently dropping results when a token-paginated response returned an empty page with a non-emptynext_page_token. List methods (e.g.tables().list()) now keep paging until the page token is absent instead of stopping at the first empty page.