Skip to content

Commit 63f6c97

Browse files
committed
update to v2.4.2
1 parent 3b9a206 commit 63f6c97

File tree

6 files changed

+183
-34
lines changed

6 files changed

+183
-34
lines changed

README.md

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

3-
Current release version : 2.4.1 - updated for go 1.17+ (as of 05-03-2022)
3+
Current release version : 2.4.2 - updated for go 1.20+ (as of 22-02-2023) and associated security vulnerabilities in older versions of "golang.org/x"
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

@@ -15,7 +15,7 @@ With the release of version 2.4.0+, we are also releasing amd64 docker container
1515

1616
An arm64 version of [goDASH](https://hub.docker.com/r/jjq52021/godash_arm64) is also available.
1717

18-
In the coming weeks we will also release a network build script, so as to permit a full evaluation of DASH algorithms and associated TCP and QUIC transport protocols within a Docker test framework.
18+
In the coming weeks/months/years we will also release a network build script, so as to permit a full evaluation of DASH algorithms and associated TCP and QUIC transport protocols within a Docker test framework.
1919

2020
--------------------------------------------------------
2121
## Operating System Compatibility

VERSION

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

config/configure.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"initBuffer" : 2,
66
"maxBuffer" : 60,
77
"maxHeight" : 1080,
8-
"streamDuration" : 20,
8+
"streamDuration" : 40,
99
"storeDash" : "off",
1010
"outputFolder" : "123456",
1111
"logFile" : "log_file_2",

go.mod

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

3-
// updates for godash v2.4.0
3+
// updates for godash v2.4.2
44

5-
go 1.17
5+
go 1.20
66

77
require (
88
github.com/cavaliercoder/grab v2.0.0+incompatible
99
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
10+
github.com/hashicorp/consul/api v1.18.0
11+
// remove direct link to http3 folder, as it contains no go.mod file
12+
github.com/quic-go/quic-go v0.33.0
13+
golang.org/x/net v0.7.0
14+
gonum.org/v1/gonum v0.12.0
15+
google.golang.org/grpc v1.53.0
1516
)
1617

1718
require (
18-
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da // indirect
19+
github.com/armon/go-metrics v0.4.1 // indirect
1920
github.com/cheekybits/genny v1.0.1-0.20190611084615-df3d48aa411e // indirect
20-
github.com/fatih/color v1.9.0 // indirect
21+
github.com/fatih/color v1.14.1 // indirect
2122
github.com/fsnotify/fsnotify v1.4.9 // indirect
2223
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
24+
github.com/golang/mock v1.6.0 // indirect
25+
github.com/google/pprof v0.0.0-20230222194610-99052d3372e7 // indirect
26+
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
27+
github.com/hashicorp/go-hclog v1.4.0 // indirect
28+
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
2629
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
30+
github.com/hashicorp/golang-lru v0.5.4 // indirect
31+
github.com/hashicorp/serf v0.10.1 // indirect
2932
github.com/marten-seemann/qpack v0.2.1 // indirect
3033
github.com/marten-seemann/qtls-go1-16 v0.1.4 // indirect
3134
github.com/marten-seemann/qtls-go1-17 v0.1.0 // indirect
3235
github.com/marten-seemann/qtls-go1-18 v0.1.0-beta.1 // indirect
33-
github.com/mattn/go-colorable v0.1.6 // indirect
34-
github.com/mattn/go-isatty v0.0.12 // indirect
36+
github.com/mattn/go-colorable v0.1.13 // indirect
37+
github.com/mattn/go-isatty v0.0.17 // indirect
3538
github.com/mitchellh/go-homedir v1.1.0 // indirect
36-
github.com/mitchellh/mapstructure v1.1.2 // indirect
39+
github.com/mitchellh/mapstructure v1.5.0 // indirect
3740
github.com/nxadm/tail v1.4.8 // indirect
3841
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
42+
github.com/onsi/ginkgo/v2 v2.8.3 // indirect
43+
github.com/quic-go/qpack v0.4.0 // indirect
44+
github.com/quic-go/qtls-go1-19 v0.2.1 // indirect
45+
github.com/quic-go/qtls-go1-20 v0.1.1 // indirect
46+
golang.org/x/crypto v0.6.0 // indirect
47+
golang.org/x/exp v0.0.0-20230213192124-5e25df0256eb // indirect
48+
golang.org/x/mod v0.8.0 // indirect
49+
golang.org/x/sys v0.5.0 // indirect
50+
golang.org/x/text v0.7.0 // indirect
51+
golang.org/x/tools v0.6.0 // indirect
4452
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
53+
google.golang.org/genproto v0.0.0-20230221151758-ace64dc21148 // indirect
54+
google.golang.org/protobuf v1.28.1 // indirect
4755
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
4856
)

0 commit comments

Comments
 (0)