You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by "dependabot[bot] (via GitHub)" <gi...@apache.org> on 2023/05/09 07:01:40 UTC

[PR] build(deps): bump golang.org/x/tools from 0.8.0 to 0.9.0 in /plc4go (plc4x)

dependabot[bot] opened a new pull request, #935:
URL: https://github.com/apache/plc4x/pull/935

   Bumps [golang.org/x/tools](https://github.com/golang/tools) from 0.8.0 to 0.9.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/golang/tools/releases">golang.org/x/tools's releases</a>.</em></p>
   <blockquote>
   <h2>gopls@v0.9.0</h2>
   <p>This release contains significant performance improvements (especially in incremental processing after source changes), bug fixes, and support for the LSP “<a href="https://redirect.github.com/microsoft/language-server-protocol/issues/956">inlay hints</a>” feature, along with several other minor enhancements.</p>
   <h2>Performance improvements</h2>
   <p>Source edits cause gopls to invalidate and recompute information about the workspace, most of which has not changed. Previously, gopls would spend significant CPU copying data structures, sometimes more than 100ms per keystroke in a large workspace. This release includes many optimizations to avoid copying data needlessly, including a new <a href="https://cs.opensource.google/go/x/tools/+/gopls-release-branch.0.9:internal/persistent/map.go;l=26-37">map representation</a> to achieve copying in constant time. Special thanks to <a href="https://github.com/euroelessar"><code>@​euroelessar</code></a> for the design and implementation of this data structure.</p>
   <p>As a result of these improvements, gopls should be more responsive while typing in large codebases, though it will still use a lot of memory.</p>
   <p>Time to process a change notification in the Kubernetes repo:
   <img src="https://user-images.githubusercontent.com/57144380/176967584-a8040048-6357-40d5-9d80-c448281f6482.png" alt="image" /></p>
   <h2>New Features</h2>
   <h3>Inlay hints</h3>
   <p>Added support for displaying inlay hints of composite literal field names and types, constant values, function parameter names, function type params, and short variable declarations. You can try these out in the <a href="https://github.com/golang/vscode-go/blob/master/docs/nightly.md">vscode-go nightly</a> by <a href="https://github.com/golang/vscode-go/blob/master/docs/settings.md#goinlayhintsassignvariabletypes">enabling inlay hints settings</a>.</p>
   <p><img src="https://user-images.githubusercontent.com/57144380/176967591-a7b767b3-d447-4691-9486-10f957dc9a0f.gif" alt="image3" /></p>
   <h3>Package References</h3>
   <p>Find references on <code>package foo</code> now lists locations where the given package is imported.</p>
   <h3>Quick-fix to add field names to struct literals</h3>
   <p>A new quick fix adds field names to struct literals with unkeyed fields.</p>
   <p><img src="https://user-images.githubusercontent.com/57144380/176967261-6acbe0e7-7698-46ea-8deb-cbd913296034.gif" alt="image1" /></p>
   <h2>Bug fixes</h2>
   <p>This release includes the following notable bugfixes:</p>
   <ul>
   <li>Fixes for goimports performance and correctness when using a go.work file (<a href="https://go.dev/issue/52784">#52784</a>)</li>
   <li>Fix a crash during renaming in a package that uses generics (<a href="https://go.dev/issue/52940">#52940</a>)</li>
   <li>Fix gopls getting confused when moving a file from the <code>foo_test</code> package to <code>foo</code> package (<a href="https://redirect.github.com/golang/go/issues/45317">#45317</a>)</li>
   </ul>
   <p>A full list of all issues fixed can be found in the <a href="https://github.com/golang/go/milestone/260">gopls/v0.9.0 milestone</a>.
   To report a new problem, please file a new issue at <a href="https://go.dev/issues/new">https://go.dev/issues/new</a>.</p>
   <h2>Thank you to our contributors!</h2>
   <p>Thank you for your contribution, <a href="https://github.com/alandonovan"><code>@​alandonovan</code></a>, <a href="https://github.com/euroelessar"><code>@​euroelessar</code></a>, <a href="https://github.com/findleyr"><code>@​findleyr</code></a>, <a href="https://github.com/hyangah"><code>@​hyangah</code></a>, <a href="https://github.com/jamalc"><code>@​jamalc</code></a>, <a href="https://github.com/jba"><code>@​jba</code></a>, <a href="https://github.com/marwan-at-work"><code>@​marwan-at-work</code></a>, <a href="https://github.com/suzmue"><code>@​suzmue</code></a>, and <a href="https://github.com/dle8"><code>@​dle8</code></a>!</p>
   <h2>What’s Next?</h2>
   <p>The next planned gopls release is <a href="https://github.com/golang/go/milestone/271">v0.9.1</a>. We’re excited about features and improvements on the horizon, for example:</p>
   <ul>
   <li>Improved startup performance</li>
   <li>More accurate static analysis from fully analyzing packages outside of the workspace</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/golang/tools/commit/0809ec2e45f644b158912c8a2a5947fd3ec38373"><code>0809ec2</code></a> gopls/internal/lsp/source: document {All,Workspace}Metadata</li>
   <li><a href="https://github.com/golang/tools/commit/8f7fb01dd42992a819cb33b7532bf3d9b1a109be"><code>8f7fb01</code></a> go/analysis/unitchecker: add test of go vet on std</li>
   <li><a href="https://github.com/golang/tools/commit/23e52a3e12e9073cdc59ae714289d11dd3b9fb1c"><code>23e52a3</code></a> bisect: diagnose bad targets better</li>
   <li><a href="https://github.com/golang/tools/commit/d5af8894fe9036e6e97095f53ab3b213ff4d7935"><code>d5af889</code></a> gopls: set GOWORK=off for loads from debug and safetoken tests</li>
   <li><a href="https://github.com/golang/tools/commit/c93329a94714470b8e9b0a2ce2fc2ed526ec3d3d"><code>c93329a</code></a> go/analysis/passes/printf: reshorten diagnostic about %s in Println call</li>
   <li><a href="https://github.com/golang/tools/commit/62197261cfa31386d0264edd27256e59c8a998cf"><code>6219726</code></a> go.mod: update golang.org/x dependencies</li>
   <li><a href="https://github.com/golang/tools/commit/f4d143ebcdfc1b05588abf1b220f2b1773097d46"><code>f4d143e</code></a> go/ssa: cleanup TestGenericBodies to pickup package name</li>
   <li><a href="https://github.com/golang/tools/commit/3d99ebe9f399475f647e4d1394a6d5a771c180d5"><code>3d99ebe</code></a> gopls/diff/unified: remove redundant information</li>
   <li><a href="https://github.com/golang/tools/commit/479f5c690dbddecd7cf0b961fb0f2eb035b499b4"><code>479f5c6</code></a> go/ssa: Origin is only available after building</li>
   <li><a href="https://github.com/golang/tools/commit/6d1dd1267464d856833cf617ac1a78df3ef48c22"><code>6d1dd12</code></a> go/analysis: simplify unusedresult</li>
   <li>Additional commits viewable in <a href="https://github.com/golang/tools/compare/v0.8.0...v0.9.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.8.0&new-version=0.9.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 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>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@plc4x.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] build(deps): bump golang.org/x/tools from 0.8.0 to 0.9.0 in /plc4go (plc4x)

Posted by "sruehl (via GitHub)" <gi...@apache.org>.
sruehl merged PR #935:
URL: https://github.com/apache/plc4x/pull/935


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@plc4x.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org