Skip to content

Commit 9379f0e

Browse files
BrianLeishmanclaude
andcommitted
update deps and add dependabot config
cool-mysql v0.0.2 -> v0.0.25, plus latest of everything else. Ompluscator/dynamic-struct stays at v1.3.0; v1.4.0 declares its module path with lowercase casing and is unfetchable. main.go switches to bar.EwmaIncrement for mpb v8. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 9110e87 commit 9379f0e

5 files changed

Lines changed: 120 additions & 181 deletions

File tree

.github/dependabot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: gomod
4+
directory: /
5+
schedule:
6+
interval: weekly
7+
groups:
8+
go-deps:
9+
patterns:
10+
- "*"
11+
12+
- package-ecosystem: github-actions
13+
directory: /
14+
schedule:
15+
interval: weekly

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
smg-live-alter
2+
.vscode/settings.json

go.mod

Lines changed: 25 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,45 @@
11
module github.com/StirlingMarketingGroup/smg-live-alter/v2
22

3-
go 1.21
3+
go 1.25.0
44

55
require (
66
github.com/Ompluscator/dynamic-struct v1.3.0
7-
github.com/StirlingMarketingGroup/cool-mysql v0.0.0-20230825201905-be1f02aab9f2
8-
github.com/fatih/color v1.13.0
9-
github.com/go-sql-driver/mysql v1.7.1
7+
github.com/StirlingMarketingGroup/cool-mysql v0.0.25
8+
github.com/fatih/color v1.19.0
9+
github.com/go-sql-driver/mysql v1.10.0
1010
github.com/juliangruber/go-intersect/v2 v2.0.1
1111
github.com/posener/cmd v1.3.4
12-
github.com/vbauerster/mpb/v8 v8.0.2
12+
github.com/vbauerster/mpb/v8 v8.12.0
1313
gopkg.in/yaml.v2 v2.4.0
1414
)
1515

1616
require (
17+
cloud.google.com/go v0.123.0 // indirect
18+
filippo.io/edwards25519 v1.2.0 // indirect
1719
github.com/VividCortex/ewma v1.2.0 // indirect
1820
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect
19-
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
20-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
21-
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
21+
github.com/bradfitz/gomemcache v0.0.0-20260422231931-4d751bb6e37c // indirect
22+
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
23+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
24+
github.com/clipperhouse/uax29/v2 v2.7.0 // indirect
2225
github.com/fatih/structtag v1.2.0 // indirect
23-
github.com/go-redsync/redsync/v4 v4.8.1 // indirect
26+
github.com/go-redsync/redsync/v4 v4.16.0 // indirect
2427
github.com/hashicorp/errwrap v1.1.0 // indirect
2528
github.com/hashicorp/go-multierror v1.1.1 // indirect
26-
github.com/mattn/go-colorable v0.1.13 // indirect
27-
github.com/mattn/go-isatty v0.0.16 // indirect
28-
github.com/mattn/go-runewidth v0.0.13 // indirect
29-
github.com/posener/complete/v2 v2.0.1-alpha.13 // indirect
29+
github.com/mattn/go-colorable v0.1.14 // indirect
30+
github.com/mattn/go-isatty v0.0.22 // indirect
31+
github.com/mattn/go-runewidth v0.0.23 // indirect
32+
github.com/posener/complete/v2 v2.1.0 // indirect
3033
github.com/posener/formatter v1.0.0 // indirect
31-
github.com/posener/script v1.1.5 // indirect
32-
github.com/redis/go-redis/v9 v9.1.0 // indirect
33-
github.com/rivo/uniseg v0.4.2 // indirect
34-
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
34+
github.com/posener/script v1.2.0 // indirect
35+
github.com/redis/go-redis/v9 v9.19.0 // indirect
36+
github.com/shopspring/decimal v1.4.0 // indirect
37+
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
3538
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
39+
go.uber.org/atomic v1.11.0 // indirect
3640
go.uber.org/multierr v1.11.0 // indirect
37-
go.uber.org/zap v1.25.0 // indirect
38-
golang.org/x/sync v0.3.0 // indirect
39-
golang.org/x/sys v0.0.0-20220909162455-aba9fc2a8ff2 // indirect
41+
go.uber.org/zap v1.28.0 // indirect
42+
golang.org/x/crypto v0.50.0 // indirect
43+
golang.org/x/sync v0.20.0 // indirect
44+
golang.org/x/sys v0.43.0 // indirect
4045
)

0 commit comments

Comments
 (0)