From 61533b756d509bec0929d1ba2e55e97c8e44b115 Mon Sep 17 00:00:00 2001 From: Miles Yucht Date: Tue, 14 May 2024 11:23:28 +0200 Subject: [PATCH] Release v0.40.1 * Fixed codecov for repository ([#909](https://github.com/databricks/databricks-sdk-go/pull/909)). * Add traceparent header to enable distributed tracing. ([#914](https://github.com/databricks/databricks-sdk-go/pull/914)). * Log cancelled and failed requests ([#919](https://github.com/databricks/databricks-sdk-go/pull/919)). Dependency updates: * Bump golang.org/x/net from 0.22.0 to 0.24.0 ([#884](https://github.com/databricks/databricks-sdk-go/pull/884)). * Bump golang.org/x/net from 0.17.0 to 0.23.0 in /examples/zerolog ([#896](https://github.com/databricks/databricks-sdk-go/pull/896)). * Bump golang.org/x/net from 0.21.0 to 0.23.0 in /examples/slog ([#897](https://github.com/databricks/databricks-sdk-go/pull/897)). --- CHANGELOG.md | 12 ++++++++++++ version/version.go | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed9078690..7c3acc430 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Version changelog +## 0.40.1 + +* Fixed codecov for repository ([#909](https://github.com/databricks/databricks-sdk-go/pull/909)). +* Add traceparent header to enable distributed tracing. ([#914](https://github.com/databricks/databricks-sdk-go/pull/914)). +* Log cancelled and failed requests ([#919](https://github.com/databricks/databricks-sdk-go/pull/919)). + +Dependency updates: + + * Bump golang.org/x/net from 0.22.0 to 0.24.0 ([#884](https://github.com/databricks/databricks-sdk-go/pull/884)). + * Bump golang.org/x/net from 0.17.0 to 0.23.0 in /examples/zerolog ([#896](https://github.com/databricks/databricks-sdk-go/pull/896)). + * Bump golang.org/x/net from 0.21.0 to 0.23.0 in /examples/slog ([#897](https://github.com/databricks/databricks-sdk-go/pull/897)). + ## 0.40.0 * Allow unlimited timeouts in retries ([#904](https://github.com/databricks/databricks-sdk-go/pull/904)). By setting RETRY_TIMEOUT_SECONDS to a negative value, WorkspaceClient and AccountClient will retry retriable failures indefinitely. As a reminder, without setting this parameter, the default retry timeout is 5 minutes. diff --git a/version/version.go b/version/version.go index dd1a32fe7..04cd953ea 100644 --- a/version/version.go +++ b/version/version.go @@ -1,4 +1,4 @@ package version // Version of the SDK, updated manually before every tag -const Version = "0.40.0" +const Version = "0.40.1"