Skip to content

Commit d74cfc1

Browse files
joshua-goldsteinall-seeing-code
authored andcommitted
chore(deps): update min go build version (#8423)
## Problem Currently the minimum version of Go required to build Dgraph is 1.12. This can be found at the top of the `go.mod` file. In order to bring in features like generics, we would have to bump up the minimum required version to 1.19. This PR shows the difference after changing 1.12 to 1.18 and running `go mod tidy`. Note that we already build Dgraph using Go 1.18, so bumping up to 1.19 is not a huge leap and will allow us to bring in many new features in the future. ## Why are there now two require blocks? This PR actually is not making any substantive changes to Dgraph's dependencies. The huge apparent increase in indirect dependencies is actually just Go showing us transitive dependencies that already existed. For more info see [here](#8423 (comment)). This is simply a change in how dependencies are described in the go.mod, not in the actual dependencies themselves. The first require block lists all direct dependencies, and the second require block lists all secondary (or tertiary, etc.) dependencies. _These dependencies already existed_ - the go.mod just makes that more explicit.
1 parent 478901e commit d74cfc1

3 files changed

Lines changed: 82 additions & 26 deletions

File tree

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.18.5
1+
1.19

go.mod

Lines changed: 81 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
module github.com/dgraph-io/dgraph
22

3-
go 1.12
3+
go 1.19
44

55
require (
66
contrib.go.opencensus.io/exporter/jaeger v0.1.0
77
contrib.go.opencensus.io/exporter/prometheus v0.1.0
8-
github.com/DataDog/datadog-go v0.0.0-20190425163447-40bafcb5f6c1 // indirect
98
github.com/DataDog/opencensus-go-exporter-datadog v0.0.0-20190503082300-0f32ad59ab08
109
github.com/Masterminds/semver/v3 v3.1.0
11-
github.com/Microsoft/go-winio v0.4.15 // indirect
12-
github.com/OneOfOne/xxhash v1.2.5 // indirect
1310
github.com/Shopify/sarama v1.27.2
14-
github.com/apache/thrift v0.13.0 // indirect
1511
github.com/blevesearch/bleve v1.0.13
1612
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd
1713
github.com/dgraph-io/badger/v3 v3.2103.5
@@ -25,7 +21,6 @@ require (
2521
github.com/dgrijalva/jwt-go/v4 v4.0.0-preview1
2622
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13
2723
github.com/dgryski/go-groupvarint v0.0.0-20190318181831-5ce5df8ca4e1
28-
github.com/docker/distribution v2.8.0+incompatible // indirect
2924
github.com/docker/docker v1.13.1
3025
github.com/dustin/go-humanize v1.0.0
3126
github.com/getsentry/sentry-go v0.6.0
@@ -40,12 +35,10 @@ require (
4035
github.com/google/uuid v1.0.0
4136
github.com/gorilla/websocket v1.4.2
4237
github.com/graph-gophers/graphql-go v0.0.0-20200309224638-dae41bde9ef9
43-
github.com/graph-gophers/graphql-transport-ws v0.0.2 // indirect
4438
github.com/hashicorp/vault/api v1.0.4
4539
github.com/minio/minio-go/v6 v6.0.55
4640
github.com/mitchellh/panicwrap v1.0.0
4741
github.com/paulmach/go.geojson v0.0.0-20170327170536-40612a87147b
48-
github.com/pierrec/lz4 v2.6.0+incompatible // indirect
4942
github.com/pkg/errors v0.9.1
5043
github.com/pkg/profile v1.2.1
5144
github.com/prometheus/client_golang v1.11.1
@@ -67,8 +60,87 @@ require (
6760
golang.org/x/text v0.5.0
6861
golang.org/x/tools v0.1.12
6962
google.golang.org/grpc v1.27.0
70-
gopkg.in/DataDog/dd-trace-go.v1 v1.13.1 // indirect
7163
gopkg.in/square/go-jose.v2 v2.3.1
7264
gopkg.in/yaml.v2 v2.3.0
7365
src.techknowlogick.com/xgo v1.4.1-0.20210311222705-d25c33fcd864
7466
)
67+
68+
require (
69+
github.com/DataDog/datadog-go v0.0.0-20190425163447-40bafcb5f6c1 // indirect
70+
github.com/Microsoft/go-winio v0.4.15 // indirect
71+
github.com/OneOfOne/xxhash v1.2.5 // indirect
72+
github.com/agnivade/levenshtein v1.0.3 // indirect
73+
github.com/apache/thrift v0.13.0 // indirect
74+
github.com/beorn7/perks v1.0.1 // indirect
75+
github.com/blevesearch/go-porterstemmer v1.0.3 // indirect
76+
github.com/blevesearch/segment v0.9.0 // indirect
77+
github.com/blevesearch/snowballstem v0.9.0 // indirect
78+
github.com/cespare/xxhash v1.1.0 // indirect
79+
github.com/cespare/xxhash/v2 v2.1.1 // indirect
80+
github.com/davecgh/go-spew v1.1.1 // indirect
81+
github.com/docker/distribution v2.8.0+incompatible // indirect
82+
github.com/docker/go-connections v0.4.0 // indirect
83+
github.com/docker/go-units v0.3.3 // indirect
84+
github.com/eapache/go-resiliency v1.2.0 // indirect
85+
github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 // indirect
86+
github.com/eapache/queue v1.1.0 // indirect
87+
github.com/fsnotify/fsnotify v1.4.7 // indirect
88+
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect
89+
github.com/google/flatbuffers v1.12.1 // indirect
90+
github.com/graph-gophers/graphql-transport-ws v0.0.2 // indirect
91+
github.com/hashicorp/errwrap v1.0.0 // indirect
92+
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect
93+
github.com/hashicorp/go-multierror v1.0.0 // indirect
94+
github.com/hashicorp/go-retryablehttp v0.5.4 // indirect
95+
github.com/hashicorp/go-rootcerts v1.0.1 // indirect
96+
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
97+
github.com/hashicorp/go-uuid v1.0.2 // indirect
98+
github.com/hashicorp/hcl v1.0.0 // indirect
99+
github.com/hashicorp/vault/sdk v0.1.13 // indirect
100+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
101+
github.com/jcmturner/gofork v1.0.0 // indirect
102+
github.com/json-iterator/go v1.1.11 // indirect
103+
github.com/klauspost/compress v1.12.3 // indirect
104+
github.com/klauspost/cpuid/v2 v2.0.3 // indirect
105+
github.com/magiconair/properties v1.8.1 // indirect
106+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
107+
github.com/minio/sha256-simd v0.1.1 // indirect
108+
github.com/mitchellh/go-homedir v1.1.0 // indirect
109+
github.com/mitchellh/mapstructure v1.1.2 // indirect
110+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
111+
github.com/modern-go/reflect2 v1.0.1 // indirect
112+
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
113+
github.com/opentracing/opentracing-go v1.1.0 // indirect
114+
github.com/pelletier/go-toml v1.2.0 // indirect
115+
github.com/philhofer/fwd v1.0.0 // indirect
116+
github.com/pierrec/lz4 v2.6.0+incompatible // indirect
117+
github.com/pmezard/go-difflib v1.0.0 // indirect
118+
github.com/prometheus/client_model v0.2.0 // indirect
119+
github.com/prometheus/common v0.26.0 // indirect
120+
github.com/prometheus/procfs v0.6.0 // indirect
121+
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect
122+
github.com/ryanuber/go-glob v1.0.0 // indirect
123+
github.com/spf13/afero v1.1.2 // indirect
124+
github.com/spf13/jwalterweatherman v1.0.0 // indirect
125+
github.com/subosito/gotenv v1.2.0 // indirect
126+
github.com/tinylib/msgp v1.1.0 // indirect
127+
github.com/willf/bitset v1.1.10 // indirect
128+
github.com/xdg/stringprep v1.0.0 // indirect
129+
go.uber.org/atomic v1.6.0 // indirect
130+
go.uber.org/multierr v1.5.0 // indirect
131+
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
132+
golang.org/x/term v0.3.0 // indirect
133+
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect
134+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
135+
google.golang.org/api v0.13.0 // indirect
136+
google.golang.org/appengine v1.6.1 // indirect
137+
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
138+
google.golang.org/protobuf v1.26.0 // indirect
139+
gopkg.in/DataDog/dd-trace-go.v1 v1.13.1 // indirect
140+
gopkg.in/ini.v1 v1.51.0 // indirect
141+
gopkg.in/jcmturner/aescts.v1 v1.0.1 // indirect
142+
gopkg.in/jcmturner/dnsutils.v1 v1.0.1 // indirect
143+
gopkg.in/jcmturner/gokrb5.v7 v7.5.0 // indirect
144+
gopkg.in/jcmturner/rpc.v1 v1.1.0 // indirect
145+
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
146+
)

go.sum

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ github.com/d4l3k/messagediff v1.2.1/go.mod h1:Oozbb1TVXFac9FtSIxHBMnBCq2qeH/2KkE
119119
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
120120
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
121121
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
122-
github.com/dgraph-io/badger v1.6.0 h1:DshxFxZWXUcO0xX476VJC07Xsr6ZCBVRHKZ93Oh7Evo=
123122
github.com/dgraph-io/badger v1.6.0/go.mod h1:zwt7syl517jmP8s94KqSxTlM6IMsdhYy6psNgSztDR4=
124123
github.com/dgraph-io/badger/v3 v3.2103.5 h1:ylPa6qzbjYRQMU6jokoj4wzcaweHylt//CH0AKt0akg=
125124
github.com/dgraph-io/badger/v3 v3.2103.5/go.mod h1:4MPiseMeDQ3FNCYwRbbcBOGJLf5jsE0PPFzRiKjtcdw=
@@ -376,7 +375,6 @@ github.com/klauspost/compress v1.11.0/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYs
376375
github.com/klauspost/compress v1.11.7/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs=
377376
github.com/klauspost/compress v1.12.3 h1:G5AfA94pHPysR56qqrkO2pxEexdDzrpFJ6yt/VqWxVU=
378377
github.com/klauspost/compress v1.12.3/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8eO+e+Dq5Gzg=
379-
github.com/klauspost/cpuid v1.2.1 h1:vJi+O/nMdFt0vqm8NZBI6wzALWdA2X+egi0ogNyrC/w=
380378
github.com/klauspost/cpuid v1.2.1/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek=
381379
github.com/klauspost/cpuid/v2 v2.0.3 h1:DNljyrHyxlkk8139OXIAAauCwV8eQGDD6Z8YqnDXdZw=
382380
github.com/klauspost/cpuid/v2 v2.0.3/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
@@ -638,7 +636,6 @@ github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82/go.mod h1:lgjkn3NuSvDf
638636
github.com/yudai/pp v2.0.1+incompatible/go.mod h1:PuxR/8QJ7cyCkFp/aUDS+JY727OFEZkTdatxwunjIkc=
639637
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
640638
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
641-
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
642639
go.etcd.io/bbolt v1.3.1-etcd.7/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU=
643640
go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU=
644641
go.etcd.io/bbolt v1.3.5/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ=
@@ -674,7 +671,6 @@ golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8U
674671
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
675672
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
676673
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
677-
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
678674
golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b h1:Qwe1rC8PSniVfAFPFJeyUkB+zcysC3RgJBAGk7eqBEU=
679675
golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
680676
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
@@ -727,9 +723,6 @@ golang.org/x/net v0.0.0-20200421231249-e086a090c8fd/go.mod h1:qpuaurCH72eLCgpAm/
727723
golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
728724
golang.org/x/net v0.0.0-20200904194848-62affa334b73/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
729725
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
730-
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
731-
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
732-
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
733726
golang.org/x/net v0.4.0 h1:Q5QPcMlvfxFTAPV0+07Xz/MpK9NTXu2VDUuy0FeMfaU=
734727
golang.org/x/net v0.4.0/go.mod h1:MBQ8lrhLObU/6UmLb4fmbmk5OcyYmqtbGd/9yIeKjEE=
735728
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
@@ -777,27 +770,18 @@ golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7w
777770
golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
778771
golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
779772
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
780-
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
781773
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
782-
golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
783774
golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
784-
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
785-
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
786-
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
787775
golang.org/x/sys v0.0.0-20221010170243-090e33056c14/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
788776
golang.org/x/sys v0.3.0 h1:w8ZOecv6NaNa/zC8944JTU3vz4u6Lagfk4RPQxv92NQ=
789777
golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
790-
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
791-
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
792778
golang.org/x/term v0.3.0 h1:qoo4akIqOcDME5bhc/NgxUdovd6BSS2uMsVjB56q1xI=
793779
golang.org/x/term v0.3.0/go.mod h1:q750SLmJuPmVoN1blW3UFBPREJfb1KmY3vwxfr+nFDA=
794780
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
795781
golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
796782
golang.org/x/text v0.3.1-0.20181227161524-e6919f6577db/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
797783
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
798784
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
799-
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
800-
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
801785
golang.org/x/text v0.5.0 h1:OLmvp0KP+FVG99Ct/qFiL/Fhk4zp4QQnZ7b2U+5piUM=
802786
golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
803787
golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=

0 commit comments

Comments
 (0)