Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

Commit 8a6ffdd

Browse files
committed
Updated dependencies
1 parent b87d196 commit 8a6ffdd

File tree

1,430 files changed

+4590978
-2036750
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,430 files changed

+4590978
-2036750
lines changed

cmd/root.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ func Execute(ctx context.Context, settings internal.Settings) error {
8989
}
9090

9191
return orchestra.PlayUntilSignal(
92+
cmd.Context(),
9293
conductor,
9394
os.Interrupt, syscall.SIGTERM,
9495
)

go.mod

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,80 +1,80 @@
11
module github.com/stephenafamo/warden
22

3-
go 1.19
3+
go 1.23
4+
5+
toolchain go1.23.0
46

57
require (
6-
github.com/BurntSushi/toml v1.2.1
8+
github.com/BurntSushi/toml v1.4.0
79
github.com/bobesa/go-domain-util v0.0.0-20190911083921-4033b5f7dd89
810
github.com/friendsofgo/errors v0.9.2
9-
github.com/getsentry/sentry-go v0.19.0
11+
github.com/getsentry/sentry-go v0.29.1
1012
github.com/joho/godotenv v1.5.1
11-
github.com/sethvargo/go-envconfig v0.9.0
12-
github.com/spf13/cobra v1.6.1
13-
github.com/stephenafamo/janus v0.0.0-20230307152500-c9f1466948fa
13+
github.com/sethvargo/go-envconfig v1.1.0
14+
github.com/spf13/cobra v1.8.1
15+
github.com/stephenafamo/janus v0.0.0-20241119135547-94b88e663e92
1416
github.com/stephenafamo/kronika v0.0.0-20220912224312-79c8aa498e30
15-
github.com/stephenafamo/orchestra v0.0.0-20221122233638-c6ea527f65e7
17+
github.com/stephenafamo/orchestra v0.4.0
1618
github.com/volatiletech/null/v8 v8.1.2
1719
github.com/volatiletech/sqlboiler-sqlite3 v0.0.0-20211212162332-714912240c86
18-
github.com/volatiletech/sqlboiler/v4 v4.14.1
19-
github.com/volatiletech/strmangle v0.0.4
20-
github.com/vultr/govultr/v3 v3.0.3
21-
golang.org/x/oauth2 v0.6.0
22-
modernc.org/sqlite v1.21.0
20+
github.com/volatiletech/sqlboiler/v4 v4.17.1
21+
github.com/volatiletech/strmangle v0.0.8
22+
github.com/vultr/govultr/v3 v3.11.2
23+
golang.org/x/oauth2 v0.24.0
24+
modernc.org/sqlite v1.34.1
2325
)
2426

2527
require (
28+
dario.cat/mergo v1.0.1 // indirect
2629
github.com/Masterminds/goutils v1.1.1 // indirect
27-
github.com/Masterminds/semver/v3 v3.2.0 // indirect
28-
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
30+
github.com/Masterminds/semver/v3 v3.3.0 // indirect
31+
github.com/Masterminds/sprig/v3 v3.3.0 // indirect
32+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
2933
github.com/dustin/go-humanize v1.0.1 // indirect
30-
github.com/fsnotify/fsnotify v1.6.0 // indirect
34+
github.com/fsnotify/fsnotify v1.8.0 // indirect
3135
github.com/gofrs/uuid v4.4.0+incompatible // indirect
32-
github.com/golang/protobuf v1.5.2 // indirect
3336
github.com/google/go-querystring v1.1.0 // indirect
34-
github.com/google/uuid v1.3.0 // indirect
37+
github.com/google/uuid v1.6.0 // indirect
3538
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
36-
github.com/hashicorp/go-retryablehttp v0.7.4 // indirect
39+
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
40+
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
3741
github.com/hashicorp/hcl v1.0.0 // indirect
38-
github.com/huandu/xstrings v1.4.0 // indirect
39-
github.com/imdario/mergo v0.3.13 // indirect
42+
github.com/huandu/xstrings v1.5.0 // indirect
4043
github.com/inconshreveable/mousetrap v1.1.0 // indirect
41-
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
4244
github.com/magiconair/properties v1.8.7 // indirect
43-
github.com/mattn/go-isatty v0.0.17 // indirect
45+
github.com/mattn/go-isatty v0.0.20 // indirect
4446
github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect
4547
github.com/mitchellh/copystructure v1.2.0 // indirect
4648
github.com/mitchellh/mapstructure v1.5.0 // indirect
4749
github.com/mitchellh/reflectwalk v1.0.2 // indirect
48-
github.com/pelletier/go-toml/v2 v2.0.7 // indirect
50+
github.com/ncruces/go-strftime v0.1.9 // indirect
51+
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
4952
github.com/pkg/errors v0.9.1 // indirect
5053
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
51-
github.com/shopspring/decimal v1.3.1 // indirect
52-
github.com/spf13/afero v1.9.5 // indirect
53-
github.com/spf13/cast v1.5.0 // indirect
54-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
54+
github.com/sagikazarmark/locafero v0.6.0 // indirect
55+
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
56+
github.com/shopspring/decimal v1.4.0 // indirect
57+
github.com/sourcegraph/conc v0.3.0 // indirect
58+
github.com/spf13/afero v1.11.0 // indirect
59+
github.com/spf13/cast v1.7.0 // indirect
5560
github.com/spf13/pflag v1.0.5 // indirect
56-
github.com/spf13/viper v1.15.0 // indirect
57-
github.com/subosito/gotenv v1.4.2 // indirect
61+
github.com/spf13/viper v1.19.0 // indirect
62+
github.com/subosito/gotenv v1.6.0 // indirect
5863
github.com/volatiletech/inflect v0.0.1 // indirect
5964
github.com/volatiletech/randomize v0.0.1 // indirect
60-
golang.org/x/crypto v0.14.0 // indirect
61-
golang.org/x/mod v0.9.0 // indirect
62-
golang.org/x/net v0.17.0 // indirect
63-
golang.org/x/sys v0.13.0 // indirect
64-
golang.org/x/text v0.13.0 // indirect
65-
golang.org/x/tools v0.6.0 // indirect
66-
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
67-
google.golang.org/appengine v1.6.7 // indirect
68-
google.golang.org/protobuf v1.28.1 // indirect
65+
go.uber.org/multierr v1.11.0 // indirect
66+
golang.org/x/crypto v0.29.0 // indirect
67+
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f // indirect
68+
golang.org/x/net v0.31.0 // indirect
69+
golang.org/x/sys v0.27.0 // indirect
70+
golang.org/x/text v0.20.0 // indirect
71+
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
6972
gopkg.in/ini.v1 v1.67.0 // indirect
7073
gopkg.in/yaml.v3 v3.0.1 // indirect
71-
lukechampine.com/uint128 v1.2.0 // indirect
72-
modernc.org/cc/v3 v3.40.0 // indirect
73-
modernc.org/ccgo/v3 v3.16.13 // indirect
74-
modernc.org/libc v1.22.3 // indirect
75-
modernc.org/mathutil v1.5.0 // indirect
76-
modernc.org/memory v1.5.0 // indirect
77-
modernc.org/opt v0.1.3 // indirect
78-
modernc.org/strutil v1.1.3 // indirect
74+
modernc.org/gc/v3 v3.0.0-20241004144649-1aea3fae8852 // indirect
75+
modernc.org/libc v1.61.2 // indirect
76+
modernc.org/mathutil v1.6.0 // indirect
77+
modernc.org/memory v1.8.0 // indirect
78+
modernc.org/strutil v1.2.0 // indirect
7979
modernc.org/token v1.1.0 // indirect
8080
)

0 commit comments

Comments
 (0)