Skip to content

Commit 11de56f

Browse files
Fixed regression in databricks auth login for OAuth redirect URL (#3417)
## Changes This PR pins the SDK to the commit bbc4b3da42838e7b72ac47508dc79003b73e6473 based on the PR: databricks/databricks-sdk-go#1267 This commit is v0.79.0 + reverted databricks/databricks-sdk-go@667c53b. Doing this fixes the `auth login` command. Git log from the commit bbc4b3da42838e7b72ac47508dc79003b73e6473: ``` commit bbc4b3da42838e7b72ac47508dc79003b73e6473 (HEAD, origin/fix-u2m-2, fix-u2m-2) Author: Shreyas Goenka <[email protected]> Date: Thu Aug 14 09:44:06 2025 +0200 Revert "Use a free port in `u2m` authentication flows rather than 8020. (#1239)" This reverts commit 667c53b472be6ba8866a927fe2ef7e7e8e668cad. commit f7762ab1465ff8fe03827d61e05402142b8c3401 (tag: v0.79.0) Author: deco-sdk-tagging[bot] <192229699+deco-sdk-tagging[bot]@users.noreply.github.com> Date: Wed Aug 6 09:47:17 2025 +0000 [Release] Release v0.79.0 ## Release v0.79.0 ``` ## Tests Manually, auth login works now. Fixes #3416
1 parent c8ab19d commit 11de56f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

NEXT_CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# NEXT CHANGELOG
22

3-
## Release v0.265.0
3+
## Release v0.264.1
44

55
### Notable Changes
6+
* Fixed regression in databricks auth login for OAuth redirect URL ([#3417](https://github.com/databricks/cli/pull/3417))
67

78
### Dependency updates
89

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
github.com/BurntSushi/toml v1.5.0 // MIT
1010
github.com/Masterminds/semver/v3 v3.4.0 // MIT
1111
github.com/briandowns/spinner v1.23.1 // Apache 2.0
12-
github.com/databricks/databricks-sdk-go v0.79.0 // Apache 2.0
12+
github.com/databricks/databricks-sdk-go v0.0.0-20250814074406-bbc4b3da4283 // Apache 2.0
1313
github.com/fatih/color v1.18.0 // MIT
1414
github.com/google/uuid v1.6.0 // BSD-3-Clause
1515
github.com/gorilla/mux v1.8.1 // BSD 3-Clause

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ github.com/cloudflare/circl v1.6.1/go.mod h1:uddAzsPgqdMAYatqJ0lsjX1oECcQLIlRpzZ
3333
github.com/cpuguy83/go-md2man/v2 v2.0.6/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6NIQQ7OS05n1F4g=
3434
github.com/cyphar/filepath-securejoin v0.4.1 h1:JyxxyPEaktOD+GAnqIqTf9A8tHyAG22rowi7HkoSU1s=
3535
github.com/cyphar/filepath-securejoin v0.4.1/go.mod h1:Sdj7gXlvMcPZsbhwhQ33GguGLDGQL7h7bg04C/+u9jI=
36-
github.com/databricks/databricks-sdk-go v0.79.0 h1:lIgI7nlFe7wRuKjuvmiKP7wfmsdKOuefykPtTNAfaq0=
37-
github.com/databricks/databricks-sdk-go v0.79.0/go.mod h1:xBtjeP9nq+6MgTewZW1EcbRkD7aDY9gZvcRPcwPhZjw=
36+
github.com/databricks/databricks-sdk-go v0.0.0-20250814074406-bbc4b3da4283 h1:n7obV/M2k5YskotnlFH6p+q18chZANsWU1Ix6U061G4=
37+
github.com/databricks/databricks-sdk-go v0.0.0-20250814074406-bbc4b3da4283/go.mod h1:xBtjeP9nq+6MgTewZW1EcbRkD7aDY9gZvcRPcwPhZjw=
3838
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3939
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
4040
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=

0 commit comments

Comments
 (0)