Skip to content

Commit 4d9831c

Browse files
committed
update jemalloc to 5.3.1
...and bump all go.mod dependencies
1 parent 76c508a commit 4d9831c

3 files changed

Lines changed: 99 additions & 96 deletions

File tree

dgraph/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ endif
5252

5353
# jemalloc stuff
5454
HAS_JEMALLOC = $(shell test -f /usr/local/lib/libjemalloc.a && echo "jemalloc")
55-
JEMALLOC_URL = "https://github.com/jemalloc/jemalloc/releases/download/5.3.0/jemalloc-5.3.0.tar.bz2"
55+
JEMALLOC_URL = "https://github.com/jemalloc/jemalloc/releases/download/5.3.1/jemalloc-5.3.1.tar.bz2"
5656

5757
# go install variables
5858
HAS_SHA256SUM = $(shell which sha256sum)
@@ -98,7 +98,7 @@ jemalloc:
9898
echo "Downloading jemalloc" ; \
9999
curl -f -s -L ${JEMALLOC_URL} -o jemalloc.tar.bz2 ; \
100100
tar xjf ./jemalloc.tar.bz2 ; \
101-
cd jemalloc-5.3.0 ; \
101+
cd jemalloc-5.3.1 ; \
102102
./configure --with-jemalloc-prefix='je_' --with-malloc-conf='background_thread:true,metadata_thp:auto'; \
103103
make ; \
104104
if [ "$(USER_ID)" = "0" ]; then \

go.mod

Lines changed: 31 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.26.1
55
require (
66
contrib.go.opencensus.io/exporter/prometheus v0.4.2
77
github.com/HdrHistogram/hdrhistogram-go v1.2.0
8-
github.com/IBM/sarama v1.47.0
8+
github.com/IBM/sarama v1.48.0
99
github.com/Masterminds/semver/v3 v3.4.0
1010
github.com/blevesearch/bleve/v2 v2.5.7
1111
github.com/containerd/errdefs v1.0.0
@@ -19,23 +19,23 @@ require (
1919
github.com/dgryski/go-farm v0.0.0-20240924180020-3414d57e47da
2020
github.com/dgryski/go-groupvarint v0.0.0-20230630160417-2bfb7969fb3c
2121
github.com/docker/docker v28.5.2+incompatible
22-
github.com/docker/go-connections v0.6.0
22+
github.com/docker/go-connections v0.7.0
2323
github.com/dustin/go-humanize v1.0.1
24-
github.com/go-jose/go-jose/v4 v4.1.3
25-
github.com/go-sql-driver/mysql v1.9.3
24+
github.com/go-jose/go-jose/v4 v4.1.4
25+
github.com/go-sql-driver/mysql v1.10.0
2626
github.com/golang-jwt/jwt/v5 v5.3.1
27-
github.com/golang/geo v0.0.0-20260302211937-87f5a40ea07a
27+
github.com/golang/geo v0.0.0-20260427214057-41a1a8c7eb2a
2828
github.com/golang/glog v1.2.5
2929
github.com/golang/snappy v1.0.0
3030
github.com/google/codesearch v1.2.0
3131
github.com/google/go-cmp v0.7.0
3232
github.com/google/uuid v1.6.0
3333
github.com/gorilla/websocket v1.5.3
34-
github.com/graph-gophers/graphql-go v1.8.0
34+
github.com/graph-gophers/graphql-go v1.9.0
3535
github.com/hashicorp/vault/api v1.23.0
3636
github.com/klauspost/compress v1.18.5
37-
github.com/mark3labs/mcp-go v0.46.0
38-
github.com/minio/minio-go/v7 v7.0.99
37+
github.com/mark3labs/mcp-go v0.49.0
38+
github.com/minio/minio-go/v7 v7.1.0
3939
github.com/paulmach/go.geojson v1.5.0
4040
github.com/pkg/errors v0.9.1
4141
github.com/pkg/profile v1.7.0
@@ -49,25 +49,25 @@ require (
4949
github.com/twpayne/go-geom v1.6.1
5050
github.com/viterin/vek v0.4.3
5151
github.com/xdg/scram v1.0.5
52-
go.etcd.io/etcd/raft/v3 v3.5.28
52+
go.etcd.io/etcd/raft/v3 v3.5.29
5353
go.opencensus.io v0.24.0
54-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.67.0
55-
go.opentelemetry.io/contrib/zpages v0.67.0
54+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.68.0
55+
go.opentelemetry.io/contrib/zpages v0.68.0
5656
go.opentelemetry.io/otel v1.43.0
5757
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.43.0
5858
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.43.0
5959
go.opentelemetry.io/otel/sdk v1.43.0
6060
go.opentelemetry.io/otel/trace v1.43.0
61-
go.uber.org/zap v1.27.1
62-
golang.org/x/crypto v0.49.0
63-
golang.org/x/exp v0.0.0-20260312153236-7ab1446f8b90
64-
golang.org/x/mod v0.34.0
65-
golang.org/x/net v0.52.0
61+
go.uber.org/zap v1.28.0
62+
golang.org/x/crypto v0.50.0
63+
golang.org/x/exp v0.0.0-20260410095643-746e56fc9e2f
64+
golang.org/x/mod v0.35.0
65+
golang.org/x/net v0.53.0
6666
golang.org/x/sync v0.20.0
67-
golang.org/x/sys v0.42.0
68-
golang.org/x/term v0.41.0
69-
golang.org/x/text v0.35.0
70-
golang.org/x/tools v0.43.0
67+
golang.org/x/sys v0.43.0
68+
golang.org/x/term v0.42.0
69+
golang.org/x/text v0.36.0
70+
golang.org/x/tools v0.44.0
7171
google.golang.org/grpc v1.80.0
7272
google.golang.org/protobuf v1.36.11
7373
gopkg.in/yaml.v3 v3.0.1
@@ -79,7 +79,7 @@ require (
7979
github.com/agnivade/levenshtein v1.2.1 // indirect
8080
github.com/beorn7/perks v1.0.1 // indirect
8181
github.com/bits-and-blooms/bitset v1.24.4 // indirect
82-
github.com/blevesearch/bleve_index_api v1.3.5 // indirect
82+
github.com/blevesearch/bleve_index_api v1.3.11 // indirect
8383
github.com/blevesearch/geo v0.2.5 // indirect
8484
github.com/blevesearch/go-porterstemmer v1.0.3 // indirect
8585
github.com/blevesearch/segment v0.9.1 // indirect
@@ -98,7 +98,7 @@ require (
9898
github.com/eapache/queue v1.1.0 // indirect
9999
github.com/felixge/fgprof v0.9.5 // indirect
100100
github.com/felixge/httpsnoop v1.0.4 // indirect
101-
github.com/fsnotify/fsnotify v1.9.0 // indirect
101+
github.com/fsnotify/fsnotify v1.10.0 // indirect
102102
github.com/go-ini/ini v1.67.0 // indirect
103103
github.com/go-logr/logr v1.4.3 // indirect
104104
github.com/go-logr/stdr v1.2.2 // indirect
@@ -107,9 +107,9 @@ require (
107107
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
108108
github.com/golang/protobuf v1.5.4 // indirect
109109
github.com/google/flatbuffers v25.12.19+incompatible // indirect
110-
github.com/google/jsonschema-go v0.4.2 // indirect
111-
github.com/google/pprof v0.0.0-20260302011040-a15ffb7f9dcc // indirect
112-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0 // indirect
110+
github.com/google/jsonschema-go v0.4.3 // indirect
111+
github.com/google/pprof v0.0.0-20260402051712-545e8a4df936 // indirect
112+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.29.0 // indirect
113113
github.com/hashicorp/errwrap v1.1.0 // indirect
114114
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
115115
github.com/hashicorp/go-multierror v1.1.1 // indirect
@@ -138,7 +138,7 @@ require (
138138
github.com/moby/term v0.5.2 // indirect
139139
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
140140
github.com/modern-go/reflect2 v1.0.2 // indirect
141-
github.com/morikuni/aec v1.0.0 // indirect
141+
github.com/morikuni/aec v1.1.0 // indirect
142142
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
143143
github.com/opencontainers/go-digest v1.0.0 // indirect
144144
github.com/opencontainers/image-spec v1.1.1 // indirect
@@ -156,19 +156,20 @@ require (
156156
github.com/sagikazarmark/locafero v0.12.0 // indirect
157157
github.com/spf13/afero v1.15.0 // indirect
158158
github.com/subosito/gotenv v1.6.0 // indirect
159-
github.com/tinylib/msgp v1.6.3 // indirect
159+
github.com/tinylib/msgp v1.6.4 // indirect
160160
github.com/viterin/partial v1.1.0 // indirect
161161
github.com/xdg/stringprep v1.0.3 // indirect
162162
github.com/yosida95/uritemplate/v3 v3.0.2 // indirect
163+
github.com/zeebo/xxh3 v1.1.0 // indirect
163164
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
164-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0 // indirect
165+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.68.0 // indirect
165166
go.opentelemetry.io/otel/metric v1.43.0 // indirect
166167
go.opentelemetry.io/proto/otlp v1.10.0 // indirect
167168
go.uber.org/multierr v1.11.0 // indirect
168169
go.yaml.in/yaml/v2 v2.4.4 // indirect
169170
go.yaml.in/yaml/v3 v3.0.4 // indirect
170171
golang.org/x/time v0.15.0 // indirect
171-
google.golang.org/genproto/googleapis/api v0.0.0-20260401024825-9d38bb4040a9 // indirect
172-
google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9 // indirect
172+
google.golang.org/genproto/googleapis/api v0.0.0-20260427160629-7cedc36a6bc4 // indirect
173+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260427160629-7cedc36a6bc4 // indirect
173174
gotest.tools/v3 v3.5.2 // indirect
174175
)

0 commit comments

Comments
 (0)