Skip to content

Commit 0156507

Browse files
authored
fix retracted dep (#2341)
* fix retracted dep * tidy
1 parent 45ceb58 commit 0156507

File tree

19 files changed

+28
-21
lines changed

19 files changed

+28
-21
lines changed

framework/.changeset/v0.12.5.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Fix retracted dep

framework/components/dockercompose/billing_platform_service/billing_platform_service.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ import (
1515
"github.com/testcontainers/testcontainers-go/modules/compose"
1616
"github.com/testcontainers/testcontainers-go/wait"
1717

18+
"github.com/smartcontractkit/freeport"
19+
1820
"github.com/smartcontractkit/chainlink-testing-framework/framework"
1921
"github.com/smartcontractkit/chainlink-testing-framework/framework/components/dockercompose/utils"
20-
"github.com/smartcontractkit/freeport"
2122
)
2223

2324
const DefaultPostgresDSN = "postgres://postgres:postgres@postgres:5432/billing_platform?sslmode=disable"

framework/components/dockercompose/chip_ingress_set/chip_ingress.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import (
1919

2020
"github.com/smartcontractkit/chainlink-common/pkg/chipingress"
2121
"github.com/smartcontractkit/chainlink-common/pkg/chipingress/pb"
22+
2223
"github.com/smartcontractkit/chainlink-testing-framework/framework"
2324
)
2425

framework/components/dockercompose/chip_ingress_set/protos.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import (
1414
"golang.org/x/oauth2"
1515

1616
"github.com/smartcontractkit/chainlink-common/pkg/chipingress"
17+
1718
"github.com/smartcontractkit/chainlink-testing-framework/framework"
1819
)
1920

framework/components/dockercompose/chip_ingress_set/redpanda.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66

77
"github.com/confluentinc/confluent-kafka-go/kafka"
88
"github.com/pkg/errors"
9+
910
"github.com/smartcontractkit/chainlink-testing-framework/framework"
1011
)
1112

framework/components/dockercompose/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ require (
119119
github.com/jonboulle/clockwork v0.5.0 // indirect
120120
github.com/josharian/intern v1.0.0 // indirect
121121
github.com/json-iterator/go v1.1.12 // indirect
122-
github.com/klauspost/compress v1.18.0 // indirect
122+
github.com/klauspost/compress v1.18.2 // indirect
123123
github.com/leodido/go-urn v1.4.0 // indirect
124124
github.com/lufia/plan9stats v0.0.0-20250827001030-24949be3fa54 // indirect
125125
github.com/magiconair/properties v1.8.10 // indirect

framework/components/dockercompose/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -400,8 +400,8 @@ github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7V
400400
github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM=
401401
github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
402402
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
403-
github.com/klauspost/compress v1.18.0 h1:c/Cqfb0r+Yi+JtIEq73FWXVkRonBlf0CRNYc8Zttxdo=
404-
github.com/klauspost/compress v1.18.0/go.mod h1:2Pp+KzxcywXVXMr50+X0Q/Lsb43OQHYWRCY2AiWywWQ=
403+
github.com/klauspost/compress v1.18.2 h1:iiPHWW0YrcFgpBYhsA6D1+fqHssJscY/Tm/y2Uqnapk=
404+
github.com/klauspost/compress v1.18.2/go.mod h1:R0h/fSBs8DE4ENlcrlib3PsXS61voFxhIs2DeRhCvJ4=
405405
github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
406406
github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
407407
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=

framework/components/dockercompose/utils/docker.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ import (
1313
"github.com/docker/docker/client"
1414
"github.com/docker/go-connections/nat"
1515
"github.com/pkg/errors"
16-
"github.com/smartcontractkit/chainlink-testing-framework/framework"
1716
"github.com/testcontainers/testcontainers-go"
17+
18+
"github.com/smartcontractkit/chainlink-testing-framework/framework"
1819
)
1920

2021
func ComposeFilePath(rawFilePath string, serviceName string) (string, error) {

framework/components/fake/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ require (
4545
github.com/gogo/protobuf v1.3.2 // indirect
4646
github.com/google/uuid v1.6.0 // indirect
4747
github.com/json-iterator/go v1.1.12 // indirect
48-
github.com/klauspost/compress v1.18.0 // indirect
48+
github.com/klauspost/compress v1.18.2 // indirect
4949
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
5050
github.com/leodido/go-urn v1.4.0 // indirect
5151
github.com/lufia/plan9stats v0.0.0-20240226150601-1dcf7310316a // indirect

framework/components/fake/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnr
119119
github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
120120
github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
121121
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
122-
github.com/klauspost/compress v1.18.0 h1:c/Cqfb0r+Yi+JtIEq73FWXVkRonBlf0CRNYc8Zttxdo=
123-
github.com/klauspost/compress v1.18.0/go.mod h1:2Pp+KzxcywXVXMr50+X0Q/Lsb43OQHYWRCY2AiWywWQ=
122+
github.com/klauspost/compress v1.18.2 h1:iiPHWW0YrcFgpBYhsA6D1+fqHssJscY/Tm/y2Uqnapk=
123+
github.com/klauspost/compress v1.18.2/go.mod h1:R0h/fSBs8DE4ENlcrlib3PsXS61voFxhIs2DeRhCvJ4=
124124
github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
125125
github.com/klauspost/cpuid/v2 v2.2.9 h1:66ze0taIn2H33fBvCkXuv9BmCwDfafmiIVpKV9kKGuY=
126126
github.com/klauspost/cpuid/v2 v2.2.9/go.mod h1:rqkxqrZ1EhYM9G+hXH7YdowN5R5RGN6NK4QwQ3WMXF8=

0 commit comments

Comments
 (0)