Skip to content

Commit 86a2759

Browse files
committed
fix: update incremental-build-protocol to handle watchman fresh instances
1 parent e44afd3 commit 86a2759

6 files changed

Lines changed: 185 additions & 79 deletions

File tree

bazel/include/go.MODULE.bazel

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -24,42 +24,42 @@ single_version_override(
2424
bazel_dep(name = "aspect_gazelle", version = "0.0.0")
2525
archive_override(
2626
module_name = "aspect_gazelle",
27-
integrity = "sha256-YVikG1kdNfSlonCZr1lM8zBr2eQwpo5rVBpfCiCL+og=",
28-
strip_prefix = "aspect-gazelle-baf8a9e207bf105a6735219bacbb14d718eb2a14",
29-
urls = ["https://github.com/aspect-build/aspect-gazelle/archive/baf8a9e207bf105a6735219bacbb14d718eb2a14.tar.gz"],
27+
integrity = "sha256-XZUwwAH0/gyoW90PDDiZUxZaSuQcBQuvEe7PBaL0Eoc=",
28+
strip_prefix = "aspect-gazelle-9c84884007d508c04a4b327cbf9c586a0c9d966c",
29+
urls = ["https://github.com/aspect-build/aspect-gazelle/archive/9c84884007d508c04a4b327cbf9c586a0c9d966c.tar.gz"],
3030
)
3131

3232
bazel_dep(name = "aspect_gazelle_js", version = "0.0.0")
3333
archive_override(
3434
module_name = "aspect_gazelle_js",
35-
integrity = "sha256-YVikG1kdNfSlonCZr1lM8zBr2eQwpo5rVBpfCiCL+og=",
36-
strip_prefix = "aspect-gazelle-baf8a9e207bf105a6735219bacbb14d718eb2a14/language/js",
37-
urls = ["https://github.com/aspect-build/aspect-gazelle/archive/baf8a9e207bf105a6735219bacbb14d718eb2a14.tar.gz"],
35+
integrity = "sha256-XZUwwAH0/gyoW90PDDiZUxZaSuQcBQuvEe7PBaL0Eoc=",
36+
strip_prefix = "aspect-gazelle-9c84884007d508c04a4b327cbf9c586a0c9d966c/language/js",
37+
urls = ["https://github.com/aspect-build/aspect-gazelle/archive/9c84884007d508c04a4b327cbf9c586a0c9d966c.tar.gz"],
3838
)
3939

4040
bazel_dep(name = "aspect_gazelle_orion", version = "0.0.0")
4141
archive_override(
4242
module_name = "aspect_gazelle_orion",
43-
integrity = "sha256-YVikG1kdNfSlonCZr1lM8zBr2eQwpo5rVBpfCiCL+og=",
44-
strip_prefix = "aspect-gazelle-baf8a9e207bf105a6735219bacbb14d718eb2a14/language/orion",
45-
urls = ["https://github.com/aspect-build/aspect-gazelle/archive/baf8a9e207bf105a6735219bacbb14d718eb2a14.tar.gz"],
43+
integrity = "sha256-XZUwwAH0/gyoW90PDDiZUxZaSuQcBQuvEe7PBaL0Eoc=",
44+
strip_prefix = "aspect-gazelle-9c84884007d508c04a4b327cbf9c586a0c9d966c/language/orion",
45+
urls = ["https://github.com/aspect-build/aspect-gazelle/archive/9c84884007d508c04a4b327cbf9c586a0c9d966c.tar.gz"],
4646
)
4747

4848
bazel_dep(name = "aspect_gazelle_runner", version = "0.0.0")
4949
archive_override(
5050
module_name = "aspect_gazelle_runner",
51-
integrity = "sha256-YVikG1kdNfSlonCZr1lM8zBr2eQwpo5rVBpfCiCL+og=",
52-
strip_prefix = "aspect-gazelle-baf8a9e207bf105a6735219bacbb14d718eb2a14/runner",
53-
urls = ["https://github.com/aspect-build/aspect-gazelle/archive/baf8a9e207bf105a6735219bacbb14d718eb2a14.tar.gz"],
51+
integrity = "sha256-XZUwwAH0/gyoW90PDDiZUxZaSuQcBQuvEe7PBaL0Eoc=",
52+
strip_prefix = "aspect-gazelle-9c84884007d508c04a4b327cbf9c586a0c9d966c/runner",
53+
urls = ["https://github.com/aspect-build/aspect-gazelle/archive/9c84884007d508c04a4b327cbf9c586a0c9d966c.tar.gz"],
5454
)
5555

5656
# Not direclty used but must be declared+overriden until aspect_gazelle_runner points to one published to BCR.
5757
bazel_dep(name = "aspect_gazelle_kotlin", version = "0.0.0")
5858
archive_override(
5959
module_name = "aspect_gazelle_kotlin",
60-
integrity = "sha256-YVikG1kdNfSlonCZr1lM8zBr2eQwpo5rVBpfCiCL+og=",
61-
strip_prefix = "aspect-gazelle-baf8a9e207bf105a6735219bacbb14d718eb2a14/language/kotlin",
62-
urls = ["https://github.com/aspect-build/aspect-gazelle/archive/baf8a9e207bf105a6735219bacbb14d718eb2a14.tar.gz"],
60+
integrity = "sha256-XZUwwAH0/gyoW90PDDiZUxZaSuQcBQuvEe7PBaL0Eoc=",
61+
strip_prefix = "aspect-gazelle-9c84884007d508c04a4b327cbf9c586a0c9d966c/language/kotlin",
62+
urls = ["https://github.com/aspect-build/aspect-gazelle/archive/9c84884007d508c04a4b327cbf9c586a0c9d966c.tar.gz"],
6363
)
6464

6565
# Go modules

cmd/aspect/configure/configure.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,9 @@ func runConfigureWatch(ctx context.Context, v *runner.GazelleRunner, mode string
328328

329329
// Convert a watch.ChangeSet to ibp.SourceInfoMap
330330
func changesetToCycle(cs *watchman.ChangeSet) ibp.SourceInfoMap {
331+
if cs.IsFreshInstance {
332+
return nil
333+
}
331334
b := true
332335
si := &ibp.SourceInfo{IsSource: &b}
333336
changes := make(ibp.SourceInfoMap, len(cs.Paths))

go.mod

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ go 1.26.1
44

55
require (
66
github.com/alphadose/haxmap v1.4.1
7-
github.com/aspect-build/aspect-gazelle/common v0.0.0-20260504030056-baf8a9e207bf
8-
github.com/aspect-build/aspect-gazelle/language/orion v0.0.0-20260504030056-baf8a9e207bf
9-
github.com/aspect-build/aspect-gazelle/runner v0.0.0-20260504030056-baf8a9e207bf
7+
github.com/aspect-build/aspect-gazelle/common v0.0.0-20260504072208-9c84884007d5
8+
github.com/aspect-build/aspect-gazelle/language/orion v0.0.0-20260504072208-9c84884007d5
9+
github.com/aspect-build/aspect-gazelle/runner v0.0.0-20260504072208-9c84884007d5
1010
github.com/bazelbuild/bazel-gazelle v0.50.0
1111
github.com/bazelbuild/bazelisk v1.27.0 // NOTE: keep vendored code in sync
1212
github.com/bazelbuild/buildtools v0.0.0-20260319080235-05d2ebe49b0f
@@ -21,7 +21,7 @@ require (
2121
github.com/hay-kot/scaffold v0.11.0
2222
github.com/klauspost/compress v1.18.3
2323
github.com/manifoldco/promptui v0.9.0
24-
github.com/mattn/go-isatty v0.0.20
24+
github.com/mattn/go-isatty v0.0.22
2525
github.com/mitchellh/go-homedir v1.1.0
2626
github.com/onsi/gomega v1.39.1
2727
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
@@ -54,16 +54,16 @@ require (
5454
require (
5555
dario.cat/mergo v1.0.2 // indirect
5656
github.com/EngFlow/gazelle_cc v0.5.0 // indirect
57-
github.com/Masterminds/semver/v3 v3.4.0 // indirect
57+
github.com/Masterminds/semver/v3 v3.5.0 // indirect
5858
github.com/Microsoft/go-winio v0.6.2 // indirect
5959
github.com/ProtonMail/go-crypto v1.3.0 // indirect
6060
github.com/a8m/envsubst v1.4.3 // indirect
6161
github.com/agext/levenshtein v1.2.3 // indirect
6262
github.com/alecthomas/chroma/v2 v2.23.1 // indirect
6363
github.com/alecthomas/participle/v2 v2.1.4 // indirect
6464
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
65-
github.com/aspect-build/aspect-gazelle/language/js v0.0.0-20260504030056-baf8a9e207bf // indirect
66-
github.com/aspect-build/aspect-gazelle/language/kotlin v0.0.0-20260504030056-baf8a9e207bf // indirect
65+
github.com/aspect-build/aspect-gazelle/language/js v0.0.0-20260504072208-9c84884007d5 // indirect
66+
github.com/aspect-build/aspect-gazelle/language/kotlin v0.0.0-20260504072208-9c84884007d5 // indirect
6767
github.com/atotto/clipboard v0.1.4 // indirect
6868
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
6969
github.com/aymerick/douceur v0.2.0 // indirect
@@ -139,7 +139,7 @@ require (
139139
github.com/mattn/go-localereader v0.0.1 // indirect
140140
github.com/mattn/go-runewidth v0.0.19 // indirect
141141
github.com/microcosm-cc/bluemonday v1.0.27 // indirect
142-
github.com/mikefarah/yq/v4 v4.52.5 // indirect
142+
github.com/mikefarah/yq/v4 v4.53.2 // indirect
143143
github.com/mitchellh/copystructure v1.2.0 // indirect
144144
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
145145
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
@@ -150,7 +150,7 @@ require (
150150
github.com/muesli/reflow v0.3.0 // indirect
151151
github.com/muesli/termenv v0.16.0 // indirect
152152
github.com/oklog/run v1.1.0 // indirect
153-
github.com/pelletier/go-toml/v2 v2.3.0 // indirect
153+
github.com/pelletier/go-toml/v2 v2.3.1 // indirect
154154
github.com/pjbgf/sha1cd v0.5.0 // indirect
155155
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
156156
github.com/psanford/memfs v0.0.0-20241019191636-4ef911798f9b // indirect
@@ -169,8 +169,8 @@ require (
169169
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
170170
github.com/yuin/goldmark v1.7.13 // indirect
171171
github.com/yuin/goldmark-emoji v1.0.6 // indirect
172-
github.com/yuin/gopher-lua v1.1.1 // indirect
173-
github.com/zclconf/go-cty v1.18.0 // indirect
172+
github.com/yuin/gopher-lua v1.1.2 // indirect
173+
github.com/zclconf/go-cty v1.18.1 // indirect
174174
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
175175
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.42.0 // indirect
176176
go.opentelemetry.io/otel/metric v1.42.0 // indirect

go.sum

Lines changed: 22 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ github.com/EngFlow/gazelle_cc v0.5.0 h1:9GB3iRmUTIfUsbNMYcFMI1QmT8DDz1OG+kRpds5m
44
github.com/EngFlow/gazelle_cc v0.5.0/go.mod h1:4CDkNyAdqoR77hBG4le7Lt3iRHpAzSMbKrfYI1vEwpI=
55
github.com/MakeNowJust/heredoc v1.0.0 h1:cXCdzVdstXyiTqTvfqk9SDHpKNjxuom+DOlyEeQ4pzQ=
66
github.com/MakeNowJust/heredoc v1.0.0/go.mod h1:mG5amYoWBHf8vpLOuehzbGGw0EHxpZZ6lCpQ4fNJ8LE=
7-
github.com/Masterminds/semver/v3 v3.4.0 h1:Zog+i5UMtVoCU8oKka5P7i9q9HgrJeGzI9SA1Xbatp0=
8-
github.com/Masterminds/semver/v3 v3.4.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
7+
github.com/Masterminds/semver/v3 v3.5.0 h1:kQceYJfbupGfZOKZQg0kou0DgAKhzDg2NZPAwZ/2OOE=
8+
github.com/Masterminds/semver/v3 v3.5.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
99
github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v8QkMxJ6pZY=
1010
github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY=
1111
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=
@@ -31,16 +31,16 @@ github.com/apparentlymart/go-textseg/v15 v15.0.0 h1:uYvfpb3DyLSCGWnctWKGj857c6ew
3131
github.com/apparentlymart/go-textseg/v15 v15.0.0/go.mod h1:K8XmNZdhEBkdlyDdvbmmsvpAG721bKi0joRfFdHIWJ4=
3232
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio=
3333
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
34-
github.com/aspect-build/aspect-gazelle/common v0.0.0-20260504030056-baf8a9e207bf h1:VIAfiCws9a/VugxiaiFlNnjDfv/zxjYOih/fCyY/8uc=
35-
github.com/aspect-build/aspect-gazelle/common v0.0.0-20260504030056-baf8a9e207bf/go.mod h1:UTQA/PgQFE770aiMb5H/nJ60qRQgONQ7PCX+Mp4qTH8=
36-
github.com/aspect-build/aspect-gazelle/language/js v0.0.0-20260504030056-baf8a9e207bf h1:UfmWgwzbC+JdMyAh9HOmneTWY7u/CfVXP634gaeiYSU=
37-
github.com/aspect-build/aspect-gazelle/language/js v0.0.0-20260504030056-baf8a9e207bf/go.mod h1:VpfBkrIUu1GipglsCCqMAfVUq0hphNjDybAeqSuUVwY=
38-
github.com/aspect-build/aspect-gazelle/language/kotlin v0.0.0-20260504030056-baf8a9e207bf h1:f+IyqYYQmLmfhN3Jd6xg67tKGn5ppbmC2sOA8UPc378=
39-
github.com/aspect-build/aspect-gazelle/language/kotlin v0.0.0-20260504030056-baf8a9e207bf/go.mod h1:IYeaZX89egf+WK7hVbHqMupirtV894Im0Js9f5KMnLA=
40-
github.com/aspect-build/aspect-gazelle/language/orion v0.0.0-20260504030056-baf8a9e207bf h1:P2jae9071Boy/X5ldUkBKbkgQ705nrBw7Ri//qpCwQI=
41-
github.com/aspect-build/aspect-gazelle/language/orion v0.0.0-20260504030056-baf8a9e207bf/go.mod h1:Tog5/QtENm+rOYcWb0SZTVmIABRotWTDu+NA5aSK8DA=
42-
github.com/aspect-build/aspect-gazelle/runner v0.0.0-20260504030056-baf8a9e207bf h1:8u6kDiOdLBpircHeIqmCSSTyIm8Pxw6Cl4t/KJANDIA=
43-
github.com/aspect-build/aspect-gazelle/runner v0.0.0-20260504030056-baf8a9e207bf/go.mod h1:NAy4X4S9svk8FBhAt2lfJh/GizDwMX3WYL8UntPX7b0=
34+
github.com/aspect-build/aspect-gazelle/common v0.0.0-20260504072208-9c84884007d5 h1:njHRmzoTLbaMhuMP46B2hZxGGWypwdnKp/1B76tVBks=
35+
github.com/aspect-build/aspect-gazelle/common v0.0.0-20260504072208-9c84884007d5/go.mod h1:YYCHODCLeqDOEgXNvFKhKRwwprkXiaiCLceotY/ohHE=
36+
github.com/aspect-build/aspect-gazelle/language/js v0.0.0-20260504072208-9c84884007d5 h1:kbwv97gOLoPN3nbYlkp/gHplKttrHBABtERTR3ya4nw=
37+
github.com/aspect-build/aspect-gazelle/language/js v0.0.0-20260504072208-9c84884007d5/go.mod h1:mfeY2D7N0R0Od12id9hDnjPrR0Z2RXZN0JwTo7wNp/I=
38+
github.com/aspect-build/aspect-gazelle/language/kotlin v0.0.0-20260504072208-9c84884007d5 h1:1v5EsA5OdV5eSrkObKCXtsbrQfJzpfObkHm4NgE3U5M=
39+
github.com/aspect-build/aspect-gazelle/language/kotlin v0.0.0-20260504072208-9c84884007d5/go.mod h1:6YdjU23ZHWJEki9K3X+7agym4rf6BQ6Kes4a5MzfcgM=
40+
github.com/aspect-build/aspect-gazelle/language/orion v0.0.0-20260504072208-9c84884007d5 h1:o00OB32hiquD2DfBjKGt21SmkL+gVxCpWllHF+g1XQk=
41+
github.com/aspect-build/aspect-gazelle/language/orion v0.0.0-20260504072208-9c84884007d5/go.mod h1:2BMCnAh1+8C/LlOFsO/hR32xZtBLey3QDQ9a6DP5D7c=
42+
github.com/aspect-build/aspect-gazelle/runner v0.0.0-20260504072208-9c84884007d5 h1:lbxAF24IfmqKvIOt6BPVFvc52EdTQ7T4MCe5bsG4paQ=
43+
github.com/aspect-build/aspect-gazelle/runner v0.0.0-20260504072208-9c84884007d5/go.mod h1:s+yb0ysyhmYsEX02/Ao+ENhaDXEkzCfOg9iENGMWFfY=
4444
github.com/atotto/clipboard v0.1.4 h1:EH0zSVneZPSuFR11BlR9YppQTVDbh5+16AmcJi4g1z4=
4545
github.com/atotto/clipboard v0.1.4/go.mod h1:ZY9tmq7sm5xIbd9bOK4onWV4S6X0u6GY7Vn0Yu86PYI=
4646
github.com/aymanbagabas/go-osc52/v2 v2.0.1 h1:HwpRHbFMcZLEVr42D4p7XBqjyuxQH5SMiErDT4WkJ2k=
@@ -281,17 +281,17 @@ github.com/mattn/go-colorable v0.1.14 h1:9A9LHSqF/7dyVVX6g0U9cwm9pG3kP9gSzcuIPHP
281281
github.com/mattn/go-colorable v0.1.14/go.mod h1:6LmQG8QLFO4G5z1gPvYEzlUgJ2wF+stgPZH1UqBm1s8=
282282
github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=
283283
github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94=
284-
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
285-
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
284+
github.com/mattn/go-isatty v0.0.22 h1:j8l17JJ9i6VGPUFUYoTUKPSgKe/83EYU2zBC7YNKMw4=
285+
github.com/mattn/go-isatty v0.0.22/go.mod h1:ZXfXG4SQHsB/w3ZeOYbR0PrPwLy+n6xiMrJlRFqopa4=
286286
github.com/mattn/go-localereader v0.0.1 h1:ygSAOl7ZXTx4RdPYinUpg6W99U8jWvWi9Ye2JC/oIi4=
287287
github.com/mattn/go-localereader v0.0.1/go.mod h1:8fBrzywKY7BI3czFoHkuzRoWE9C+EiG4R1k4Cjx5p88=
288288
github.com/mattn/go-runewidth v0.0.12/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk=
289289
github.com/mattn/go-runewidth v0.0.19 h1:v++JhqYnZuu5jSKrk9RbgF5v4CGUjqRfBm05byFGLdw=
290290
github.com/mattn/go-runewidth v0.0.19/go.mod h1:XBkDxAl56ILZc9knddidhrOlY5R/pDhgLpndooCuJAs=
291291
github.com/microcosm-cc/bluemonday v1.0.27 h1:MpEUotklkwCSLeH+Qdx1VJgNqLlpY2KXwXFM08ygZfk=
292292
github.com/microcosm-cc/bluemonday v1.0.27/go.mod h1:jFi9vgW+H7c3V0lb6nR74Ib/DIB5OBs92Dimizgw2cA=
293-
github.com/mikefarah/yq/v4 v4.52.5 h1:IcWRiRj04PjSbJOktJo4aR+8jiFaHG89qX6Ni2LePnw=
294-
github.com/mikefarah/yq/v4 v4.52.5/go.mod h1:R53Xchhq5wDkOMU1FVVfHnv1VMur7kwEipswbYQM5U4=
293+
github.com/mikefarah/yq/v4 v4.53.2 h1:ZPIUjpgh4ACOKW98PXvr4o4dlaRjSOLLa6gS1t7FrAo=
294+
github.com/mikefarah/yq/v4 v4.53.2/go.mod h1:dKgedwimDBsgJO6zq8tQkiGoGmkRH9JWrl3G3na2z7M=
295295
github.com/mitchellh/copystructure v1.2.0 h1:vpKXTN4ewci03Vljg/q9QvCGUDttBOGBIa15WveJJGw=
296296
github.com/mitchellh/copystructure v1.2.0/go.mod h1:qLl+cE2AmVv+CoeAwDPye/v+N2HKCj9FbZEVFJRxO9s=
297297
github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=
@@ -318,8 +318,8 @@ github.com/onsi/ginkgo/v2 v2.28.0 h1:Rrf+lVLmtlBIKv6KrIGJCjyY8N36vDVcutbGJkyqjJc
318318
github.com/onsi/ginkgo/v2 v2.28.0/go.mod h1:ArE1D/XhNXBXCBkKOLkbsb2c81dQHCRcF5zwn/ykDRo=
319319
github.com/onsi/gomega v1.39.1 h1:1IJLAad4zjPn2PsnhH70V4DKRFlrCzGBNrNaru+Vf28=
320320
github.com/onsi/gomega v1.39.1/go.mod h1:hL6yVALoTOxeWudERyfppUcZXjMwIMLnuSfruD2lcfg=
321-
github.com/pelletier/go-toml/v2 v2.3.0 h1:k59bC/lIZREW0/iVaQR8nDHxVq8OVlIzYCOJf421CaM=
322-
github.com/pelletier/go-toml/v2 v2.3.0/go.mod h1:2gIqNv+qfxSVS7cM2xJQKtLSTLUE9V8t9Stt+h56mCY=
321+
github.com/pelletier/go-toml/v2 v2.3.1 h1:MYEvvGnQjeNkRF1qUuGolNtNExTDwct51yp7olPtrEc=
322+
github.com/pelletier/go-toml/v2 v2.3.1/go.mod h1:2gIqNv+qfxSVS7cM2xJQKtLSTLUE9V8t9Stt+h56mCY=
323323
github.com/pjbgf/sha1cd v0.5.0 h1:a+UkboSi1znleCDUNT3M5YxjOnN1fz2FhN48FlwCxs0=
324324
github.com/pjbgf/sha1cd v0.5.0/go.mod h1:lhpGlyHLpQZoxMv8HcgXvZEhcGs0PG/vsZnEJ7H0iCM=
325325
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c h1:+mdjkGKdHQG3305AYmdv1U2eRNDiU2ErMBj1gwrq8eQ=
@@ -399,10 +399,10 @@ github.com/yuin/goldmark v1.7.13 h1:GPddIs617DnBLFFVJFgpo1aBfe/4xcvMc3SB5t/D0pA=
399399
github.com/yuin/goldmark v1.7.13/go.mod h1:ip/1k0VRfGynBgxOz0yCqHrbZXhcjxyuS66Brc7iBKg=
400400
github.com/yuin/goldmark-emoji v1.0.6 h1:QWfF2FYaXwL74tfGOW5izeiZepUDroDJfWubQI9HTHs=
401401
github.com/yuin/goldmark-emoji v1.0.6/go.mod h1:ukxJDKFpdFb5x0a5HqbdlcKtebh086iJpI31LTKmWuA=
402-
github.com/yuin/gopher-lua v1.1.1 h1:kYKnWBjvbNP4XLT3+bPEwAXJx262OhaHDWDVOPjL46M=
403-
github.com/yuin/gopher-lua v1.1.1/go.mod h1:GBR0iDaNXjAgGg9zfCvksxSRnQx76gclCIb7kdAd1Pw=
404-
github.com/zclconf/go-cty v1.18.0 h1:pJ8+HNI4gFoyRNqVE37wWbJWVw43BZczFo7KUoRczaA=
405-
github.com/zclconf/go-cty v1.18.0/go.mod h1:qpnV6EDNgC1sns/AleL1fvatHw72j+S+nS+MJ+T2CSg=
402+
github.com/yuin/gopher-lua v1.1.2 h1:yF/FjE3hD65tBbt0VXLE13HWS9h34fdzJmrWRXwobGA=
403+
github.com/yuin/gopher-lua v1.1.2/go.mod h1:7aRmXIWl37SqRf0koeyylBEzJ+aPt8A+mmkQ4f1ntR8=
404+
github.com/zclconf/go-cty v1.18.1 h1:yEGE8M4iIZlyKQURZNb2SnEyZlZHUcBCnx6KF81KuwM=
405+
github.com/zclconf/go-cty v1.18.1/go.mod h1:qpnV6EDNgC1sns/AleL1fvatHw72j+S+nS+MJ+T2CSg=
406406
github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940 h1:4r45xpDWB6ZMSMNJFMOjqrGHynW3DIBuR2H9j0ug+Mo=
407407
github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940/go.mod h1:CmBdvvj3nqzfzJ6nTCIwDTPZ56aVGvDrmztiO5g3qrM=
408408
go.opentelemetry.io/auto/sdk v1.2.1 h1:jXsnJ4Lmnqd11kwkBV2LgLoFMZKizbCi5fNZ/ipaZ64=
@@ -471,7 +471,6 @@ golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5/go.mod h1:oPkhp1MJrh7nUepCBc
471471
golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
472472
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
473473
golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
474-
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
475474
golang.org/x/sys v0.43.0 h1:Rlag2XtaFTxp19wS8MXlJwTvoh8ArU6ezoyFsMyCTNI=
476475
golang.org/x/sys v0.43.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
477476
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=

0 commit comments

Comments
 (0)