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 #160

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/fsouza/go-dockerclient 1.9.8 1.10.0
github.com/redis/go-redis/v9 9.2.1 9.3.0
go.etcd.io/etcd/client/v2 2.305.9 2.305.10
github.com/klauspost/compress 1.17.0 1.17.2
golang.org/x/mod 0.12.0 0.13.0
golang.org/x/tools 0.13.0 0.14.0

Updates github.com/fsouza/go-dockerclient from 1.9.8 to 1.10.0

Release notes

Sourced from github.com/fsouza/go-dockerclient's releases.

Version compatible with Docker 1.9 and Go 1.4

This has a special tag name to make it clear that it was the latest version compatible with Docker 1.9 and Go 1.4.

Commits
  • 928b5d0 feat: add platform parameter to container create (#1017)
  • de9a655 build(deps): bump golang.org/x/term from 0.12.0 to 0.13.0 (#1016)
  • 92ea21d build(deps): bump actions/checkout from 4.0.0 to 4.1.0 (#1013)
  • 2fd82ff build(deps): bump github.com/docker/docker (#1012)
  • 96ef034 build(deps): bump actions/checkout from 3.6.0 to 4.0.0 (#1011)
  • 912ca4e build(deps): bump golang.org/x/term from 0.11.0 to 0.12.0 (#1010)
  • 50bee9e build(deps): bump actions/checkout from 3.5.3 to 3.6.0 (#1008)
  • 5309a09 build(deps): bump github.com/moby/patternmatcher from 0.5.0 to 0.6.0 (#1007)
  • 1f26ca9 build(deps): bump golangci/golangci-lint-action from 3.6.0 to 3.7.0 (#1006)
  • 118acac build(deps): bump actions/setup-go from 4.0.1 to 4.1.0 (#1005)
  • See full diff in compare view

Updates github.com/redis/go-redis/v9 from 9.2.1 to 9.3.0

Release notes

Sourced from github.com/redis/go-redis/v9's releases.

9.3.0

What's new?

JSON support

We are continuing to add support for more Redis data types in Go-Redis. Today, we are happy to announce support for JSON. JSON is a Redis data structure for storing, querying, and manipulating a single JSON document.

With a JSON key in Redis, you can:

  • Use it as a versatile hierarchical data type
  • Opt for it as a sophisticated alternative to the traditional hash data structure
  • Treat it as a singular document in a document-based database

The following example demonstrate how to get started with JSON in Go-Redis:

var ctx = context.Background()
client := redis.NewClient(&redis.Options{
	Addr: "localhost:6379",
})
type Bicycle struct {
Brand       string
Model       string
Price       int
}
bicycle := Bicycle{
Brand: "Velorim",
Model: "Jigger",
Price: 270,
}
_, err := client.JSONSet(ctx, "bicycle:1", "$", bicycle).Result()
if err != nil {
panic(err)
}
res, err := client.JSONGet(ctx, "bicycle:1", ".Model").Result()
if err != nil {
panic(err)
}
fmt.Println("bicycle:1 model is", res)

Learn more about JSON support in Redis

Other notable improvements

  • Allow using pointers of simple data types as command values (#2745) (#2753)
  • Add InfoMap command (#2665)

🐛 Bug Fixes

... (truncated)

Commits

Updates go.etcd.io/etcd/client/v2 from 2.305.9 to 2.305.10

Commits
  • 0223ca5 version: bump up to 3.5.10
  • aa04f5d Merge pull request #16833 from ahrtr/bump_bbolt_1.3.8_20231026
  • 88beb6c bump bbolt to 1.3.8 for etcd 3.5
  • 3521aaa Merge pull request #16790 from chaochn47/3.5-grpc-update
  • 31b7c58 Merge pull request #16637 from serathius/check-cluster-id-release-3.5
  • 1aa4aa8 3.5: upgrade gRPC-go to 1.58.3
  • 5b8150a Backport corrupt check test fix "etcd server shouldn't wait for the ready not...
  • 4cf9ef8 Merge pull request #16070 from kkkkun/rm-stack-log
  • 04cfb4c etcdserver: add cluster id check for hashKVHandler
  • 976378c Merge pull request #16781 from chaochn47/release-3.5-backport-gRPC-update
  • Additional commits viewable in compare view

Updates github.com/klauspost/compress from 1.17.0 to 1.17.2

Release notes

Sourced from github.com/klauspost/compress's releases.

v1.17.2

What's Changed

Full Changelog: klauspost/compress@v1.17.1...v1.17.2

v1.17.1

What's Changed

New Contributors

Full Changelog: klauspost/compress@v1.17.0...v1.17.1

Commits

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/fsouza/go-dockerclient](https://github.com/fsouza/go-dockerclient) | `1.9.8` | `1.10.0` |
| [github.com/redis/go-redis/v9](https://github.com/redis/go-redis) | `9.2.1` | `9.3.0` |
| [go.etcd.io/etcd/client/v2](https://github.com/etcd-io/etcd) | `2.305.9` | `2.305.10` |
| [github.com/klauspost/compress](https://github.com/klauspost/compress) | `1.17.0` | `1.17.2` |
| [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/fsouza/go-dockerclient` from 1.9.8 to 1.10.0
- [Release notes](https://github.com/fsouza/go-dockerclient/releases)
- [Changelog](https://github.com/fsouza/go-dockerclient/blob/main/container_changes_test.go)
- [Commits](fsouza/go-dockerclient@v1.9.8...v1.10.0)

Updates `github.com/redis/go-redis/v9` from 9.2.1 to 9.3.0
- [Release notes](https://github.com/redis/go-redis/releases)
- [Changelog](https://github.com/redis/go-redis/blob/master/CHANGELOG.md)
- [Commits](redis/go-redis@v9.2.1...v9.3.0)

Updates `go.etcd.io/etcd/client/v2` from 2.305.9 to 2.305.10
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@client/v2.305.9...client/v2.305.10)

Updates `github.com/klauspost/compress` from 1.17.0 to 1.17.2
- [Release notes](https://github.com/klauspost/compress/releases)
- [Changelog](https://github.com/klauspost/compress/blob/master/.goreleaser.yml)
- [Commits](klauspost/compress@v1.17.0...v1.17.2)

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/fsouza/go-dockerclient
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/redis/go-redis/v9
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: go.etcd.io/etcd/client/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: github.com/klauspost/compress
  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 johnsudaar November 1, 2023 04:26
@github-actions github-actions bot merged commit cf18f29 into master Nov 1, 2023
2 checks passed
@github-actions github-actions bot deleted the dependabot/go_modules/dependencies-795b981ca1 branch November 1, 2023 04:27
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