Skip to content

Commit 12960cb

Browse files
authored
Merge pull request #111 from nspcc-dev/110-panic-when-running-s3-test
Panic when running s3 test.
2 parents 424efe8 + 9d0d613 commit 12960cb

File tree

6 files changed

+134
-49
lines changed

6 files changed

+134
-49
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ This document outlines major changes between releases.
1313

1414
### Updated
1515
- github.com/nspcc-dev/tzhash v1.8.2 => v1.8.3 (#101)
16-
- github.com/nspcc-dev/neofs-sdk-go v1.0.0-rc.13 => v1.0.0-rc.14 (#101)
16+
- github.com/nspcc-dev/neofs-sdk-go v1.0.0-rc.13 => v1.0.0-rc.15 (#110)
1717
- github.com/aws/aws-sdk-go-v2 v1.36.3 => v1.39.0 (#101)
1818
- github.com/aws/aws-sdk-go-v2/config v1.29.9 => v1.31.7 (#101)
1919
- github.com/aws/aws-sdk-go-v2/service/s3 v1.78.2 => v1.88.0 (#101)
20-
- go.k6.io/k6 v0.51.0 => v0.57.0 (#101)
20+
- go.k6.io/k6 v0.51.0 => v1.3.0 (#110)
2121
- go.etcd.io/bbolt v1.3.11 => v1.4.3 (#101)
2222

2323
## [0.2.0] - 2025-03-20

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
export GOBIN ?= $(shell pwd)/bin
44
BINARY=xk6-neofs
5-
XK6_VERSION=0.20.1
5+
XK6_VERSION=1.2.3
66
VERSION ?= $(shell git describe --tags --match "v*" --abbrev=8 2>/dev/null | sed -r 's,^v([0-9]+\.[0-9]+)\.([0-9]+)(-.*)?$$,\1 \2 \3,' | while read mm patch suffix; do if [ -z "$$suffix" ]; then echo $$mm.$$patch; else patch=`expr $$patch + 1`; echo $$mm.$${patch}-pre$$suffix; fi; done)
77
LDFLAGS:=-s -w -X 'go.k6.io/k6/lib/consts.VersionDetails=xk6-neofs-$(VERSION)'
88

99
# Build xk6-neofs binary
1010
build: install_xk6
1111
@echo "=> Building binary"
12-
@XK6_BUILD_FLAGS="-ldflags '$(LDFLAGS)'" $(GOBIN)/xk6 build --with github.com/nspcc-dev/xk6-neofs=. --output $(BINARY)
12+
$(GOBIN)/xk6 build --build-flags="-ldflags=$(LDFLAGS)" -v --with github.com/nspcc-dev/xk6-neofs=. --output $(BINARY)
1313

1414
# Install required utils
1515
install_xk6:

go.mod

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,14 @@ require (
88
github.com/aws/aws-sdk-go-v2/service/s3 v1.88.0
99
github.com/google/uuid v1.6.0
1010
github.com/grafana/sobek v0.0.0-20250723111835-dd8a13f0d439
11-
github.com/nspcc-dev/neo-go v0.108.1
12-
github.com/nspcc-dev/neofs-sdk-go v1.0.0-rc.14
13-
github.com/nspcc-dev/tzhash v1.8.3
11+
github.com/nspcc-dev/neo-go v0.113.0
12+
github.com/nspcc-dev/neofs-sdk-go v1.0.0-rc.15
1413
github.com/stretchr/testify v1.11.1
1514
go.etcd.io/bbolt v1.4.3
16-
go.k6.io/k6 v0.57.0
15+
go.k6.io/k6 v1.3.0
1716
)
1817

1918
require (
20-
github.com/andybalholm/brotli v1.2.0 // indirect
2119
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
2220
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.1 // indirect
2321
github.com/aws/aws-sdk-go-v2/credentials v1.18.11 // indirect
@@ -36,7 +34,8 @@ require (
3634
github.com/aws/smithy-go v1.23.0 // indirect
3735
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
3836
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
39-
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
37+
github.com/decred/dcrd/crypto/ripemd160 v1.0.2 // indirect
38+
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0 // indirect
4039
github.com/dlclark/regexp2 v1.11.5 // indirect
4140
github.com/evanw/esbuild v0.25.9 // indirect
4241
github.com/fatih/color v1.18.0 // indirect
@@ -48,21 +47,21 @@ require (
4847
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 // indirect
4948
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
5049
github.com/josharian/intern v1.0.0 // indirect
51-
github.com/klauspost/compress v1.18.0 // indirect
5250
github.com/mailru/easyjson v0.9.0 // indirect
5351
github.com/mattn/go-colorable v0.1.14 // indirect
5452
github.com/mattn/go-isatty v0.0.20 // indirect
5553
github.com/mr-tron/base58 v1.2.0 // indirect
5654
github.com/mstoykov/atlas v0.0.0-20220811071828-388f114305dd // indirect
5755
github.com/mstoykov/k6-taskqueue-lib v0.1.3 // indirect
58-
github.com/nspcc-dev/hrw/v2 v2.0.3 // indirect
59-
github.com/nspcc-dev/rfc6979 v0.2.3 // indirect
56+
github.com/nspcc-dev/hrw/v2 v2.0.4 // indirect
57+
github.com/nspcc-dev/rfc6979 v0.2.4 // indirect
58+
github.com/nspcc-dev/tzhash v1.8.3 // indirect
6059
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
6160
github.com/serenize/snaker v0.0.0-20201027110005-a7ad2135616e // indirect
6261
github.com/sirupsen/logrus v1.9.3 // indirect
6362
github.com/spf13/afero v1.15.0 // indirect
6463
github.com/twmb/murmur3 v1.1.8 // indirect
65-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
64+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
6665
go.opentelemetry.io/otel v1.38.0 // indirect
6766
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.38.0 // indirect
6867
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.38.0 // indirect
@@ -71,15 +70,14 @@ require (
7170
go.opentelemetry.io/otel/sdk v1.38.0 // indirect
7271
go.opentelemetry.io/otel/trace v1.38.0 // indirect
7372
go.opentelemetry.io/proto/otlp v1.8.0 // indirect
74-
golang.org/x/crypto v0.42.0 // indirect
75-
golang.org/x/exp v0.0.0-20250210185358-939b2ce775ac // indirect
73+
golang.org/x/exp v0.0.0-20250911091902-df9299821621 // indirect
7674
golang.org/x/net v0.44.0 // indirect
7775
golang.org/x/sys v0.36.0 // indirect
7876
golang.org/x/text v0.29.0 // indirect
7977
golang.org/x/time v0.13.0 // indirect
8078
google.golang.org/genproto/googleapis/api v0.0.0-20250908214217-97024824d090 // indirect
81-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250908214217-97024824d090 // indirect
82-
google.golang.org/grpc v1.75.0 // indirect
79+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250922171735-9219d122eba9 // indirect
80+
google.golang.org/grpc v1.75.1 // indirect
8381
google.golang.org/protobuf v1.36.9 // indirect
8482
gopkg.in/guregu/null.v3 v3.5.0 // indirect
8583
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect

0 commit comments

Comments
 (0)