Skip to content

Commit 75bb784

Browse files
committed
update jemalloc to 5.3.1
...and bump all go.mod dependencies
1 parent 2da01c5 commit 75bb784

3 files changed

Lines changed: 82 additions & 84 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: 26 additions & 26 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/dgraph-io/badger/v4 v4.9.1
@@ -18,23 +18,23 @@ require (
1818
github.com/dgryski/go-farm v0.0.0-20240924180020-3414d57e47da
1919
github.com/dgryski/go-groupvarint v0.0.0-20230630160417-2bfb7969fb3c
2020
github.com/docker/docker v28.5.2+incompatible
21-
github.com/docker/go-connections v0.6.0
21+
github.com/docker/go-connections v0.7.0
2222
github.com/dustin/go-humanize v1.0.1
23-
github.com/go-jose/go-jose/v4 v4.1.3
23+
github.com/go-jose/go-jose/v4 v4.1.4
2424
github.com/go-sql-driver/mysql v1.9.3
2525
github.com/golang-jwt/jwt/v5 v5.3.1
26-
github.com/golang/geo v0.0.0-20260302211937-87f5a40ea07a
26+
github.com/golang/geo v0.0.0-20260415063119-550b242b3150
2727
github.com/golang/glog v1.2.5
2828
github.com/golang/snappy v1.0.0
2929
github.com/google/codesearch v1.2.0
3030
github.com/google/go-cmp v0.7.0
3131
github.com/google/uuid v1.6.0
3232
github.com/gorilla/websocket v1.5.3
33-
github.com/graph-gophers/graphql-go v1.8.0
33+
github.com/graph-gophers/graphql-go v1.9.0
3434
github.com/hashicorp/vault/api v1.23.0
3535
github.com/klauspost/compress v1.18.5
36-
github.com/mark3labs/mcp-go v0.46.0
37-
github.com/minio/minio-go/v7 v7.0.99
36+
github.com/mark3labs/mcp-go v0.49.0
37+
github.com/minio/minio-go/v7 v7.0.100
3838
github.com/paulmach/go.geojson v1.5.0
3939
github.com/pkg/errors v0.9.1
4040
github.com/pkg/profile v1.7.0
@@ -48,25 +48,25 @@ require (
4848
github.com/twpayne/go-geom v1.6.1
4949
github.com/viterin/vek v0.4.3
5050
github.com/xdg/scram v1.0.5
51-
go.etcd.io/etcd/raft/v3 v3.5.28
51+
go.etcd.io/etcd/raft/v3 v3.5.29
5252
go.opencensus.io v0.24.0
53-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.67.0
54-
go.opentelemetry.io/contrib/zpages v0.67.0
53+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.68.0
54+
go.opentelemetry.io/contrib/zpages v0.68.0
5555
go.opentelemetry.io/otel v1.43.0
5656
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.43.0
5757
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.43.0
5858
go.opentelemetry.io/otel/sdk v1.43.0
5959
go.opentelemetry.io/otel/trace v1.43.0
6060
go.uber.org/zap v1.27.1
61-
golang.org/x/crypto v0.49.0
62-
golang.org/x/exp v0.0.0-20260312153236-7ab1446f8b90
63-
golang.org/x/mod v0.34.0
64-
golang.org/x/net v0.52.0
61+
golang.org/x/crypto v0.50.0
62+
golang.org/x/exp v0.0.0-20260410095643-746e56fc9e2f
63+
golang.org/x/mod v0.35.0
64+
golang.org/x/net v0.53.0
6565
golang.org/x/sync v0.20.0
66-
golang.org/x/sys v0.42.0
67-
golang.org/x/term v0.41.0
68-
golang.org/x/text v0.35.0
69-
golang.org/x/tools v0.43.0
66+
golang.org/x/sys v0.43.0
67+
golang.org/x/term v0.42.0
68+
golang.org/x/text v0.36.0
69+
golang.org/x/tools v0.44.0
7070
google.golang.org/grpc v1.80.0
7171
google.golang.org/protobuf v1.36.11
7272
gopkg.in/yaml.v3 v3.0.1
@@ -78,7 +78,7 @@ require (
7878
github.com/agnivade/levenshtein v1.2.1 // indirect
7979
github.com/beorn7/perks v1.0.1 // indirect
8080
github.com/bits-and-blooms/bitset v1.24.4 // indirect
81-
github.com/blevesearch/bleve_index_api v1.3.5 // indirect
81+
github.com/blevesearch/bleve_index_api v1.3.11 // indirect
8282
github.com/blevesearch/geo v0.2.5 // indirect
8383
github.com/blevesearch/go-porterstemmer v1.0.3 // indirect
8484
github.com/blevesearch/segment v0.9.1 // indirect
@@ -108,8 +108,8 @@ require (
108108
github.com/golang/protobuf v1.5.4 // indirect
109109
github.com/google/flatbuffers v25.12.19+incompatible // indirect
110110
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
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,19 @@ 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
163163
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
164-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0 // indirect
164+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.68.0 // indirect
165165
go.opentelemetry.io/otel/metric v1.43.0 // indirect
166166
go.opentelemetry.io/proto/otlp v1.10.0 // indirect
167167
go.uber.org/multierr v1.11.0 // indirect
168168
go.yaml.in/yaml/v2 v2.4.4 // indirect
169169
go.yaml.in/yaml/v3 v3.0.4 // indirect
170170
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
171+
google.golang.org/genproto/googleapis/api v0.0.0-20260420184626-e10c466a9529 // indirect
172+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260420184626-e10c466a9529 // indirect
173173
gotest.tools/v3 v3.5.2 // indirect
174174
)

0 commit comments

Comments
 (0)