Skip to content

Commit

Permalink
Release v0.24.1
Browse files Browse the repository at this point in the history
* Make sure path parameters are first in order in RequiredFields ([#669](#669)).
* Added Field.IsRequestBodyField method for code generation ([#670](#670)).
* Add regressions question to the issue template ([#676](#676)).
* Add telemetry for CI/CD platform to useragent ([#665](#665)).
* Skip GCP Integration Tests using Statement Execution API ([#678](#678)).
* Add more detailed error message on default credentials not found error ([#679](#679)).

Dependency updates:

 * Bump google.golang.org/api from 0.146.0 to 0.150.0 ([#683](#683)).
 * Bump golang.org/x/mod from 0.13.0 to 0.14.0 ([#681](#681)).
 * Bump google.golang.org/grpc from 1.57.0 to 1.57.1 in /examples/zerolog ([#674](#674)).
 * Bump google.golang.org/grpc from 1.58.2 to 1.58.3 in /examples/slog ([#672](#672)).
 * Bump google.golang.org/grpc from 1.58.2 to 1.58.3 in /examples/zerolog ([#684](#684)).
 * Bump golang.org/x/time from 0.3.0 to 0.4.0 ([#680](#680)).
  • Loading branch information
tanmay-db committed Nov 8, 2023
1 parent 712fcfe commit 8073013
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Version changelog

## 0.24.1

* Make sure path parameters are first in order in RequiredFields ([#669](https://github.com/databricks/databricks-sdk-go/pull/669)).
* Added Field.IsRequestBodyField method for code generation ([#670](https://github.com/databricks/databricks-sdk-go/pull/670)).
* Add regressions question to the issue template ([#676](https://github.com/databricks/databricks-sdk-go/pull/676)).
* Add telemetry for CI/CD platform to useragent ([#665](https://github.com/databricks/databricks-sdk-go/pull/665)).
* Skip GCP Integration Tests using Statement Execution API ([#678](https://github.com/databricks/databricks-sdk-go/pull/678)).
* Add more detailed error message on default credentials not found error ([#679](https://github.com/databricks/databricks-sdk-go/pull/679)).

Dependency updates:

* Bump google.golang.org/api from 0.146.0 to 0.150.0 ([#683](https://github.com/databricks/databricks-sdk-go/pull/683)).
* Bump golang.org/x/mod from 0.13.0 to 0.14.0 ([#681](https://github.com/databricks/databricks-sdk-go/pull/681)).
* Bump google.golang.org/grpc from 1.57.0 to 1.57.1 in /examples/zerolog ([#674](https://github.com/databricks/databricks-sdk-go/pull/674)).
* Bump google.golang.org/grpc from 1.58.2 to 1.58.3 in /examples/slog ([#672](https://github.com/databricks/databricks-sdk-go/pull/672)).
* Bump google.golang.org/grpc from 1.58.2 to 1.58.3 in /examples/zerolog ([#684](https://github.com/databricks/databricks-sdk-go/pull/684)).
* Bump golang.org/x/time from 0.3.0 to 0.4.0 ([#680](https://github.com/databricks/databricks-sdk-go/pull/680)).

## 0.24.0

* Implemented Iterator support for paginated endpoints or endpoints returning a list ([#543](https://github.com/databricks/databricks-sdk-go/pull/543)). The Iterator interface allows users to get the next resource in the iterator and to check whether another resource is available in the iterator. Iterators for paginated endpoints fetch pages lazily, allowing users to only fetch the pages needed for their use case.
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.24.0"
const Version = "0.24.1"

0 comments on commit 8073013

Please sign in to comment.