Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Setup Go
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
with:
go-version-file: go.mod

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@ebcb5b36ded6beda4ceefea6a8bc4cc885255bb3 # v3.34.1
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
fail-fast: false
matrix:
goVersion:
- "1.24"
- "1.25"
- "1.26"
steps:
Expand Down
6 changes: 3 additions & 3 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ For scoped coding rules, skills, and prompt templates, see the `.agent/` directo

## Development

Prerequisites: Go 1.24+ (see `go.mod`), `goimports`, `staticcheck`, `gotestsum`.
Prerequisites: Go 1.25+ (see `go.mod`), `goimports`, `staticcheck`, `gotestsum`.

```bash
make build # go build ./...
Expand All @@ -32,8 +32,8 @@ make coverage # View HTML coverage report
make codegen # Regenerate service/ from OpenAPI specs
```

CI runs `make test` across Go 1.24, 1.25, and 1.26; lint and fmt run on Go 1.26.
Code must compile on all CI versions — do not use stdlib APIs newer than Go 1.24
CI runs `make test` across Go 1.25 and 1.26; lint and fmt run on Go 1.26.
Code must compile on all CI versions — do not use stdlib APIs newer than Go 1.25
(the module's minimum version in `go.mod`) without a local shim.

## Architecture
Expand Down
2 changes: 2 additions & 0 deletions NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### Breaking Changes

* Raise the minimum supported Go version from 1.24 to 1.25

### New Features and Improvements

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ The Databricks SDK for Go includes functionality to accelerate development with
```go
module sample

go 1.24
go 1.25

require github.com/databricks/databricks-sdk-go v0.9.0

Expand Down
2 changes: 1 addition & 1 deletion examples/slog/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module main

go 1.24.0
go 1.25.0

replace github.com/databricks/databricks-sdk-go v0.0.0 => ../..

Expand Down
2 changes: 1 addition & 1 deletion examples/zerolog/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module main

go 1.24.0
go 1.25.0

replace github.com/databricks/databricks-sdk-go v0.0.0 => ../..

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/databricks/databricks-sdk-go

go 1.24.0
go 1.25.0

require (
github.com/google/go-cmp v0.7.0
Expand Down
Loading