Skip to content

Commit 6831adf

Browse files
authored
Merge pull request #146 from micro/v5-sync
fix go work
2 parents cc7e2f8 + 2c7f0de commit 6831adf

File tree

194 files changed

+58
-215264
lines changed

Some content is hidden

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

194 files changed

+58
-215264
lines changed

go.work

-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
go 1.21
22

33
use (
4-
./v5/acme/certmagic
54
./v5/auth/jwt
65
./v5/broker/gocloud
76
./v5/broker/googlepubsub
@@ -25,7 +24,6 @@ use (
2524
./v5/client/http
2625
./v5/client/mock
2726
./v5/client/mucp
28-
./v5/codec/bsonrpc
2927
./v5/codec/json-iterator
3028
./v5/codec/jsonrpc2
3129
./v5/codec/msgpackrpc
@@ -83,9 +81,6 @@ use (
8381
./v5/store/nats-js
8482
./v5/store/nats-js-kv
8583
./v5/store/redis
86-
./v5/sync/consul
87-
./v5/sync/etcd
88-
./v5/sync/memory
8984
./v5/transport/grpc
9085
./v5/transport/http
9186
./v5/transport/memory

scripts/release.sh

+1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ function release_specific() {
105105
set +o noglob
106106
while read -r pkg; do
107107
# If path contains a star find all relevant packages
108+
echo releasing ${pkg}
108109
if echo "${pkg}" | grep -q "\*"; then
109110
while read -r p; do
110111
release "$(remove_prefix "${p}")"

v5/auth/jwt/go.mod

+1-19
Original file line numberDiff line numberDiff line change
@@ -8,44 +8,26 @@ require (
88
)
99

1010
require (
11-
github.com/Microsoft/go-winio v0.6.0 // indirect
12-
github.com/ProtonMail/go-crypto v0.0.0-20220930113650-c6815a8c17ad // indirect
13-
github.com/acomagu/bufpipe v1.0.3 // indirect
1411
github.com/bitly/go-simplejson v0.5.0 // indirect
15-
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
16-
github.com/cloudflare/circl v1.2.0 // indirect
1712
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
18-
github.com/emirpasic/gods v1.18.1 // indirect
1913
github.com/fsnotify/fsnotify v1.6.0 // indirect
20-
github.com/go-git/gcfg v1.5.0 // indirect
21-
github.com/go-git/go-billy/v5 v5.3.1 // indirect
22-
github.com/go-git/go-git/v5 v5.4.2 // indirect
2314
github.com/golang/protobuf v1.5.4 // indirect
24-
github.com/google/go-cmp v0.5.9 // indirect
2515
github.com/google/uuid v1.3.0 // indirect
2616
github.com/imdario/mergo v0.3.13 // indirect
27-
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
28-
github.com/kevinburke/ssh_config v1.2.0 // indirect
17+
github.com/kr/text v0.2.0 // indirect
2918
github.com/miekg/dns v1.1.50 // indirect
30-
github.com/mitchellh/go-homedir v1.1.0 // indirect
31-
github.com/nxadm/tail v1.4.8 // indirect
3219
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c // indirect
3320
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
3421
github.com/pkg/errors v0.9.1 // indirect
3522
github.com/rogpeppe/go-internal v1.12.0 // indirect
3623
github.com/russross/blackfriday/v2 v2.1.0 // indirect
37-
github.com/sergi/go-diff v1.2.0 // indirect
3824
github.com/urfave/cli/v2 v2.25.7 // indirect
39-
github.com/xanzy/ssh-agent v0.3.2 // indirect
4025
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
41-
golang.org/x/crypto v0.21.0 // indirect
4226
golang.org/x/mod v0.9.0 // indirect
4327
golang.org/x/net v0.23.0 // indirect
4428
golang.org/x/sync v0.1.0 // indirect
4529
golang.org/x/sys v0.18.0 // indirect
4630
golang.org/x/text v0.14.0 // indirect
4731
golang.org/x/tools v0.7.0 // indirect
4832
google.golang.org/protobuf v1.33.0 // indirect
49-
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
50-
gopkg.in/warnings.v0 v0.1.2 // indirect
5133
)

v5/auth/jwt/go.sum

-2,469
Large diffs are not rendered by default.

v5/broker/gocloud/go.mod

+1-18
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,9 @@ require (
1414
cloud.google.com/go/compute/metadata v0.2.3 // indirect
1515
cloud.google.com/go/iam v0.12.0 // indirect
1616
cloud.google.com/go/pubsub v1.28.0 // indirect
17-
github.com/Microsoft/go-winio v0.6.0 // indirect
18-
github.com/ProtonMail/go-crypto v0.0.0-20220930113650-c6815a8c17ad // indirect
19-
github.com/acomagu/bufpipe v1.0.3 // indirect
2017
github.com/bitly/go-simplejson v0.5.0 // indirect
21-
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
22-
github.com/cloudflare/circl v1.2.0 // indirect
2318
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
24-
github.com/emirpasic/gods v1.18.1 // indirect
2519
github.com/fsnotify/fsnotify v1.6.0 // indirect
26-
github.com/go-git/gcfg v1.5.0 // indirect
27-
github.com/go-git/go-billy/v5 v5.3.1 // indirect
28-
github.com/go-git/go-git/v5 v5.4.2 // indirect
2920
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
3021
github.com/golang/protobuf v1.5.4 // indirect
3122
github.com/google/go-cmp v0.5.9 // indirect
@@ -34,22 +25,16 @@ require (
3425
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
3526
github.com/googleapis/gax-go/v2 v2.7.0 // indirect
3627
github.com/imdario/mergo v0.3.13 // indirect
37-
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
38-
github.com/kevinburke/ssh_config v1.2.0 // indirect
28+
github.com/kr/text v0.2.0 // indirect
3929
github.com/miekg/dns v1.1.50 // indirect
40-
github.com/mitchellh/go-homedir v1.1.0 // indirect
41-
github.com/nxadm/tail v1.4.8 // indirect
4230
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c // indirect
4331
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
4432
github.com/pkg/errors v0.9.1 // indirect
4533
github.com/rogpeppe/go-internal v1.12.0 // indirect
4634
github.com/russross/blackfriday/v2 v2.1.0 // indirect
47-
github.com/sergi/go-diff v1.2.0 // indirect
4835
github.com/urfave/cli/v2 v2.25.7 // indirect
49-
github.com/xanzy/ssh-agent v0.3.2 // indirect
5036
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
5137
go.opencensus.io v0.24.0 // indirect
52-
golang.org/x/crypto v0.21.0 // indirect
5338
golang.org/x/mod v0.9.0 // indirect
5439
golang.org/x/net v0.23.0 // indirect
5540
golang.org/x/oauth2 v0.5.0 // indirect
@@ -63,6 +48,4 @@ require (
6348
google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4 // indirect
6449
google.golang.org/grpc v1.53.0 // indirect
6550
google.golang.org/protobuf v1.33.0 // indirect
66-
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
67-
gopkg.in/warnings.v0 v0.1.2 // indirect
6851
)

0 commit comments

Comments
 (0)