Skip to content

Commit

Permalink
Release v0.4.0
Browse files Browse the repository at this point in the history
 * 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](#325)).
 * Don't load `~/.databrickscfg` if `azure-cli` auth is implicitly configured ([#324](#324)).
 * Fixed newline in codegen comments ([#326](#326)).
 * Update from OpenAPI ([#320](#320), [#328](#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](#318)).
 * Bump golang.org/x/mod from 0.6.0-dev.0.20220419223038-86c51ed26bb4 to 0.8.0 ([#316](#316)).
 * Bump golang.org/x/mod from 0.8.0 to 0.9.0 ([#323](#323)).
 * Bump golang.org/x/oauth2 from 0.5.0 to 0.6.0 ([#322](#322)).
 * Bump golang.org/x/time from 0.0.0-20210723032227-1f47c861a9ac to 0.3.0 ([#317](#317)).
 * Bump google.golang.org/api from 0.110.0 to 0.111.0 ([#319](#319)).
  • Loading branch information
nfx committed Mar 8, 2023
1 parent 3adcf9c commit 857ffff
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)).
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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.
```
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 857ffff

Please sign in to comment.