Skip to content

Commit dd521ee

Browse files
pieternclaude
andauthored
Upgrade Go SDK to v0.94.0 (#4148)
## Changes See https://github.com/databricks/databricks-sdk-go/releases/tag/v0.94.0. Notable change is a fix for U2M OAuth token caching, where repeated token calls on a valid token now return directly. ## Tests Local tests pass. --------- Co-authored-by: Claude Sonnet 4.5 <[email protected]>
1 parent add35fe commit dd521ee

File tree

15 files changed

+152
-64
lines changed

15 files changed

+152
-64
lines changed

.codegen/_openapi_sha

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8b2cd47cbac64b32e120601110a5fc70b8189ba4
1+
e1ea3f5ba0bc5b53be94f56535a67ba701a52a52

NEXT_CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111
* Pass SYSTEM_ACCESSTOKEN from env to the Terraform provider ([#4135](https://github.com/databricks/cli/pull/4135)
1212

1313
### Dependency updates
14+
* Upgrade Go SDK to 0.94.0 ([#4148](https://github.com/databricks/cli/pull/4148))
1415

1516
### API Changes

acceptance/bundle/run/inline-script/databricks-cli/profile-is-passed/from_flag/out.requests.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
"method": "GET",
33
"path": "/oidc/.well-known/oauth-authorization-server"
44
}
5+
{
6+
"headers": {
7+
"Authorization": [
8+
"Basic [ENCODED_AUTH]"
9+
]
10+
},
11+
"method": "POST",
12+
"path": "/oidc/v1/token",
13+
"raw_body": "grant_type=client_credentials\u0026scope=all-apis"
14+
}
515
{
616
"method": "GET",
717
"path": "/oidc/.well-known/oauth-authorization-server"

acceptance/bundle/run/inline-script/databricks-cli/target-is-passed/from_flag/out.requests.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
"method": "GET",
33
"path": "/oidc/.well-known/oauth-authorization-server"
44
}
5+
{
6+
"headers": {
7+
"Authorization": [
8+
"Basic [ENCODED_AUTH]"
9+
]
10+
},
11+
"method": "POST",
12+
"path": "/oidc/v1/token",
13+
"raw_body": "grant_type=client_credentials\u0026scope=all-apis"
14+
}
515
{
616
"method": "GET",
717
"path": "/oidc/.well-known/oauth-authorization-server"

bundle/internal/schema/annotations_openapi.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -556,6 +556,7 @@ github.com/databricks/cli/bundle/config/resources.Job:
556556
"performance_target":
557557
"description": |-
558558
The performance mode on a serverless job. This field determines the level of compute performance or cost-efficiency for the run.
559+
The performance target does not apply to tasks that run on Serverless GPU compute.
559560
560561
* `STANDARD`: Enables cost-efficient execution of serverless workloads.
561562
* `PERFORMANCE_OPTIMIZED`: Prioritizes fast startup and execution times through rapid scaling and optimized cluster performance.

bundle/schema/jsonschema.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmd/workspace/alerts-legacy/alerts-legacy.go

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmd/workspace/data-sources/data-sources.go

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmd/workspace/feature-engineering/feature-engineering.go

Lines changed: 12 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmd/workspace/pipelines/pipelines.go

Lines changed: 76 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)