Skip to content

Commit 2369544

Browse files
deps: bump github.com/onsi/ginkgo/v2 from 2.23.4 to 2.25.3 (#1879)
Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.23.4 to 2.25.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/onsi/ginkgo/releases">github.com/onsi/ginkgo/v2's releases</a>.</em></p> <blockquote> <h2>v2.25.3</h2> <h2>2.25.3</h2> <h3>Fixes</h3> <ul> <li>emit --github-output group only for progress report itself [f01aed1]</li> </ul> <h2>v2.25.2</h2> <h2>2.25.2</h2> <h3>Fixes</h3> <p>Add github output group for progress report content</p> <h3>Maintenance</h3> <p>Bump Gomega</p> <h2>v2.25.1</h2> <h2>2.25.1</h2> <h3>Fixes</h3> <ul> <li>fix(types): ignore nameless nodes on FullText() [10866d3]</li> <li>chore: fix some CodeQL warnings [2e42cff]</li> </ul> <h2>v2.25.0</h2> <h2>2.25.0</h2> <h3><code>AroundNode</code></h3> <p>This release introduces a new decorator to support more complex spec setup usecases.</p> <p><code>AroundNode</code> registers a function that runs before each individual node. This is considered a more advanced decorator.</p> <p>Please read the <a href="https://onsi.github.io/ginkgo/#advanced-around-node">docs</a> for more information and some examples.</p> <p>Allowed signatures:</p> <ul> <li><code>AroundNode(func())</code> - <code>func</code> will be called before the node is run.</li> <li><code>AroundNode(func(ctx context.Context) context.Context)</code> - <code>func</code> can wrap the passed in context and return a new one which will be passed on to the node.</li> <li><code>AroundNode(func(ctx context.Context, body func(ctx context.Context)))</code> - <code>ctx</code> is the context for the node and <code>body</code> is a function that must be called to run the node. This gives you complete control over what runs before and after the node.</li> </ul> <p>Multiple <code>AroundNode</code> decorators can be applied to a single node and they will run in the order they are applied.</p> <p>Unlike setup nodes like <code>BeforeEach</code> and <code>DeferCleanup</code>, <code>AroundNode</code> is guaranteed to run in the same goroutine as the decorated node. This is necessary when working with lower-level libraries that must run on a single thread (you can call <code>runtime.LockOSThread()</code> in the <code>AroundNode</code> to ensure that the node runs on a single thread).</p> <p>Since <code>AroundNode</code> allows you to modify the context you can also use <code>AroundNode</code> to implement shared setup that attaches values to the context.</p> <p>If applied to a container, <code>AroundNode</code> will run before every node in the container. Including setup nodes like <code>BeforeEach</code> and <code>DeferCleanup</code>.</p> <p><code>AroundNode</code> can also be applied to <code>RunSpecs</code> to run before every node in the suite. This opens up new mechanisms for instrumenting individual nodes across an entire suite.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md">github.com/onsi/ginkgo/v2's changelog</a>.</em></p> <blockquote> <h2>2.25.3</h2> <h3>Fixes</h3> <ul> <li>emit --github-output group only for progress report itself [f01aed1]</li> </ul> <h2>2.25.2</h2> <h3>Fixes</h3> <p>Add github output group for progress report content</p> <h3>Maintenance</h3> <p>Bump Gomega</p> <h2>2.25.1</h2> <h3>Fixes</h3> <ul> <li>fix(types): ignore nameless nodes on FullText() [10866d3]</li> <li>chore: fix some CodeQL warnings [2e42cff]</li> </ul> <h2>2.25.0</h2> <h3><code>AroundNode</code></h3> <p>This release introduces a new decorator to support more complex spec setup usecases.</p> <p><code>AroundNode</code> registers a function that runs before each individual node. This is considered a more advanced decorator.</p> <p>Please read the <a href="https://onsi.github.io/ginkgo/#advanced-around-node">docs</a> for more information and some examples.</p> <p>Allowed signatures:</p> <ul> <li><code>AroundNode(func())</code> - <code>func</code> will be called before the node is run.</li> <li><code>AroundNode(func(ctx context.Context) context.Context)</code> - <code>func</code> can wrap the passed in context and return a new one which will be passed on to the node.</li> <li><code>AroundNode(func(ctx context.Context, body func(ctx context.Context)))</code> - <code>ctx</code> is the context for the node and <code>body</code> is a function that must be called to run the node. This gives you complete control over what runs before and after the node.</li> </ul> <p>Multiple <code>AroundNode</code> decorators can be applied to a single node and they will run in the order they are applied.</p> <p>Unlike setup nodes like <code>BeforeEach</code> and <code>DeferCleanup</code>, <code>AroundNode</code> is guaranteed to run in the same goroutine as the decorated node. This is necessary when working with lower-level libraries that must run on a single thread (you can call <code>runtime.LockOSThread()</code> in the <code>AroundNode</code> to ensure that the node runs on a single thread).</p> <p>Since <code>AroundNode</code> allows you to modify the context you can also use <code>AroundNode</code> to implement shared setup that attaches values to the context.</p> <p>If applied to a container, <code>AroundNode</code> will run before every node in the container. Including setup nodes like <code>BeforeEach</code> and <code>DeferCleanup</code>.</p> <p><code>AroundNode</code> can also be applied to <code>RunSpecs</code> to run before every node in the suite. This opens up new mechanisms for instrumenting individual nodes across an entire suite.</p> <h2>2.24.0</h2> <h3>Features</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/onsi/ginkgo/commit/ee2c0cd1b8580c45c33f0f7c7a848b75e8056ebe"><code>ee2c0cd</code></a> v2.25.3</li> <li><a href="https://github.com/onsi/ginkgo/commit/f01aed18626198447da5a63a5989e2d26c7a3746"><code>f01aed1</code></a> emit --github-output group only for progress report itself</li> <li><a href="https://github.com/onsi/ginkgo/commit/df6d7552b350099017fbf486a24200fd44853c52"><code>df6d755</code></a> v2.25.2</li> <li><a href="https://github.com/onsi/ginkgo/commit/0ad3c4f51aedca5eb2d91b309bafe41c33ad24a2"><code>0ad3c4f</code></a> bump gomega</li> <li><a href="https://github.com/onsi/ginkgo/commit/83e2d4a0c8a91dc2008f26e37b108f0cd89cfb99"><code>83e2d4a</code></a> add --github-output group for progress report content</li> <li><a href="https://github.com/onsi/ginkgo/commit/1ec91144e3ba4dec32f0aa8b6c50888908a1697b"><code>1ec9114</code></a> v2.25.1</li> <li><a href="https://github.com/onsi/ginkgo/commit/2e42cff58e53535fe3a0904941393089f7ad9ff2"><code>2e42cff</code></a> chore: fix some CodeQL warnings</li> <li><a href="https://github.com/onsi/ginkgo/commit/10866d3ce04a0283d7d9484366f082a07e46b311"><code>10866d3</code></a> fix(types): ignore nameless nodes on FullText()</li> <li><a href="https://github.com/onsi/ginkgo/commit/fcc0e74deeb1be682ffa7b56e6567183643798dd"><code>fcc0e74</code></a> v2.25.0</li> <li><a href="https://github.com/onsi/ginkgo/commit/79e35c958f43978a5ef16d3ab029dbdaade8c14c"><code>79e35c9</code></a> tidy up docs</li> <li>Additional commits viewable in <a href="https://github.com/onsi/ginkgo/compare/v2.23.4...v2.25.3">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.23.4&new-version=2.25.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1a39123 commit 2369544

File tree

2 files changed

+36
-30
lines changed

2 files changed

+36
-30
lines changed

go.mod

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ require (
4141
github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c // indirect
4242
github.com/MakeNowJust/heredoc v1.0.0 // indirect
4343
github.com/Masterminds/goutils v1.1.1 // indirect
44-
github.com/Masterminds/semver/v3 v3.3.0 // indirect
44+
github.com/Masterminds/semver/v3 v3.4.0 // indirect
4545
github.com/Masterminds/sprig/v3 v3.3.0 // indirect
4646
github.com/Masterminds/squirrel v1.5.4 // indirect
4747
github.com/Microsoft/go-winio v0.6.2 // indirect
@@ -209,11 +209,11 @@ require (
209209
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 // indirect
210210
go.uber.org/dig v1.17.1 // indirect
211211
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba // indirect
212-
golang.org/x/crypto v0.40.0 // indirect
213-
golang.org/x/mod v0.25.0 // indirect
214-
golang.org/x/text v0.27.0 // indirect
212+
golang.org/x/crypto v0.41.0 // indirect
213+
golang.org/x/mod v0.27.0 // indirect
214+
golang.org/x/text v0.28.0 // indirect
215215
golang.org/x/time v0.12.0 // indirect
216-
golang.org/x/tools v0.34.0 // indirect
216+
golang.org/x/tools v0.36.0 // indirect
217217
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
218218
google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 // indirect
219219
google.golang.org/genproto/googleapis/api v0.0.0-20250528174236-200df99c418a // indirect
@@ -240,11 +240,11 @@ require (
240240
github.com/spf13/pflag v1.0.9
241241
github.com/stretchr/testify v1.10.0
242242
go.uber.org/multierr v1.11.0 // indirect
243-
golang.org/x/net v0.42.0 // indirect
243+
golang.org/x/net v0.43.0 // indirect
244244
golang.org/x/oauth2 v0.30.0 // indirect
245245
golang.org/x/sync v0.16.0
246246
golang.org/x/sys v0.35.0
247-
golang.org/x/term v0.33.0 // indirect
247+
golang.org/x/term v0.34.0 // indirect
248248
google.golang.org/protobuf v1.36.8
249249
gopkg.in/yaml.v3 v3.0.1 // indirect
250250
k8s.io/api v0.32.4
@@ -292,8 +292,8 @@ require (
292292
github.com/mdlayher/netlink v1.7.2
293293
github.com/microsoft/ApplicationInsights-Go v0.4.4
294294
github.com/mitchellh/mapstructure v1.5.0
295-
github.com/onsi/ginkgo/v2 v2.23.4
296-
github.com/onsi/gomega v1.38.0
295+
github.com/onsi/ginkgo/v2 v2.25.3
296+
github.com/onsi/gomega v1.38.2
297297
github.com/pkg/errors v0.9.1
298298
github.com/prometheus/client_model v0.6.2
299299
github.com/prometheus/common v0.65.0
@@ -641,9 +641,11 @@ require (
641641
go.uber.org/atomic v1.11.0 // indirect
642642
go.uber.org/automaxprocs v1.6.0 // indirect
643643
go.yaml.in/yaml/v2 v2.4.2 // indirect
644-
go.yaml.in/yaml/v3 v3.0.3 // indirect
644+
go.yaml.in/yaml/v3 v3.0.4 // indirect
645645
gocloud.dev v0.37.0 // indirect
646646
golang.org/x/exp/typeparams v0.0.0-20250210185358-939b2ce775ac // indirect
647+
golang.org/x/tools/go/expect v0.1.1-deprecated // indirect
648+
golang.org/x/tools/go/packages/packagestest v0.1.1-deprecated // indirect
647649
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
648650
google.golang.org/api v0.223.0 // indirect
649651
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect

go.sum

Lines changed: 24 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ github.com/MakeNowJust/heredoc v1.0.0 h1:cXCdzVdstXyiTqTvfqk9SDHpKNjxuom+DOlyEeQ
175175
github.com/MakeNowJust/heredoc v1.0.0/go.mod h1:mG5amYoWBHf8vpLOuehzbGGw0EHxpZZ6lCpQ4fNJ8LE=
176176
github.com/Masterminds/goutils v1.1.1 h1:5nUrii3FMTL5diU80unEVvNevw1nH4+ZV4DSLVJLSYI=
177177
github.com/Masterminds/goutils v1.1.1/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU=
178-
github.com/Masterminds/semver/v3 v3.3.0 h1:B8LGeaivUe71a5qox1ICM/JLl0NqZSW5CHyL+hmvYS0=
179-
github.com/Masterminds/semver/v3 v3.3.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
178+
github.com/Masterminds/semver/v3 v3.4.0 h1:Zog+i5UMtVoCU8oKka5P7i9q9HgrJeGzI9SA1Xbatp0=
179+
github.com/Masterminds/semver/v3 v3.4.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
180180
github.com/Masterminds/sprig/v3 v3.3.0 h1:mQh0Yrg1XPo6vjYXgtf5OtijNAKJRNcTdOOGZe3tPhs=
181181
github.com/Masterminds/sprig/v3 v3.3.0/go.mod h1:Zy1iXRYNqNLUolqCpL4uhk6SHUMAOSCzdgBfDb35Lz0=
182182
github.com/Masterminds/squirrel v1.5.4 h1:uUcX/aBc8O7Fg9kaISIUsHXdKuqehiXAMQTYX8afzqM=
@@ -1185,14 +1185,14 @@ github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108
11851185
github.com/onsi/ginkgo v1.16.4/go.mod h1:dX+/inL/fNMqNlz0e9LfyB9TswhZpCVdJM/Z6Vvnwo0=
11861186
github.com/onsi/ginkgo v1.16.5 h1:8xi0RTUf59SOSfEtZMvwTvXYMzG4gV23XVHOZiXNtnE=
11871187
github.com/onsi/ginkgo v1.16.5/go.mod h1:+E8gABHa3K6zRBolWtd+ROzc/U5bkGt0FwiG042wbpU=
1188-
github.com/onsi/ginkgo/v2 v2.23.4 h1:ktYTpKJAVZnDT4VjxSbiBenUjmlL/5QkBEocaWXiQus=
1189-
github.com/onsi/ginkgo/v2 v2.23.4/go.mod h1:Bt66ApGPBFzHyR+JO10Zbt0Gsp4uWxu5mIOTusL46e8=
1188+
github.com/onsi/ginkgo/v2 v2.25.3 h1:Ty8+Yi/ayDAGtk4XxmmfUy4GabvM+MegeB4cDLRi6nw=
1189+
github.com/onsi/ginkgo/v2 v2.25.3/go.mod h1:43uiyQC4Ed2tkOzLsEYm7hnrb7UJTWHYNsuy3bG/snE=
11901190
github.com/onsi/gomega v1.5.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=
11911191
github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY=
11921192
github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo=
11931193
github.com/onsi/gomega v1.17.0/go.mod h1:HnhC7FXeEQY45zxNK3PPoIUhzk/80Xly9PcubAlGdZY=
1194-
github.com/onsi/gomega v1.38.0 h1:c/WX+w8SLAinvuKKQFh77WEucCnPk4j2OTUr7lt7BeY=
1195-
github.com/onsi/gomega v1.38.0/go.mod h1:OcXcwId0b9QsE7Y49u+BTrL4IdKOBOKnD6VQNTJEB6o=
1194+
github.com/onsi/gomega v1.38.2 h1:eZCjf2xjZAqe+LeWvKb5weQ+NcPwX84kqJ0cZNxok2A=
1195+
github.com/onsi/gomega v1.38.2/go.mod h1:W2MJcYxRGV63b418Ai34Ud0hEdTVXq9NW9+Sx6uXf3k=
11961196
github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=
11971197
github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM=
11981198
github.com/opencontainers/image-spec v1.1.0 h1:8SG7/vwALn54lVB/0yZ/MMwhFrPYtpEHQb2IpWsCzug=
@@ -1604,8 +1604,8 @@ go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8=
16041604
go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E=
16051605
go.yaml.in/yaml/v2 v2.4.2 h1:DzmwEr2rDGHl7lsFgAHxmNz/1NlQ7xLIrlN2h5d1eGI=
16061606
go.yaml.in/yaml/v2 v2.4.2/go.mod h1:081UH+NErpNdqlCXm3TtEran0rJZGxAYx9hb/ELlsPU=
1607-
go.yaml.in/yaml/v3 v3.0.3 h1:bXOww4E/J3f66rav3pX3m8w6jDE4knZjGOw8b5Y6iNE=
1608-
go.yaml.in/yaml/v3 v3.0.3/go.mod h1:tBHosrYAkRZjRAOREWbDnBXUf08JOwYq++0QNwQiWzI=
1607+
go.yaml.in/yaml/v3 v3.0.4 h1:tfq32ie2Jv2UxXFdLJdh3jXuOzWiL1fo0bu/FbuKpbc=
1608+
go.yaml.in/yaml/v3 v3.0.4/go.mod h1:DhzuOOF2ATzADvBadXxruRBLzYTpT36CKvDb3+aBEFg=
16091609
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba h1:0b9z3AuHCjxk0x/opv64kcgZLBseWJUpBw5I82+2U4M=
16101610
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba/go.mod h1:PLyyIXexvUFg3Owu6p/WfdlivPbZJsZdgWZlrGope/Y=
16111611
gocloud.dev v0.37.0 h1:XF1rN6R0qZI/9DYjN16Uy0durAmSlf58DHOcb28GPro=
@@ -1627,8 +1627,8 @@ golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliY
16271627
golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4=
16281628
golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4=
16291629
golang.org/x/crypto v0.18.0/go.mod h1:R0j02AL6hcrfOiy9T4ZYp/rcWeMxM3L6QYxlOuEG1mg=
1630-
golang.org/x/crypto v0.40.0 h1:r4x+VvoG5Fm+eJcxMaY8CQM7Lb0l1lsmjGBQ6s8BfKM=
1631-
golang.org/x/crypto v0.40.0/go.mod h1:Qr1vMER5WyS2dfPHAlsOj01wgLbsyWtFn/aY+5+ZdxY=
1630+
golang.org/x/crypto v0.41.0 h1:WKYxWedPGCTVVl5+WHSSrOBT0O8lx32+zxmHxijgXp4=
1631+
golang.org/x/crypto v0.41.0/go.mod h1:pO5AFd7FA68rFak7rOAGVuygIISepHftHnr8dr6+sUc=
16321632
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
16331633
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 h1:nDVHiLt8aIbd/VzvPWN6kSOPE7+F/fNFDSXLVYkE/Iw=
16341634
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394/go.mod h1:sIifuuw/Yco/y6yb6+bDNfyeQ/MdPUy/hKEMYQV17cM=
@@ -1655,8 +1655,8 @@ golang.org/x/mod v0.9.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
16551655
golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
16561656
golang.org/x/mod v0.13.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
16571657
golang.org/x/mod v0.14.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
1658-
golang.org/x/mod v0.25.0 h1:n7a+ZbQKQA/Ysbyb0/6IbB1H/X41mKgbhfv7AfG/44w=
1659-
golang.org/x/mod v0.25.0/go.mod h1:IXM97Txy2VM4PJ3gI61r1YEk/gAj6zAHN3AdZt6S9Ww=
1658+
golang.org/x/mod v0.27.0 h1:kb+q2PyFnEADO2IEF935ehFUXlWiNjJWtRNgBLSfbxQ=
1659+
golang.org/x/mod v0.27.0/go.mod h1:rWI627Fq0DEoudcK+MBkNkCe0EetEaDSwJJkCcjpazc=
16601660
golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
16611661
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
16621662
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
@@ -1696,8 +1696,8 @@ golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
16961696
golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk=
16971697
golang.org/x/net v0.16.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE=
16981698
golang.org/x/net v0.20.0/go.mod h1:z8BVo6PvndSri0LbOE3hAn0apkU+1YvI6E70E9jsnvY=
1699-
golang.org/x/net v0.42.0 h1:jzkYrhi3YQWD6MLBJcsklgQsoAcw89EcZbJw8Z614hs=
1700-
golang.org/x/net v0.42.0/go.mod h1:FF1RA5d3u7nAYA4z2TkclSCKh68eSXtiFwcWQpPXdt8=
1699+
golang.org/x/net v0.43.0 h1:lat02VYK2j4aLzMzecihNvTlJNQUq316m2Mr9rnM6YE=
1700+
golang.org/x/net v0.43.0/go.mod h1:vhO1fvI4dGsIjh73sWfUVjj3N7CA9WkKJNQm2svM6Jg=
17011701
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
17021702
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
17031703
golang.org/x/oauth2 v0.30.0 h1:dnDm7JmhM45NNpd8FDDeLhK6FwqbOf4MLCM9zb1BOHI=
@@ -1792,8 +1792,8 @@ golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU=
17921792
golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U=
17931793
golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0=
17941794
golang.org/x/term v0.16.0/go.mod h1:yn7UURbUtPyrVJPGPq404EukNFxcm/foM+bV/bfcDsY=
1795-
golang.org/x/term v0.33.0 h1:NuFncQrRcaRvVmgRkvM3j/F00gWIAlcmlB8ACEKmGIg=
1796-
golang.org/x/term v0.33.0/go.mod h1:s18+ql9tYWp1IfpV9DmCtQDDSRBUjKaw9M1eAv5UeF0=
1795+
golang.org/x/term v0.34.0 h1:O/2T7POpk0ZZ7MAzMeWFSg6S5IpWd/RXDlM9hgM3DR4=
1796+
golang.org/x/term v0.34.0/go.mod h1:5jC53AEywhIVebHgPVeg0mj8OD3VO9OzclacVrqpaAw=
17971797
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
17981798
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
17991799
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
@@ -1805,8 +1805,8 @@ golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
18051805
golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
18061806
golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
18071807
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
1808-
golang.org/x/text v0.27.0 h1:4fGWRpyh641NLlecmyl4LOe6yDdfaYNrGb2zdfo4JV4=
1809-
golang.org/x/text v0.27.0/go.mod h1:1D28KMCvyooCX9hBiosv5Tz/+YLxj0j7XhWjpSUF7CU=
1808+
golang.org/x/text v0.28.0 h1:rhazDwis8INMIwQ4tpjLDzUhx6RlXqZNPEM0huQojng=
1809+
golang.org/x/text v0.28.0/go.mod h1:U8nCwOR8jO/marOQ0QbDiOngZVEBB7MAiitBuMjXiNU=
18101810
golang.org/x/time v0.12.0 h1:ScB/8o8olJvc+CQPWrK3fPZNfh7qgwCrY0zJmoEQLSE=
18111811
golang.org/x/time v0.12.0/go.mod h1:CDIdPxbZBQxdj6cxyCIdrNogrJKMJ7pr37NYpMcMDSg=
18121812
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
@@ -1841,8 +1841,12 @@ golang.org/x/tools v0.7.0/go.mod h1:4pg6aUX35JBAogB10C9AtvVL+qowtN4pT3CGSQex14s=
18411841
golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58=
18421842
golang.org/x/tools v0.14.0/go.mod h1:uYBEerGOWcJyEORxN+Ek8+TT266gXkNlHdJBwexUsBg=
18431843
golang.org/x/tools v0.17.0/go.mod h1:xsh6VxdV005rRVaS6SSAf9oiAqljS7UZUacMZ8Bnsps=
1844-
golang.org/x/tools v0.34.0 h1:qIpSLOxeCYGg9TrcJokLBG4KFA6d795g0xkBkiESGlo=
1845-
golang.org/x/tools v0.34.0/go.mod h1:pAP9OwEaY1CAW3HOmg3hLZC5Z0CCmzjAF2UQMSqNARg=
1844+
golang.org/x/tools v0.36.0 h1:kWS0uv/zsvHEle1LbV5LE8QujrxB3wfQyxHfhOk0Qkg=
1845+
golang.org/x/tools v0.36.0/go.mod h1:WBDiHKJK8YgLHlcQPYQzNCkUxUypCaa5ZegCVutKm+s=
1846+
golang.org/x/tools/go/expect v0.1.1-deprecated h1:jpBZDwmgPhXsKZC6WhL20P4b/wmnpsEAGHaNy0n/rJM=
1847+
golang.org/x/tools/go/expect v0.1.1-deprecated/go.mod h1:eihoPOH+FgIqa3FpoTwguz/bVUSGBlGQU67vpBeOrBY=
1848+
golang.org/x/tools/go/packages/packagestest v0.1.1-deprecated h1:1h2MnaIAIXISqTFKdENegdpAgUXz6NrPEsbIeWaBRvM=
1849+
golang.org/x/tools/go/packages/packagestest v0.1.1-deprecated/go.mod h1:RVAQXBGNv1ib0J382/DPCRS/BPnsGebyM1Gj5VSDpG8=
18461850
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
18471851
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
18481852
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=

0 commit comments

Comments
 (0)