Skip to content

Commit 9b2ef34

Browse files
authored
Upgrade go deps and bump minimum version to Go 1.23 (#931)
1 parent da6d92e commit 9b2ef34

File tree

5 files changed

+164
-179
lines changed

5 files changed

+164
-179
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1010
## [v3.24.2]
1111

1212
- Add `TableExists` table existence check for the mysql dialect (#895)
13-
- Upgrade **minimum Go version to 1.22** (#909)
13+
- Upgrade **minimum Go version to 1.23**
1414
- Various dependency updates
1515

1616
## [v3.24.1]

go.mod

Lines changed: 21 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/pressly/goose/v3
22

3-
go 1.22.0
3+
go 1.23.0
44

5-
toolchain go1.24.0
5+
toolchain go1.24.1
66

77
require (
88
github.com/ClickHouse/clickhouse-go/v2 v2.33.1
@@ -19,61 +19,59 @@ require (
1919
github.com/ydb-platform/ydb-go-sdk/v3 v3.104.7
2020
github.com/ziutek/mymysql v1.5.4
2121
go.uber.org/multierr v1.11.0
22-
golang.org/x/sync v0.11.0
23-
modernc.org/sqlite v1.36.1
22+
golang.org/x/sync v0.12.0
23+
modernc.org/sqlite v1.36.2
2424
)
2525

2626
require (
2727
filippo.io/edwards25519 v1.1.0 // indirect
2828
github.com/ClickHouse/ch-go v0.65.1 // indirect
2929
github.com/andybalholm/brotli v1.1.1 // indirect
30-
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
31-
github.com/coder/websocket v1.8.12 // indirect
30+
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
31+
github.com/coder/websocket v1.8.13 // indirect
3232
github.com/davecgh/go-spew v1.1.1 // indirect
3333
github.com/dustin/go-humanize v1.0.1 // indirect
34-
github.com/elastic/go-sysinfo v1.11.2 // indirect
35-
github.com/elastic/go-windows v1.0.1 // indirect
34+
github.com/elastic/go-sysinfo v1.15.2 // indirect
35+
github.com/elastic/go-windows v1.0.2 // indirect
3636
github.com/go-faster/city v1.0.1 // indirect
3737
github.com/go-faster/errors v0.7.1 // indirect
3838
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
3939
github.com/golang-jwt/jwt/v5 v5.2.2 // indirect
4040
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
4141
github.com/golang-sql/sqlexp v0.1.0 // indirect
42-
github.com/golang/protobuf v1.5.4 // indirect
4342
github.com/google/uuid v1.6.0 // indirect
4443
github.com/jackc/pgpassfile v1.0.0 // indirect
4544
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
4645
github.com/jackc/puddle/v2 v2.2.2 // indirect
47-
github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901 // indirect
48-
github.com/jonboulle/clockwork v0.4.0 // indirect
49-
github.com/klauspost/compress v1.17.11 // indirect
46+
github.com/jonboulle/clockwork v0.5.0 // indirect
47+
github.com/klauspost/compress v1.18.0 // indirect
5048
github.com/mattn/go-isatty v0.0.20 // indirect
5149
github.com/ncruces/go-strftime v0.1.9 // indirect
5250
github.com/paulmach/orb v0.11.1 // indirect
5351
github.com/pierrec/lz4/v4 v4.1.22 // indirect
5452
github.com/pkg/errors v0.9.1 // indirect
5553
github.com/pmezard/go-difflib v1.0.0 // indirect
56-
github.com/prometheus/procfs v0.12.0 // indirect
54+
github.com/prometheus/procfs v0.16.0 // indirect
5755
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
5856
github.com/rogpeppe/go-internal v1.13.1 // indirect
5957
github.com/segmentio/asm v1.2.0 // indirect
6058
github.com/shopspring/decimal v1.4.0 // indirect
6159
github.com/ydb-platform/ydb-go-genproto v0.0.0-20241112172322-ea1f63298f77 // indirect
6260
go.opentelemetry.io/otel v1.35.0 // indirect
6361
go.opentelemetry.io/otel/trace v1.35.0 // indirect
64-
golang.org/x/crypto v0.33.0 // indirect
65-
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 // indirect
66-
golang.org/x/net v0.35.0 // indirect
67-
golang.org/x/sys v0.30.0 // indirect
68-
golang.org/x/text v0.22.0 // indirect
69-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect
70-
google.golang.org/grpc v1.62.1 // indirect
71-
google.golang.org/protobuf v1.33.0 // indirect
62+
golang.org/x/crypto v0.36.0 // indirect
63+
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 // indirect
64+
golang.org/x/net v0.38.0 // indirect
65+
golang.org/x/sys v0.31.0 // indirect
66+
golang.org/x/text v0.23.0 // indirect
67+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250324211829-b45e905df463 // indirect
68+
google.golang.org/grpc v1.71.0 // indirect
69+
google.golang.org/protobuf v1.36.6 // indirect
7270
gopkg.in/yaml.v3 v3.0.1 // indirect
73-
howett.net/plist v1.0.0 // indirect
71+
howett.net/plist v1.0.1 // indirect
7472
modernc.org/libc v1.61.13 // indirect
7573
modernc.org/mathutil v1.7.1 // indirect
76-
modernc.org/memory v1.8.2 // indirect
74+
modernc.org/memory v1.9.1 // indirect
7775
)
7876

7977
retract (

0 commit comments

Comments
 (0)