Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump golang.org/x/tools from 0.6.0 to 0.7.0 in /_tools #1394

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 13, 2023

Bumps golang.org/x/tools from 0.6.0 to 0.7.0.

Release notes

Sourced from golang.org/x/tools's releases.

gopls/v0.7.0

Features

Postfix completions

Postfix completions are a new style of completions that can save you time by inserting more complex pieces of commonly-written code. All of the results end with !. This feature was added experimentally in gopls/v0.6.10 and is now enabled by default.

See this example:

ezgif-3-a82b2077ff38

New commands: List known packages and add import

These commands can be used to manually list available packages to import and then add an import to your file. They are currently not used by any known clients, but they will be made available through the Command Palette in VS Code in the next VS Code Go release.

Improvements

Memory usage

Improved trimming of the ASTs of dependency packages results in reduced memory usage, especially for projects with many dependencies. This may result in some hard-to-diagnose bugs that we're not yet aware of, so please report any surprising behavior via https://golang.org/issues/new.

Fixes

A full list of all issues fixed can be found in the gopls/v0.7.0 milestone. To report a new problem, please file a new issue at https://golang.org/issues/new.

Thank you to our contributors!

@​muirdm @​marwan-at-work @​dominikh @​leitzler @​OneOfOne @​zyctree @​ShoshinNikita @​KarthikNayak @​suzmue @​bcmills

gopls/v0.6.11

This release contains mainly bug fixes. A full list of all issues fixed can be found in the gopls/v0.6.11 milestone. To report a new problem, please file a new issue at https://golang.org/issues/new.

Thank you to our contributors!

@​ShoshinNikita @​sakateka @​muirdm Will Langford @​empire @​justplesh @​suzmue

gopls/v0.6.10

Features

t.Fatal snippet

If you trigger completion in a test function, on the line after a call to a function that returns an error, you will be offered a completion snippet for:

if err != nil {
    t.Fatal(err)
}
</tr></table> 

... (truncated)

Commits
  • 031fc75 gopls/internal/regtest/bench: don't run the iwl test with -short
  • f477bf4 gopls/internal/lsp/source/completion: avoid Snapshot.CachedPackages
  • b72edd1 gopls/internal/lsp/filecache: GOPLS_CACHE -> GOPLSCACHE
  • d566927 gopls/internal/lsp/regtest: add @​suggestedfix marker
  • fdb0da6 gopls/internal/regtest/bench: add a benchmark for diagnosing a change
  • 6eb432f gopls/internal/regtest/bench: add benchmarks in a wider variety of repos
  • c91d0b8 gopls/internal/lsp/source: guard against concurrent writes in xrefs
  • c0742f5 go.mod: update golang.org/x dependencies
  • 21d2256 gopls/internal/lsp/cache: make type-checking incremental
  • ae05609 internal/lsp/cache: add an LRU parse cache
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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 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)

@dependabot dependabot bot requested a review from a team as a code owner March 13, 2023 03:02
@dependabot dependabot bot added automerge Used by Kodiak bot to automerge PRs dependencies Pull requests that update a dependency file go labels Mar 13, 2023
@codecov-commenter
Copy link

codecov-commenter commented Mar 13, 2023

Codecov Report

Merging #1394 (d16fd07) into main (7651ae3) will not change coverage.
The diff coverage is n/a.

📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more

@@           Coverage Diff           @@
##             main    #1394   +/-   ##
=======================================
  Coverage   78.17%   78.17%           
=======================================
  Files          43       43           
  Lines        3239     3239           
=======================================
  Hits         2532     2532           
  Misses        565      565           
  Partials      142      142           

📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more

@dependabot dependabot bot force-pushed the dependabot/go_modules/_tools/golang.org/x/tools-0.7.0 branch 2 times, most recently from 25debd0 to d16fd07 Compare March 13, 2023 03:31
Bumps [golang.org/x/tools](https:/golang/tools) from 0.6.0 to 0.7.0.
- [Release notes](https:/golang/tools/releases)
- [Commits](golang/tools@v0.6.0...v0.7.0)

---
updated-dependencies:
- dependency-name: golang.org/x/tools
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/go_modules/_tools/golang.org/x/tools-0.7.0 branch from d16fd07 to 9376025 Compare March 14, 2023 14:28
@kodiakhq kodiakhq bot merged commit 164f4de into main Mar 14, 2023
@kodiakhq kodiakhq bot deleted the dependabot/go_modules/_tools/golang.org/x/tools-0.7.0 branch March 14, 2023 14:33
markphelps added a commit that referenced this pull request Mar 15, 2023
* main: (36 commits)
  feat(sdk/go): thread client token on RPC calls when provided (#1389)
  docs: update .all-contributorsrc [skip ci]
  docs: update README.md [skip ci]
  chore(deps): bump google.golang.org/protobuf in /_tools (#1401)
  chore(deps): bump google.golang.org/protobuf from 1.29.0 to 1.29.1 (#1400)
  fix: return better error messages for grpc-gateway errors (#1397)
  fix: import for cockroach db (#1399)
  chore(deps): bump golang.org/x/tools from 0.6.0 to 0.7.0 in /_tools (#1394)
  chore: update readme w better usecase verbiage (#1395)
  fix(sdk/go): documentation and example corrections
  chore(deps): bump google.golang.org/protobuf from 1.28.1 to 1.29.0 (#1393)
  chore(deps): bump google.golang.org/protobuf in /_tools (#1391)
  chore(sdk/go): fix README markdown style
  fix(sdk/go): drop support for single field message mangling
  chore(sdk/go): add README
  chore(gowork): go edit -fmt
  feat(sdk/go): add doc.go
  feat(sdk/go): add static client token provider
  refactor(sdk/go): move grpc transport into its own subpackage
  chore(proto): regenerate RPC using protoc-gen-go-grpc v1.3.0
  ...
markphelps added a commit that referenced this pull request Mar 15, 2023
* namespaces: (31 commits)
  Release/1.19 (#1403)
  feat(sdk/go): thread client token on RPC calls when provided (#1389)
  docs: update .all-contributorsrc [skip ci]
  docs: update README.md [skip ci]
  chore(deps): bump google.golang.org/protobuf in /_tools (#1401)
  chore(deps): bump google.golang.org/protobuf from 1.29.0 to 1.29.1 (#1400)
  fix: return better error messages for grpc-gateway errors (#1397)
  fix: import for cockroach db (#1399)
  chore(deps): bump golang.org/x/tools from 0.6.0 to 0.7.0 in /_tools (#1394)
  chore: update readme w better usecase verbiage (#1395)
  fix(sdk/go): documentation and example corrections
  chore(deps): bump google.golang.org/protobuf from 1.28.1 to 1.29.0 (#1393)
  chore(deps): bump google.golang.org/protobuf in /_tools (#1391)
  chore(sdk/go): fix README markdown style
  fix(sdk/go): drop support for single field message mangling
  chore(sdk/go): add README
  chore(gowork): go edit -fmt
  feat(sdk/go): add doc.go
  feat(sdk/go): add static client token provider
  refactor(sdk/go): move grpc transport into its own subpackage
  ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
automerge Used by Kodiak bot to automerge PRs dependencies Pull requests that update a dependency file go
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant