Skip to content

Commit 2592e25

Browse files
author
Jason Quinlan
committed
update to go v1.17 and all go.mod requirements
1 parent d83e29a commit 2592e25

File tree

4 files changed

+237
-88
lines changed

4 files changed

+237
-88
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# goDash Application
22

3-
Current release version : 2.3.0 - updated for go 1.16.5
3+
Current release version : 2.4.0 - updated for go 1.17+ (as of 05-03-2022)
44

55
We kindly ask that should you mention [goDASH](https://github.com/uccmisl/godash) or [goDASHbed](https://github.com/uccmisl/godashbed) or use our code in your publication, that you would reference the following papers:
66

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v2.1
1+
v2.4.0

go.mod

Lines changed: 42 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,48 @@
11
module github.com/uccmisl/godash
22

3-
go 1.16
3+
// updates for godash v2.4.0
4+
5+
go 1.17
6+
7+
require (
8+
github.com/cavaliercoder/grab v2.0.0+incompatible
9+
github.com/golang/protobuf v1.5.2
10+
github.com/hashicorp/consul/api v1.12.0
11+
github.com/lucas-clemente/quic-go v0.25.0
12+
golang.org/x/net v0.0.0-20220225172249-27dd8689420f
13+
gonum.org/v1/gonum v0.9.3
14+
google.golang.org/grpc v1.44.0
15+
)
416

517
require (
6-
github.com/cavaliercoder/grab v2.0.1-0.20200331080741-9f014744ee41+incompatible
7-
github.com/cheekybits/genny v1.0.1-0.20190611084615-df3d48aa411e
8-
github.com/francoispqt/gojay v1.2.13
9-
github.com/golang/protobuf v1.4.2
10-
github.com/hashicorp/consul/api v1.4.0
11-
github.com/lucas-clemente/quic-go v0.20.1
12-
github.com/marten-seemann/qpack v0.2.1
13-
github.com/marten-seemann/qtls v0.9.1
18+
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da // indirect
19+
github.com/cheekybits/genny v1.0.1-0.20190611084615-df3d48aa411e // indirect
20+
github.com/fatih/color v1.9.0 // indirect
21+
github.com/fsnotify/fsnotify v1.4.9 // indirect
22+
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
23+
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect
24+
github.com/hashicorp/go-hclog v0.12.0 // indirect
25+
github.com/hashicorp/go-immutable-radix v1.0.0 // indirect
26+
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
27+
github.com/hashicorp/golang-lru v0.5.0 // indirect
28+
github.com/hashicorp/serf v0.9.6 // indirect
29+
github.com/marten-seemann/qpack v0.2.1 // indirect
30+
github.com/marten-seemann/qtls-go1-16 v0.1.4 // indirect
31+
github.com/marten-seemann/qtls-go1-17 v0.1.0 // indirect
32+
github.com/marten-seemann/qtls-go1-18 v0.1.0-beta.1 // indirect
33+
github.com/mattn/go-colorable v0.1.6 // indirect
1434
github.com/mattn/go-isatty v0.0.12 // indirect
15-
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
16-
golang.org/x/net v0.0.0-20200707034311-ab3426394381
17-
golang.org/x/sys v0.0.0-20201231184435-2d18734c6014
18-
golang.org/x/text v0.3.3-0.20200425225943-6ca2caf96f15
19-
gonum.org/v1/gonum v0.7.0
20-
google.golang.org/grpc v1.19.0
21-
google.golang.org/protobuf v1.23.0
35+
github.com/mitchellh/go-homedir v1.1.0 // indirect
36+
github.com/mitchellh/mapstructure v1.1.2 // indirect
37+
github.com/nxadm/tail v1.4.8 // indirect
38+
github.com/onsi/ginkgo v1.16.4 // indirect
39+
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
40+
golang.org/x/mod v0.4.2 // indirect
41+
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
42+
golang.org/x/text v0.3.7 // indirect
43+
golang.org/x/tools v0.1.1 // indirect
44+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
45+
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
46+
google.golang.org/protobuf v1.26.0 // indirect
47+
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
2248
)

0 commit comments

Comments
 (0)