Skip to content

Commit 7834a7f

Browse files
chore(deps): bump golang.org/x/tools from 0.26.0 to 0.27.0 (#465)
Bumps [golang.org/x/tools](https://github.com/golang/tools) from 0.26.0 to 0.27.0. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/tools/commit/4d2b19f26de18fb5fcfe5fa93e63cc44a98f1fcf"><code>4d2b19f</code></a> go.mod: update golang.org/x dependencies</li> <li><a href="https://github.com/golang/tools/commit/636867761e007eb34c5cf070be078f1f52e42052"><code>6368677</code></a> gopls/internal/golang: strength reduce ComputeImportFixEdits</li> <li><a href="https://github.com/golang/tools/commit/777f15531169c97bcdedd3657ca88c4f6a3df154"><code>777f155</code></a> gopls/internal/golang: show package attributes on hover</li> <li><a href="https://github.com/golang/tools/commit/8a0e08fb12a5dfb9ce62a770c69b3890114dafc9"><code>8a0e08f</code></a> gopls/doc: add missing doc link</li> <li><a href="https://github.com/golang/tools/commit/61415bee33fa1d798499691290df4eaf9e438c03"><code>61415be</code></a> gopls/internal/cache: guard against malformed paths in port.matches</li> <li><a href="https://github.com/golang/tools/commit/9a89d3a9850fd26cb9aee85127007257ea7ed951"><code>9a89d3a</code></a> internal/analysisinternal: avoid sub-token spans in TypeErrorEndPos</li> <li><a href="https://github.com/golang/tools/commit/1115af6fe6cfbcc9467f11ea249f1f25f6fb551e"><code>1115af6</code></a> internal/expect: support named arguments f(a, b, c=d, e=&quot;f&quot;)</li> <li><a href="https://github.com/golang/tools/commit/0b9e4998c4183c8162199d19632f38120a165c1b"><code>0b9e499</code></a> go/{expect,packages/packagestest}: mention the tag+delete proposal</li> <li><a href="https://github.com/golang/tools/commit/efcd2bdbd90a444d84eb8096da49c9c248a43233"><code>efcd2bd</code></a> internal/packagestest: fork go/packages/packagestest</li> <li><a href="https://github.com/golang/tools/commit/0e9ed3dc7ad85c9b9bfc03b5c956ea1334221e48"><code>0e9ed3d</code></a> go/packages: do not mutate Config</li> <li>Additional commits viewable in <a href="https://github.com/golang/tools/compare/v0.26.0...v0.27.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.26.0&new-version=0.27.0)](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 4aa30a8 commit 7834a7f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+1847
-484
lines changed

go.mod

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/launchdarkly/ld-find-code-refs/v2
22

33
go 1.22
4+
toolchain go1.22.5
45

56
require (
67
github.com/bmatcuk/doublestar/v4 v4.7.1
@@ -15,7 +16,7 @@ require (
1516
github.com/spf13/pflag v1.0.5
1617
github.com/spf13/viper v1.19.0
1718
github.com/stretchr/testify v1.9.0
18-
golang.org/x/tools v0.26.0
19+
golang.org/x/tools v0.27.0
1920
)
2021

2122
require github.com/launchdarkly/api-client-go/v15 v15.1.0
@@ -55,14 +56,14 @@ require (
5556
github.com/xanzy/ssh-agent v0.3.3 // indirect
5657
go.uber.org/atomic v1.9.0 // indirect
5758
go.uber.org/multierr v1.9.0 // indirect
58-
golang.org/x/crypto v0.28.0 // indirect
59+
golang.org/x/crypto v0.29.0 // indirect
5960
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
60-
golang.org/x/mod v0.21.0 // indirect
61-
golang.org/x/net v0.30.0 // indirect
61+
golang.org/x/mod v0.22.0 // indirect
62+
golang.org/x/net v0.31.0 // indirect
6263
golang.org/x/oauth2 v0.18.0 // indirect
63-
golang.org/x/sync v0.8.0 // indirect
64-
golang.org/x/sys v0.26.0 // indirect
65-
golang.org/x/text v0.19.0 // indirect
64+
golang.org/x/sync v0.9.0 // indirect
65+
golang.org/x/sys v0.27.0 // indirect
66+
golang.org/x/text v0.20.0 // indirect
6667
google.golang.org/appengine v1.6.8 // indirect
6768
google.golang.org/protobuf v1.33.0 // indirect
6869
gopkg.in/ini.v1 v1.67.0 // indirect

go.sum

Lines changed: 32 additions & 15 deletions
Large diffs are not rendered by default.

vendor/golang.org/x/crypto/chacha20/chacha_noasm.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.go renamed to vendor/golang.org/x/crypto/chacha20/chacha_ppc64x.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s renamed to vendor/golang.org/x/crypto/chacha20/chacha_ppc64x.s

Lines changed: 86 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/crypto/internal/poly1305/mac_noasm.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.go renamed to vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64x.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.s renamed to vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64x.s

Lines changed: 19 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/crypto/sha3/doc.go

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)