Skip to content

Commit 7cf2677

Browse files
committed
Fix nested paths in flow cadence lint
1 parent da43284 commit 7cf2677

File tree

15 files changed

+681
-173
lines changed

15 files changed

+681
-173
lines changed

flowkit/schema.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,15 @@
105105
},
106106
"key": {
107107
"type": "string"
108+
},
109+
"fork": {
110+
"type": "string"
108111
}
109112
},
110113
"additionalProperties": false,
111114
"type": "object",
112115
"required": [
113-
"host",
114-
"key"
116+
"host"
115117
]
116118
},
117119
"contractDeployment": {

go.mod

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ require (
1212
github.com/getsentry/sentry-go v0.40.0
1313
github.com/gosuri/uilive v0.0.4
1414
github.com/logrusorgru/aurora/v4 v4.0.0
15-
github.com/onflow/cadence v1.8.3
16-
github.com/onflow/cadence-tools/languageserver v1.7.3
17-
github.com/onflow/cadence-tools/lint v1.6.2
18-
github.com/onflow/cadence-tools/test v1.9.1
15+
github.com/onflow/cadence v1.8.7
16+
github.com/onflow/cadence-tools/languageserver v1.7.4
17+
github.com/onflow/cadence-tools/lint v1.6.4
18+
github.com/onflow/cadence-tools/test v1.9.2
1919
github.com/onflow/fcl-dev-wallet v0.9.1
2020
github.com/onflow/flixkit-go/v2 v2.6.2
2121
github.com/onflow/flow-core-contracts/lib/go/templates v1.9.2
22-
github.com/onflow/flow-emulator v1.13.0
23-
github.com/onflow/flow-evm-gateway v1.4.0
24-
github.com/onflow/flow-go v0.44.0-experimental-cadence-v1.8.3.0.20251117184523-ab0655178589
25-
github.com/onflow/flow-go-sdk v1.9.3
22+
github.com/onflow/flow-emulator v1.13.2
23+
github.com/onflow/flow-evm-gateway v1.4.2
24+
github.com/onflow/flow-go v0.45.0-experimental-cadence-v1.8.7-vm-test.1
25+
github.com/onflow/flow-go-sdk v1.9.6
2626
github.com/onflow/flow/protobuf/go/flow v0.4.18
27-
github.com/onflow/flowkit/v2 v2.8.0
27+
github.com/onflow/flowkit/v2 v2.9.0
2828
github.com/onflowser/flowser/v3 v3.2.1-0.20240131200229-7d4d22715f48
2929
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
3030
github.com/pkg/errors v0.9.1
@@ -33,19 +33,19 @@ require (
3333
github.com/rs/zerolog v1.34.0
3434
github.com/sergi/go-diff v1.4.0
3535
github.com/spf13/afero v1.15.0
36-
github.com/spf13/cobra v1.10.1
36+
github.com/spf13/cobra v1.10.2
3737
github.com/spf13/viper v1.21.0
3838
github.com/stretchr/testify v1.11.1
3939
golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b
4040
golang.org/x/term v0.37.0
41-
google.golang.org/grpc v1.76.0
41+
google.golang.org/grpc v1.77.0
4242
)
4343

4444
require (
4545
cloud.google.com/go v0.121.6 // indirect
4646
cloud.google.com/go/auth v0.16.4 // indirect
4747
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
48-
cloud.google.com/go/compute/metadata v0.8.0 // indirect
48+
cloud.google.com/go/compute/metadata v0.9.0 // indirect
4949
cloud.google.com/go/iam v1.5.3 // indirect
5050
cloud.google.com/go/kms v1.23.2 // indirect
5151
cloud.google.com/go/longrunning v0.7.0 // indirect
@@ -61,7 +61,7 @@ require (
6161
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
6262
github.com/benbjohnson/clock v1.3.5 // indirect
6363
github.com/beorn7/perks v1.0.1 // indirect
64-
github.com/bits-and-blooms/bitset v1.24.0 // indirect
64+
github.com/bits-and-blooms/bitset v1.24.4 // indirect
6565
github.com/btcsuite/btcd/btcec/v2 v2.3.4 // indirect
6666
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.3 // indirect
6767
github.com/c-bata/go-prompt v0.2.6 // indirect
@@ -106,7 +106,7 @@ require (
106106
github.com/felixge/httpsnoop v1.0.4 // indirect
107107
github.com/ferranbt/fastssz v0.1.4 // indirect
108108
github.com/fsnotify/fsnotify v1.9.0 // indirect
109-
github.com/fxamacker/cbor/v2 v2.8.1-0.20250402194037-6f932b086829 // indirect
109+
github.com/fxamacker/cbor/v2 v2.9.1-0.20251019205732-39888e6be013 // indirect
110110
github.com/fxamacker/circlehash v0.3.0 // indirect
111111
github.com/go-kit/kit v0.12.0 // indirect
112112
github.com/go-kit/log v0.2.1 // indirect
@@ -136,7 +136,7 @@ require (
136136
github.com/gorilla/websocket v1.5.3 // indirect
137137
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.1.0 // indirect
138138
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
139-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
139+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
140140
github.com/hashicorp/errwrap v1.1.0 // indirect
141141
github.com/hashicorp/go-multierror v1.1.1 // indirect
142142
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
@@ -199,7 +199,7 @@ require (
199199
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
200200
github.com/ncruces/go-strftime v0.1.9 // indirect
201201
github.com/olekukonko/tablewriter v0.0.5 // indirect
202-
github.com/onflow/atree v0.11.0 // indirect
202+
github.com/onflow/atree v0.12.0 // indirect
203203
github.com/onflow/crypto v0.25.3 // indirect
204204
github.com/onflow/fixed-point v0.1.1 // indirect
205205
github.com/onflow/flow-core-contracts/lib/go/contracts v1.9.2 // indirect
@@ -264,28 +264,28 @@ require (
264264
github.com/x448/float16 v0.8.4 // indirect
265265
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
266266
github.com/zeebo/blake3 v0.2.4 // indirect
267-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
267+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
268268
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.61.0 // indirect
269269
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
270-
go.opentelemetry.io/otel v1.37.0 // indirect
270+
go.opentelemetry.io/otel v1.38.0 // indirect
271271
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0 // indirect
272272
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.31.0 // indirect
273-
go.opentelemetry.io/otel/metric v1.37.0 // indirect
274-
go.opentelemetry.io/otel/sdk v1.37.0 // indirect
275-
go.opentelemetry.io/otel/trace v1.37.0 // indirect
276-
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
273+
go.opentelemetry.io/otel/metric v1.38.0 // indirect
274+
go.opentelemetry.io/otel/sdk v1.38.0 // indirect
275+
go.opentelemetry.io/otel/trace v1.38.0 // indirect
276+
go.opentelemetry.io/proto/otlp v1.7.0 // indirect
277277
go.uber.org/atomic v1.11.0 // indirect
278278
go.uber.org/multierr v1.11.0 // indirect
279279
go.uber.org/ratelimit v0.3.1 // indirect
280280
go.uber.org/zap v1.27.0 // indirect
281281
go.yaml.in/yaml/v2 v2.4.2 // indirect
282282
go.yaml.in/yaml/v3 v3.0.4 // indirect
283-
golang.org/x/crypto v0.42.0 // indirect
284-
golang.org/x/net v0.44.0 // indirect
285-
golang.org/x/oauth2 v0.30.0 // indirect
286-
golang.org/x/sync v0.17.0 // indirect
283+
golang.org/x/crypto v0.45.0 // indirect
284+
golang.org/x/net v0.47.0 // indirect
285+
golang.org/x/oauth2 v0.32.0 // indirect
286+
golang.org/x/sync v0.18.0 // indirect
287287
golang.org/x/sys v0.38.0 // indirect
288-
golang.org/x/text v0.29.0 // indirect
288+
golang.org/x/text v0.31.0 // indirect
289289
golang.org/x/time v0.12.0 // indirect
290290
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
291291
gonum.org/v1/gonum v0.16.0 // indirect
@@ -301,6 +301,6 @@ require (
301301
modernc.org/libc v1.66.10 // indirect
302302
modernc.org/mathutil v1.7.1 // indirect
303303
modernc.org/memory v1.11.0 // indirect
304-
modernc.org/sqlite v1.40.0 // indirect
304+
modernc.org/sqlite v1.40.1 // indirect
305305
nhooyr.io/websocket v1.8.7 // indirect
306306
)

0 commit comments

Comments
 (0)