diff --git a/CHANGELOG.md b/CHANGELOG.md index a4713fd6a..5b37b222f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Version changelog +## 0.4.0 + + * Added `id` field to the `NodeTypeRequest` for easier integration with Terraform's [databricks_node_type](https://registry.terraform.io/providers/databricks/databricks/latest/docs/data-sources/node_type) data source ([#325](https://github.com/databricks/databricks-sdk-go/pull/325)). + * Don't load `~/.databrickscfg` if `azure-cli` auth is implicitly configured ([#324](https://github.com/databricks/databricks-sdk-go/pull/324)). + * Fixed newline in codegen comments ([#326](https://github.com/databricks/databricks-sdk-go/pull/326)). + * Update from OpenAPI ([#320](https://github.com/databricks/databricks-sdk-go/pull/320), [#328](https://github.com/databricks/databricks-sdk-go/pull/328)). + +API changes: + +* Renamed `deployment.AwsCredentials` to `deployment.CreateCredentialAwsCredentials`. +* Renamed `deployment.StsRole` to `deployment.CreateCredentialStsRole`. +* Removed schedules support from `sql.AlertsAPI`. + +Dependency updates: + + * Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 ([#318](https://github.com/databricks/databricks-sdk-go/pull/318)). + * Bump golang.org/x/mod from 0.6.0-dev.0.20220419223038-86c51ed26bb4 to 0.8.0 ([#316](https://github.com/databricks/databricks-sdk-go/pull/316)). + * Bump golang.org/x/mod from 0.8.0 to 0.9.0 ([#323](https://github.com/databricks/databricks-sdk-go/pull/323)). + * Bump golang.org/x/oauth2 from 0.5.0 to 0.6.0 ([#322](https://github.com/databricks/databricks-sdk-go/pull/322)). + * Bump golang.org/x/time from 0.0.0-20210723032227-1f47c861a9ac to 0.3.0 ([#317](https://github.com/databricks/databricks-sdk-go/pull/317)). + * Bump google.golang.org/api from 0.110.0 to 0.111.0 ([#319](https://github.com/databricks/databricks-sdk-go/pull/319)). + ## 0.3.3 * Allow AAD SPN authentication on Databricks Account level ([#311](https://github.com/databricks/databricks-sdk-go/pull/311)). diff --git a/README.md b/README.md index a1e5620d7..fbd2a3244 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ The Databricks SDK for Go includes functionality to accelerate development with 2. Take a dependency on the Databricks SDK for Go package by running the `go mod edit -require` command: ```bash - go mod edit -require github.com/databricks/databricks-sdk-go@v0.2.0 + go mod edit -require github.com/databricks/databricks-sdk-go@latest ``` Your `go.mod` file should now look like this: @@ -38,7 +38,7 @@ The Databricks SDK for Go includes functionality to accelerate development with go 1.18 - require github.com/databricks/databricks-sdk-go v0.2.0 + require github.com/databricks/databricks-sdk-go v0.4.0 // Indirect dependencies will go here. ``` diff --git a/version/version.go b/version/version.go index 5c33a84d5..f346195a9 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.3.3" +const Version = "0.4.0"