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 the dependencies group with 6 updates #1017

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 1, 2023

Bumps the dependencies group with 6 updates:

Package From To
github.com/go-git/go-git/v5 5.9.0 5.10.0
github.com/cloudflare/circl 1.3.3 1.3.6
github.com/cpuguy83/go-md2man/v2 2.0.2 2.0.3
github.com/mattn/go-isatty 0.0.19 0.0.20
golang.org/x/mod 0.12.0 0.13.0
golang.org/x/tools 0.13.0 0.14.0

Updates github.com/go-git/go-git/v5 from 5.9.0 to 5.10.0

Release notes

Sourced from github.com/go-git/go-git/v5's releases.

v5.10.0

What's Changed

New Contributors

Full Changelog: go-git/go-git@v5.9.0...v5.10.0

Commits
  • 72ce996 Merge pull request #869 from zeripath/graph-generation-2
  • 24261e8 Merge pull request #873 from go-git/dependabot/go_modules/golang.org/x/net-0....
  • 3ee0288 build: bump golang.org/x/net from 0.15.0 to 0.17.0
  • 69b88d9 plumbing: commitgraph, Add generation v2 support
  • 623c6df Merge pull request #866 from makkes/better-error-handling
  • 129b709 plumbing: transport/common, Improve handling of remote errors
  • e61537e Merge pull request #867 from pjbgf/commit-checker
  • 1a73661 build: Add github workflow to check commit message format
  • 771a3eb Merge pull request #868 from pjbgf/fix-fuzz
  • 7ef7dc7 Merge pull request #860 from enverbisevac/master
  • Additional commits viewable in compare view

Updates github.com/cloudflare/circl from 1.3.3 to 1.3.6

Release notes

Sourced from github.com/cloudflare/circl's releases.

CIRCL v1.3.6

What's Changed

New Contributors

Full Changelog: cloudflare/circl@v1.3.3...v1.3.6

Commits

Updates github.com/cpuguy83/go-md2man/v2 from 2.0.2 to 2.0.3

Release notes

Sourced from github.com/cpuguy83/go-md2man/v2's releases.

v2.0.3

Rendering bug fixes:

  • e5bd7279ca22057177f0e33f939bb6cf26e0ffc0 - Escape hyphens in links to avoid word wrap (@​r10r)
  • 66e0792f4bf72fede875e62279870032025ba094 - Do not render links twice (@​r10r)
  • 65a740a5b8948d921db6223577afbe055e892113 - Do not typeset table headings in monospaced font (@​kolyshkin)
  • 43fb74760164368fd0c74c84e4f55ec3ab5d752e - Use .EX/.EE for code examples (@​kolyshkin)
  • d85280db9b54b5747fe8cf9380a9f278e1a352d3 - Silence warnings caused by \fC which is non-portable. (@​debarshiray)

CLI improvements:

  • e2293e7f480f1ba0e6632cbd4a307d32ff3007bd - Don't warn on top-level comments (@​mtrmac)

Other changes include code formatting and doc imporvements.

Thanks to all who helped make this release happen.

Commits
  • f67b5f6 Merge pull request #105 from debarshiray/wip/rishi/issues-99
  • d85280d Silence "warning: cannot select font 'C'" with GNU roff 1.23
  • e8098c3 Merge pull request #104 from mtrmac/comments
  • e2293e7 Don't warn on top-level comments
  • 8363f7d Merge pull request #103 from cpuguy83/dependabot/github_actions/actions/check...
  • f921c23 Bump actions/checkout from 3 to 4
  • 253af81 Merge pull request #100 from cpuguy83/dependabot/github_actions/golangci/gola...
  • d36d769 Bump golangci/golangci-lint-action from 3.4.0 to 3.7.0
  • 7b5a1d0 Merge pull request #96 from kolyshkin/hack
  • aab1666 Merge pull request #95 from kolyshkin/example
  • Additional commits viewable in compare view

Updates github.com/mattn/go-isatty from 0.0.19 to 0.0.20

Commits
  • a7c0235 Merge pull request #74 from dkegel-fastly/dkegel-bug73-tinygo
  • 13f3590 Adjust build tags to allow building on tinygo; for #73.
  • See full diff in compare view

Updates golang.org/x/mod from 0.12.0 to 0.13.0

Commits
  • 5b69280 modfile: use new go version string format in error message
  • 273ef6c go.mod: update to go 1.18 and x/tools v0.13.0
  • See full diff in compare view

Updates golang.org/x/tools from 0.13.0 to 0.14.0

Release notes

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

gopls/v0.14.0

These are release notes are identical to the v0.14.0-pre.4 prerelease notes. Thanks to all who tested the prerelease!

go install golang.org/x/tools/[email protected]

This release includes initial support for the "inline call to function" refactoring, as well as a few other smaller features. It also includes several bug fixes, notably a fix for a performance regression in completion that may be significant in some environments.

The release also contains support for opt-in telemetry. If you want, you can enable the periodic uploading of telemetry data, including gopls stack traces and metrics, but never your source code, to telemetry.go.dev. See below for details.

New Features

Refactoring: inline call to function

This release includes a new code action to inline function calls:

inlinecall

While the outcome of this operation may be a simple replacement, there's a lot going on under the covers. For example, the new inliner checks whether changes to the order of argument evaluation could have unintended consequences. If so, it is careful to replicate the original behavior:

add preserves the order of effects ...but sub does not
inline_add inline_sub

The goal of the inliner is to rewrite your code idiomatically without introducing behavior changes. See the inlining documentation for more details.

When the call cannot be reduced to a simple expression, the inliner may fall back on an immediately invoked function literal (func() { statements }()) as this is often the only way to preserve the original behavior. As we continue to work on refactoring, we'll add additional rewriting strategies that avoid this fall-back in more cases.

Refactoring: removing unused parameters

The techniques described in the previous section serve as a foundation for other refactoring operations. As a proof of concept, this release also includes a code action to remove unused parameters. Since this operation uses inlining behind the scenes, it gets all of the related safety checks and rewriting strategies for free:

inline_unused

Improved support for go:embed directives

This release includes improved support for //go:embed directives, including hover and jump-to-definition. embed_def

New analyses

This release include three new static analyses, all of which are enabled by default.

"appends": reports calls to append that pass no values to be appended to the slice. image

"defers": checks for common mistakes in defer statements. image

... (truncated)

Commits
  • 3f4194e go.mod: update golang.org/x dependencies
  • 1e4ce7c internal/refactor/inline: yet more tweaks to everything test
  • ee20ddf internal/refactor/inline: permit return conversions in tailcall
  • db1d1e0 gopls/internal/lsp: go to definition from embed directive
  • 2be977e internal/refactor/inline: work around channel type misformatting
  • 0ba9c84 internal/fuzzy: several improvements for symbol matching
  • c2725ad gopls: update x/telemetry dependency
  • e8722c0 go/types/internal/play: show types.Selection information
  • a819c61 internal/refactor/inline: eliminate unnecessary binding decl
  • 102b64b internal/refactor/inline: tweak everything-test docs again
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dependencies group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.9.0` | `5.10.0` |
| [github.com/cloudflare/circl](https://github.com/cloudflare/circl) | `1.3.3` | `1.3.6` |
| [github.com/cpuguy83/go-md2man/v2](https://github.com/cpuguy83/go-md2man) | `2.0.2` | `2.0.3` |
| [github.com/mattn/go-isatty](https://github.com/mattn/go-isatty) | `0.0.19` | `0.0.20` |
| [golang.org/x/mod](https://github.com/golang/mod) | `0.12.0` | `0.13.0` |
| [golang.org/x/tools](https://github.com/golang/tools) | `0.13.0` | `0.14.0` |


Updates `github.com/go-git/go-git/v5` from 5.9.0 to 5.10.0
- [Release notes](https://github.com/go-git/go-git/releases)
- [Commits](go-git/go-git@v5.9.0...v5.10.0)

Updates `github.com/cloudflare/circl` from 1.3.3 to 1.3.6
- [Release notes](https://github.com/cloudflare/circl/releases)
- [Commits](cloudflare/circl@v1.3.3...v1.3.6)

Updates `github.com/cpuguy83/go-md2man/v2` from 2.0.2 to 2.0.3
- [Release notes](https://github.com/cpuguy83/go-md2man/releases)
- [Commits](cpuguy83/go-md2man@v2.0.2...v2.0.3)

Updates `github.com/mattn/go-isatty` from 0.0.19 to 0.0.20
- [Commits](mattn/go-isatty@v0.0.19...v0.0.20)

Updates `golang.org/x/mod` from 0.12.0 to 0.13.0
- [Commits](golang/mod@v0.12.0...v0.13.0)

Updates `golang.org/x/tools` from 0.13.0 to 0.14.0
- [Release notes](https://github.com/golang/tools/releases)
- [Commits](golang/tools@v0.13.0...v0.14.0)

---
updated-dependencies:
- dependency-name: github.com/go-git/go-git/v5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/cloudflare/circl
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: github.com/cpuguy83/go-md2man/v2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: github.com/mattn/go-isatty
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: golang.org/x/mod
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: golang.org/x/tools
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Nov 1, 2023
@dependabot dependabot bot requested a review from EtienneM November 1, 2023 00:23
@github-actions github-actions bot merged commit 10dd8ac into master Nov 1, 2023
5 checks passed
@github-actions github-actions bot deleted the dependabot/go_modules/dependencies-7aeb24b824 branch November 1, 2023 00:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants