Skip to content

Commit a365dbd

Browse files
committed
chore: update dependencies and Go version to improve compatibility
- Update Go version from `1.16` to `1.22` - Upgrade `github.com/appleboy/graceful` from `v0.0.4` to `v1.1.1` - Upgrade `github.com/golang-queue/queue` from `v0.1.0` to `v0.1.4-0.20221230133718-0314ef173f98` - Add new indirect dependencies: `github.com/appleboy/com`, `github.com/cespare/xxhash/v2`, `github.com/dgryski/go-rendezvous`, `github.com/goccy/go-json`, `github.com/redis/go-redis/v9` - Add new dependencies in `go.sum` file including `dario.cat/mergo`, `github.com/Azure/go-ansiterm`, `github.com/Microsoft/go-winio`, `github.com/bsm/ginkgo/v2`, `github.com/bsm/gomega`, `github.com/cenkalti/backoff/v4`, `github.com/distribution/reference`, `github.com/docker/docker`, `github.com/docker/go-connections`, `github.com/docker/go-units`, `github.com/felixge/httpsnoop`, `github.com/go-logr/logr`, `github.com/go-logr/stdr`, `github.com/go-ole/go-ole`, `github.com/goccy/go-json`, `github.com/gogo/protobuf`, `github.com/google/uuid`, `github.com/klauspost/compress`, `github.com/lufia/plan9stats`, `github.com/magiconair/properties`, `github.com/moby/docker-image-spec`, `github.com/moby/patternmatcher`, `github.com/moby/sys/sequential`, `github.com/moby/sys/user`, `github.com/moby/term`, `github.com/morikuni/aec`, `github.com/opencontainers/go-digest`, `github.com/opencontainers/image-spec`, `github.com/pkg/errors`, `github.com/power-devops/perfstat`, `github.com/redis/go-redis/v9`, `github.com/shirou/gopsutil/v3`, `github.com/shoenig/go-m1cpu`, `github.com/sirupsen/logrus`, `github.com/stretchr/testify`, `github.com/testcontainers/testcontainers-go`, `github.com/tklauser/go-sysconf`, `github.com/tklauser/numcpus`, `github.com/yusufpapurcu/wmi`, `go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp`, `go.opentelemetry.io/otel`, `go.opentelemetry.io/otel/metric`, `go.opentelemetry.io/otel/trace`, `go.uber.org/goleak`, `golang.org/x/crypto`, `golang.org/x/sys`, `gopkg.in/yaml.v3` - Remove outdated dependencies from `go.sum` file including `github.com/fsnotify/fsnotify`, `github.com/go-redis/redis/v8`, `github.com/golang-queue/queue`, `github.com/golang/protobuf`, `github.com/google/go-cmp`, `github.com/google/pprof`, `github.com/hpcloud/tail`, `github.com/ianlancetaylor/demangle`, `github.com/kr/pretty`, `github.com/kr/pty`, `github.com/kr/text`, `github.com/nxadm/tail`, `github.com/onsi/ginkgo`, `github.com/onsi/gomega`, `github.com/stretchr/objx`, `github.com/stretchr/testify`, `github.com/yuin/goldmark`, `go.uber.org/goleak`, `golang.org/x/crypto`, `golang.org/x/lint`, `golang.org/x/mod`, `golang.org/x/net`, `golang.org/x/sync`, `golang.org/x/sys`, `golang.org/x/term`, `golang.org/x/text`, `golang.org/x/tools`, `golang.org/x/xerrors`, `google.golang.org/protobuf`, `gopkg.in/check.v1`, `gopkg.in/fsnotify.v1`, `gopkg.in/tomb.v1`, `gopkg.in/yaml.v2`, `gopkg.in/yaml.v3` Signed-off-by: appleboy <[email protected]>
1 parent c262110 commit a365dbd

File tree

2 files changed

+121
-131
lines changed

2 files changed

+121
-131
lines changed

_example/producer-consumer/go.mod

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
module example
22

3-
go 1.16
3+
go 1.22
44

55
require (
6-
github.com/appleboy/graceful v0.0.4
7-
github.com/golang-queue/queue v0.1.0
6+
github.com/appleboy/graceful v1.1.1
7+
github.com/golang-queue/queue v0.1.4-0.20221230133718-0314ef173f98
88
github.com/golang-queue/redisdb-stream v0.0.0-20220424021550-bac6de373624
99
)
1010

11+
require (
12+
github.com/appleboy/com v0.2.1 // indirect
13+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
14+
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
15+
github.com/goccy/go-json v0.10.2 // indirect
16+
github.com/redis/go-redis/v9 v9.7.0 // indirect
17+
)
18+
1119
replace github.com/golang-queue/redisdb-stream => ../../

0 commit comments

Comments
 (0)