Skip to content

Commit d010f24

Browse files
authored
Merge pull request #616 from smartcontractkit/bump-common
Bump common, core and ctf
2 parents 7e854ba + 590021d commit d010f24

File tree

13 files changed

+752
-726
lines changed

13 files changed

+752
-726
lines changed

CODEOWNERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
* @smartcontractkit/bix-build
77

88
# e2e test ownership
9-
/integration-tests @smartcontractkit/qa @smartcontractkit/bix-build
9+
/integration-tests @smartcontractkit/devex-tooling @smartcontractkit/bix-build
1010

1111
# monitoring ownership
1212
/monitoring @smartcontractkit/realtime @smartcontractkit/bix-build
1313

1414
# CI/CD
15-
/.github/** @smartcontractkit/qa @smartcontractkit/releng @smartcontractkit/bix-build
15+
/.github/** @smartcontractkit/devex-cicd @smartcontractkit/bix-build

integration-tests/docker/testenv/gauntlet/gauntletplusplus.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99
"github.com/rs/zerolog/log"
1010

1111
tc "github.com/testcontainers/testcontainers-go"
12+
tclog "github.com/testcontainers/testcontainers-go/log"
1213
tcwait "github.com/testcontainers/testcontainers-go/wait"
1314

1415
"github.com/smartcontractkit/chainlink-testing-framework/lib/docker/test_env"
@@ -53,7 +54,7 @@ func (g *GauntletPlusPlus) WithTestLogger(t *testing.T) *GauntletPlusPlus {
5354
}
5455

5556
func (g *GauntletPlusPlus) StartContainer() (string, error) {
56-
l := tc.Logger
57+
l := tclog.Default()
5758
if g.t != nil {
5859
l = logging.CustomT{
5960
T: g.t,

integration-tests/docker/testenv/stark.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"github.com/rs/zerolog"
99
"github.com/rs/zerolog/log"
1010
tc "github.com/testcontainers/testcontainers-go"
11+
tclog "github.com/testcontainers/testcontainers-go/log"
1112
tcwait "github.com/testcontainers/testcontainers-go/wait"
1213

1314
"github.com/smartcontractkit/chainlink-testing-framework/lib/docker/test_env"
@@ -51,7 +52,7 @@ func (s *Starknet) WithTestLogger(t *testing.T) *Starknet {
5152
}
5253

5354
func (s *Starknet) StartContainer() error {
54-
l := tc.Logger
55+
l := tclog.Default()
5556
if s.t != nil {
5657
l = logging.CustomT{
5758
T: s.t,

integration-tests/go.mod

Lines changed: 118 additions & 97 deletions
Large diffs are not rendered by default.

integration-tests/go.sum

Lines changed: 271 additions & 199 deletions
Large diffs are not rendered by default.

monitoring/go.mod

Lines changed: 49 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
module github.com/smartcontractkit/chainlink-starknet/monitoring
22

3-
go 1.24
4-
5-
toolchain go1.24.1
3+
go 1.24.2
64

75
require (
86
github.com/NethermindEth/juno v0.12.5
97
github.com/NethermindEth/starknet.go v0.8.0
10-
github.com/prometheus/client_golang v1.20.4
11-
github.com/smartcontractkit/chainlink-common v0.6.0
8+
github.com/prometheus/client_golang v1.21.1
9+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250602141924-3c15a42d8266
10+
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250602141924-3c15a42d8266
1211
github.com/smartcontractkit/chainlink-starknet/relayer v0.0.0-20230508053614-9f2fd5fd4ff1
1312
github.com/smartcontractkit/libocr v0.0.0-20250220133800-f3b940c4f298
14-
github.com/stretchr/testify v1.9.0
13+
github.com/stretchr/testify v1.10.0
1514
go.uber.org/multierr v1.11.0
1615
)
1716

1817
require (
18+
dario.cat/mergo v1.0.2 // indirect
1919
github.com/DataDog/zstd v1.5.6-0.20230824185856-869dae002e5e // indirect
2020
github.com/Microsoft/go-winio v0.6.2 // indirect
2121
github.com/XSAM/otelsql v0.29.0 // indirect
@@ -27,6 +27,8 @@ require (
2727
github.com/buger/jsonparser v1.1.1 // indirect
2828
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
2929
github.com/cespare/xxhash/v2 v2.3.0 // indirect
30+
github.com/cloudevents/sdk-go/binding/format/protobuf/v2 v2.15.2 // indirect
31+
github.com/cloudevents/sdk-go/v2 v2.16.0 // indirect
3032
github.com/cockroachdb/errors v1.11.3 // indirect
3133
github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce // indirect
3234
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
@@ -36,15 +38,20 @@ require (
3638
github.com/confluentinc/confluent-kafka-go/v2 v2.3.0 // indirect
3739
github.com/consensys/bavard v0.1.22 // indirect
3840
github.com/consensys/gnark-crypto v0.14.0 // indirect
41+
github.com/containerd/platforms v0.2.1 // indirect
42+
github.com/cpuguy83/dockercfg v0.3.2 // indirect
3943
github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a // indirect
4044
github.com/crate-crypto/go-kzg-4844 v1.1.0 // indirect
4145
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
4246
github.com/deckarep/golang-set/v2 v2.6.0 // indirect
4347
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
48+
github.com/distribution/reference v0.6.0 // indirect
49+
github.com/ebitengine/purego v0.8.4 // indirect
4450
github.com/ethereum/c-kzg-4844 v1.0.3 // indirect
4551
github.com/ethereum/go-ethereum v1.14.11 // indirect
4652
github.com/ethereum/go-verkle v0.2.2 // indirect
4753
github.com/fatih/color v1.17.0 // indirect
54+
github.com/felixge/httpsnoop v1.0.4 // indirect
4855
github.com/fsnotify/fsnotify v1.7.0 // indirect
4956
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
5057
github.com/gabriel-vasile/mimetype v1.4.4 // indirect
@@ -56,16 +63,16 @@ require (
5663
github.com/go-playground/locales v0.14.1 // indirect
5764
github.com/go-playground/universal-translator v0.18.1 // indirect
5865
github.com/go-playground/validator/v10 v10.22.1 // indirect
59-
github.com/go-viper/mapstructure/v2 v2.1.0 // indirect
66+
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
6067
github.com/gogo/protobuf v1.3.3 // indirect
6168
github.com/golang/protobuf v1.5.4 // indirect
6269
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
63-
github.com/google/go-cmp v0.6.0 // indirect
70+
github.com/google/go-cmp v0.7.0 // indirect
6471
github.com/google/uuid v1.6.0 // indirect
6572
github.com/gorilla/websocket v1.5.3 // indirect
6673
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.0.1 // indirect
6774
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.1.0 // indirect
68-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
75+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1 // indirect
6976
github.com/hashicorp/go-hclog v1.5.0 // indirect
7077
github.com/hashicorp/go-plugin v1.6.2 // indirect
7178
github.com/hashicorp/yamux v0.1.1 // indirect
@@ -81,7 +88,8 @@ require (
8188
github.com/jackc/pgx/v4 v4.18.3 // indirect
8289
github.com/jmoiron/sqlx v1.4.0 // indirect
8390
github.com/jpillora/backoff v1.0.0 // indirect
84-
github.com/klauspost/compress v1.17.11 // indirect
91+
github.com/json-iterator/go v1.1.12 // indirect
92+
github.com/klauspost/compress v1.18.0 // indirect
8593
github.com/kr/pretty v0.3.1 // indirect
8694
github.com/kr/text v0.2.0 // indirect
8795
github.com/leodido/go-urn v1.4.0 // indirect
@@ -91,59 +99,67 @@ require (
9199
github.com/mattn/go-colorable v0.1.13 // indirect
92100
github.com/mattn/go-isatty v0.0.20 // indirect
93101
github.com/mmcloughlin/addchain v0.4.0 // indirect
102+
github.com/moby/docker-image-spec v1.3.1 // indirect
103+
github.com/moby/patternmatcher v0.6.0 // indirect
104+
github.com/moby/sys/userns v0.1.0 // indirect
105+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
106+
github.com/modern-go/reflect2 v1.0.2 // indirect
94107
github.com/mr-tron/base58 v1.2.0 // indirect
95108
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
96109
github.com/oklog/run v1.1.0 // indirect
97-
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
110+
github.com/opencontainers/image-spec v1.1.0-rc5 // indirect
111+
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
98112
github.com/pkg/errors v0.9.1 // indirect
99113
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
100114
github.com/prometheus/client_model v0.6.1 // indirect
101-
github.com/prometheus/common v0.59.1 // indirect
102-
github.com/prometheus/procfs v0.15.1 // indirect
115+
github.com/prometheus/common v0.63.0 // indirect
116+
github.com/prometheus/procfs v0.16.0 // indirect
103117
github.com/riferrei/srclient v0.5.4 // indirect
104-
github.com/rogpeppe/go-internal v1.12.0 // indirect
118+
github.com/rogpeppe/go-internal v1.13.1 // indirect
105119
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1 // indirect
106120
github.com/scylladb/go-reflectx v1.0.1 // indirect
107121
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
108122
github.com/shopspring/decimal v1.4.0 // indirect
123+
github.com/smartcontractkit/freeport v0.1.0 // indirect
109124
github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7 // indirect
110125
github.com/spf13/pflag v1.0.5 // indirect
111126
github.com/stretchr/objx v0.5.2 // indirect
112127
github.com/supranational/blst v0.3.13 // indirect
113-
github.com/tklauser/go-sysconf v0.3.13 // indirect
114-
github.com/tklauser/numcpus v0.7.0 // indirect
128+
github.com/tklauser/go-sysconf v0.3.15 // indirect
129+
github.com/tklauser/numcpus v0.10.0 // indirect
115130
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
116131
github.com/x448/float16 v0.8.4 // indirect
117132
github.com/yusufpapurcu/wmi v1.2.4 // indirect
133+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
118134
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 // indirect
119-
go.opentelemetry.io/otel v1.30.0 // indirect
135+
go.opentelemetry.io/otel v1.35.0 // indirect
120136
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.0.0-20240823153156-2a54df7bffb9 // indirect
121137
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp v0.6.0 // indirect
122-
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.28.0 // indirect
138+
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.35.0 // indirect
123139
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.30.0 // indirect
124-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.30.0 // indirect
140+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.35.0 // indirect
125141
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 // indirect
126-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.30.0 // indirect
142+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.35.0 // indirect
127143
go.opentelemetry.io/otel/exporters/stdout/stdoutlog v0.4.0 // indirect
128144
go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v1.28.0 // indirect
129145
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.28.0 // indirect
130146
go.opentelemetry.io/otel/log v0.6.0 // indirect
131-
go.opentelemetry.io/otel/metric v1.30.0 // indirect
132-
go.opentelemetry.io/otel/sdk v1.30.0 // indirect
147+
go.opentelemetry.io/otel/metric v1.35.0 // indirect
148+
go.opentelemetry.io/otel/sdk v1.35.0 // indirect
133149
go.opentelemetry.io/otel/sdk/log v0.6.0 // indirect
134-
go.opentelemetry.io/otel/sdk/metric v1.30.0 // indirect
135-
go.opentelemetry.io/otel/trace v1.30.0 // indirect
136-
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
150+
go.opentelemetry.io/otel/sdk/metric v1.35.0 // indirect
151+
go.opentelemetry.io/otel/trace v1.35.0 // indirect
152+
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
137153
go.uber.org/zap v1.27.0 // indirect
138-
golang.org/x/crypto v0.29.0 // indirect
154+
golang.org/x/crypto v0.36.0 // indirect
139155
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
140-
golang.org/x/net v0.30.0 // indirect
141-
golang.org/x/sync v0.9.0 // indirect
142-
golang.org/x/sys v0.27.0 // indirect
143-
golang.org/x/text v0.20.0 // indirect
144-
google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect
145-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
146-
google.golang.org/grpc v1.67.1 // indirect
156+
golang.org/x/net v0.38.0 // indirect
157+
golang.org/x/sync v0.12.0 // indirect
158+
golang.org/x/sys v0.32.0 // indirect
159+
golang.org/x/text v0.23.0 // indirect
160+
google.golang.org/genproto/googleapis/api v0.0.0-20250218202821-56aae31c358a // indirect
161+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250324211829-b45e905df463 // indirect
162+
google.golang.org/grpc v1.72.0 // indirect
147163
google.golang.org/protobuf v1.36.6 // indirect
148164
gopkg.in/yaml.v3 v3.0.1 // indirect
149165
rsc.io/tmplfunc v0.0.3 // indirect

0 commit comments

Comments
 (0)