Skip to content

Commit c262110

Browse files
committed
chore: update Go version and dependencies
- Update Go version from `1.16` to `1.22` - Upgrade `github.com/golang-queue/queue` from `v0.1.0` to `v0.1.4-0.20221230133718-0314ef173f98` - Add several indirect dependencies including `github.com/appleboy/com`, `github.com/cespare/xxhash/v2`, `github.com/dgryski/go-rendezvous`, `github.com/goccy/go-json`, and `github.com/redis/go-redis/v9` - Add new dependencies in `go.sum` including `dario.cat/mergo`, `github.com/Azure/go-ansiterm`, `github.com/Microsoft/go-winio`, `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`, and `gopkg.in/yaml.v3` - Remove several outdated dependencies from `go.sum` including `github.com/cespare/xxhash/v2`, `github.com/chzyer/logex`, `github.com/chzyer/readline`, `github.com/chzyer/test`, `github.com/davecgh/go-spew`, `github.com/fsnotify/fsnotify`, `github.com/go-redis/redis/v8`, `github.com/go-task/slim-sprig`, `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`, and `gopkg.in/yaml.v3` Signed-off-by: appleboy <[email protected]>
1 parent 6453c00 commit c262110

File tree

2 files changed

+118
-128
lines changed

2 files changed

+118
-128
lines changed

_example/worker/go.mod

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

3-
go 1.16
3+
go 1.22
44

55
require (
6-
github.com/golang-queue/queue v0.1.0
6+
github.com/golang-queue/queue v0.1.4-0.20221230133718-0314ef173f98
77
github.com/golang-queue/redisdb-stream v0.0.0-20220424021550-bac6de373624
88
)
99

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

0 commit comments

Comments
 (0)