Skip to content

Commit 21f3de0

Browse files
authored
fix(deps): update jsonlogic module to fix race detection (#691)
Signed-off-by: Ohad Moisi <[email protected]>
1 parent 38b3b6f commit 21f3de0

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

providers/flagd/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ require (
3939
github.com/cpuguy83/dockercfg v0.3.1 // indirect
4040
github.com/cucumber/gherkin/go/v26 v26.2.0 // indirect
4141
github.com/cucumber/messages/go/v21 v21.0.1 // indirect
42-
github.com/diegoholiveira/jsonlogic/v3 v3.7.4 // indirect
42+
github.com/diegoholiveira/jsonlogic/v3 v3.8.4 // indirect
4343
github.com/distribution/reference v0.6.0 // indirect
4444
github.com/docker/docker v27.0.3+incompatible // indirect
4545
github.com/docker/go-connections v0.5.0 // indirect

providers/flagd/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1
4646
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
4747
github.com/diegoholiveira/jsonlogic/v3 v3.7.4 h1:92HSmB9bwM/o0ZvrCpcvTP2EsPXSkKtAniIr2W/dcIM=
4848
github.com/diegoholiveira/jsonlogic/v3 v3.7.4/go.mod h1:OYRb6FSTVmMM+MNQ7ElmMsczyNSepw+OU4Z8emDSi4w=
49+
github.com/diegoholiveira/jsonlogic/v3 v3.8.4 h1:IVVU/VLz2hn10ImbmibjiUkdVsSFIB1vfDaOVsaipH4=
50+
github.com/diegoholiveira/jsonlogic/v3 v3.8.4/go.mod h1:OYRb6FSTVmMM+MNQ7ElmMsczyNSepw+OU4Z8emDSi4w=
4951
github.com/distribution/reference v0.6.0 h1:0IXCQ5g4/QMHHkarYzh5l+u8T3t73zM5QvfrDyIgxBk=
5052
github.com/distribution/reference v0.6.0/go.mod h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5Y4f/wlDRiLyi3E=
5153
github.com/docker/docker v27.0.3+incompatible h1:aBGI9TeQ4MPlhquTQKq9XbK79rKFVwXNUAYz9aXyEBE=

providers/flagd/pkg/provider_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import (
1515
)
1616

1717
func TestNewProvider(t *testing.T) {
18+
t.Parallel()
1819
customSyncProvider := process.NewDoNothingCustomSyncProvider()
1920
gRPCDialOptionOverride := []grpc.DialOption{
2021
grpc.WithTransportCredentials(insecure.NewCredentials()),
@@ -272,6 +273,7 @@ func TestNewProvider(t *testing.T) {
272273

273274
for _, test := range tests {
274275
t.Run(test.name, func(t *testing.T) {
276+
t.Parallel()
275277
flagdProvider, err := NewProvider(test.options...)
276278

277279
if err != nil {

0 commit comments

Comments
 (0)