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 across 1 directory with 9 updates #264

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 1, 2024

Bumps the dependencies group with 6 updates in the / directory:

Package From To
github.com/gofrs/uuid/v5 5.0.0 5.1.0
github.com/moby/moby 26.0.0+incompatible 26.1.1+incompatible
github.com/urfave/cli 1.22.14 1.22.15
google.golang.org/grpc 1.62.1 1.63.2
github.com/Microsoft/go-winio 0.6.1 0.6.2
google.golang.org/protobuf 1.33.0 1.34.0

Updates github.com/gofrs/uuid/v5 from 5.0.0 to 5.1.0

Release notes

Sourced from github.com/gofrs/uuid/v5's releases.

v5.1.0

This release adds a new constant for the Max UUID. Max UUID defined in draft-ietf-uuidrev-rfc4122bis-14 as having maximum values for all bits.

NOTE: Because this feature is part of a draft, it is subject to removal on a minor version of this package if it is removed from a later revision of the RFC.

Full Changelog: v5.1.0...v5.0.1

v5.0.1

  • Fixed an issue with TimestampFromV7 reporting the wrong UUID version in the error message, contributed by @​jaredLunde and @​PatrLind

Full Changelog: v5.0.1...v5.0.0

Commits

Updates github.com/moby/moby from 26.0.0+incompatible to 26.1.1+incompatible

Release notes

Sourced from github.com/moby/moby's releases.

v26.1.1

26.1.1

For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:

Bug fixes and enhancements

  • Fix docker run -d printing an context canceled spurious error when OTEL is configured. docker/cli#5044
  • Experimental environment variable DOCKER_BRIDGE_PRESERVE_KERNEL_LL=1 will prevent the daemon from removing the kernel-assigned link local address on a Linux bridge. moby/moby#47775
  • Resolve an issue preventing container creation on hosts with a read-only /proc/sys/net filesystem. If IPv6 cannot be disabled on an interface due to this, either disable IPv6 by default on the host or ensure /proc/sys/net is read-write. Otherwise, start dockerd with DOCKER_ALLOW_IPV6_ON_IPV4_INTERFACE=1 to bypass the error. moby/moby#47769

[!NOTE] The DOCKER_ALLOW_IPV6_ON_IPV4_INTERFACE is added as a temporary fix and will be phased out in a future major release after simplifying the IPv6 enablement process.

Packaging updates

v26.1.0

26.1.0

For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:

New

Bug fixes and enhancements

  • Native Windows containers are configured with an internal DNS server for container name resolution, and external DNS servers for other lookups. Not all resolvers, including nslookup, fall back to the external resolvers when they get a SERVFAIL answer from the internal server. So, the internal DNS server can now be configured to forward requests to the external resolvers, by setting "features": {"windows-dns-proxy": true } in the daemon.json file. moby/moby#47584

[!NOTE] This will be the new default behavior in Docker Engine 27.0.

[!WARNING] The windows-dns-proxy feature flag will be removed in a future release.

  • Swarm: Fix Subpath not being passed to the container config. moby/moby#47711
  • Classic builder: Fix cache miss on WORKDIR <directory>/ build step (directory with a trailing slash). moby/moby#47723
  • containerd image store: Fix docker images failing when any image in the store has unexpected target. moby/moby#47738

... (truncated)

Commits
  • ac2de55 Merge pull request #47775 from vvoland/v26.1-47771
  • 9a2b531 Merge pull request #47774 from vvoland/v26.1-47769
  • 2f5bbbe Option to avoid deleting the kernel_ll address from bridges.
  • 4061808 Allow for a read-only "/proc/sys/net".
  • 21da192 Merge pull request #47767 from austinvazquez/cherry-pick-eeec716e332e5c058dfe...
  • 2c91196 Update containerd to v1.7.16
  • a9a8787 Merge pull request #47762 from tonistiigi/26.1-update-buildkit-v0.13.2
  • c9689ec vendor: update buildkit to v0.13.2
  • c8af8eb Merge pull request #47738 from vvoland/c8d-walk-image-badimagetarget
  • 7d95fe8 c8d/list: Ignore unexpected image target
  • Additional commits viewable in compare view

Updates github.com/urfave/cli from 1.22.14 to 1.22.15

Release notes

Sourced from github.com/urfave/cli's releases.

v1.22.15

What's Changed

Full Changelog: urfave/cli@v1.22.14...v1.22.15

Commits
  • 2421d23 Merge pull request #1886 from urfave/v1-upgrades
  • 4df8f14 Update to current md2man format
  • dd16550 Bump dependencies, tested go versions, and actions steps for v1
  • See full diff in compare view

Updates google.golang.org/grpc from 1.62.1 to 1.63.2

Release notes

Sourced from google.golang.org/grpc's releases.

Release 1.63.2

Bugs

  • Fix the user agent string

Release 1.63.1

Bugs

  • grpc: fixed subchannel log messages to properly reference the parent channel (#7101)

API Changes

  • grpc: remove Deprecated tag from Dial and DialContext; these will be deprecated in v1.64 instead (#7103)

Release 1.63.0

Behavior Changes

  • grpc: Return canonical target string from resolver.Address.String() (experimental) (#6923)
  • client & server: when using write buffer pooling, use input value for buffer size instead of size*2 (#6983)

New Features

  • grpc: add ClientConn.CanonicalTarget() to return the canonical target string. (#7006)
  • xds: implement LRS named metrics support (gRFC A64) (#7027)
  • grpc: introduce grpc.NewClient to allow users to create new clients in idle mode and with "dns" as the default resolver (#7010)

API Changes

  • grpc: stabilize experimental method ClientConn.Target() (#7006)

Bug Fixes

  • xds: fix an issue that would cause the client to send an empty list of resources for LDS/CDS upon reconnecting with the management server (#7026)
  • server: Fix some errors returned by a server when using a grpc.Server as an http.Handler with the Go stdlib HTTP server (#6989)
  • resolver/dns: add SetResolvingTimeout to allow configuring the DNS resolver's global timeout (#6917)
  • Set the security level of Windows named pipes to NoSecurity (#6956)

Release 1.62.2

Dependencies

Commits
  • d32e66c Change version to 1.63.2 (#7104)
  • 92f6dd0 channelz: pass parent pointer instead of parent ID to RegisterSubChannel (#7101)
  • 0f6ef0f grpc: un-deprecate Dial and DialContext
  • 58dc749 Change version to 1.63.1-dev (#7051)
  • c68f456 Change version to 1.63.0 (#7050)
  • 6369167 *: update http2 dependency (#7082)
  • 8854761 cherry-pick: channelz: fix race accessing channelMap without lock (#7079) (#7...
  • e62770d channelz: add LocalAddr to listen sockets and test (#7062) (#7063)
  • 4ffccf1 googlec2p: use xdstp style template for client LDS resource name (#7048)
  • faf9964 gracefulswitch: add ParseConfig and make UpdateClientConnState call SwitchTo ...
  • Additional commits viewable in compare view

Updates github.com/Microsoft/go-winio from 0.6.1 to 0.6.2

Release notes

Sourced from github.com/Microsoft/go-winio's releases.

v0.6.2

What's Changed

New Contributors

Full Changelog: microsoft/go-winio@v0.6.1...v0.6.2

Commits

Updates google.golang.org/genproto from 0.0.0-20240123012728-ef4313101c80 to 0.0.0-20240227224415-6ceb2ff114de

Commits

Updates google.golang.org/genproto/googleapis/api from 0.0.0-20240123012728-ef4313101c80 to 0.0.0-20240227224415-6ceb2ff114de

Commits

Updates google.golang.org/genproto/googleapis/rpc from 0.0.0-20240123012728-ef4313101c80 to 0.0.0-20240227224415-6ceb2ff114de

Commits

Updates google.golang.org/protobuf from 1.33.0 to 1.34.0

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
google.golang.org/grpc [>= 1.35.a, < 1.36]
google.golang.org/grpc [>= 1.36.a, < 1.37]
google.golang.org/grpc [>= 1.37.a, < 1.38]

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

…dates

Bumps the dependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/gofrs/uuid/v5](https://github.com/gofrs/uuid) | `5.0.0` | `5.1.0` |
| [github.com/moby/moby](https://github.com/moby/moby) | `26.0.0+incompatible` | `26.1.1+incompatible` |
| [github.com/urfave/cli](https://github.com/urfave/cli) | `1.22.14` | `1.22.15` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.62.1` | `1.63.2` |
| [github.com/Microsoft/go-winio](https://github.com/Microsoft/go-winio) | `0.6.1` | `0.6.2` |
| google.golang.org/protobuf | `1.33.0` | `1.34.0` |



Updates `github.com/gofrs/uuid/v5` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/gofrs/uuid/releases)
- [Commits](gofrs/uuid@v5.0.0...v5.1.0)

Updates `github.com/moby/moby` from 26.0.0+incompatible to 26.1.1+incompatible
- [Release notes](https://github.com/moby/moby/releases)
- [Commits](moby/moby@v26.0.0...v26.1.1)

Updates `github.com/urfave/cli` from 1.22.14 to 1.22.15
- [Release notes](https://github.com/urfave/cli/releases)
- [Changelog](https://github.com/urfave/cli/blob/main/docs/CHANGELOG.md)
- [Commits](urfave/cli@v1.22.14...v1.22.15)

Updates `google.golang.org/grpc` from 1.62.1 to 1.63.2
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.62.1...v1.63.2)

Updates `github.com/Microsoft/go-winio` from 0.6.1 to 0.6.2
- [Release notes](https://github.com/Microsoft/go-winio/releases)
- [Commits](microsoft/go-winio@v0.6.1...v0.6.2)

Updates `google.golang.org/genproto` from 0.0.0-20240123012728-ef4313101c80 to 0.0.0-20240227224415-6ceb2ff114de
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/genproto/googleapis/api` from 0.0.0-20240123012728-ef4313101c80 to 0.0.0-20240227224415-6ceb2ff114de
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/genproto/googleapis/rpc` from 0.0.0-20240123012728-ef4313101c80 to 0.0.0-20240227224415-6ceb2ff114de
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/protobuf` from 1.33.0 to 1.34.0

---
updated-dependencies:
- dependency-name: github.com/gofrs/uuid/v5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/moby/moby
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/urfave/cli
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/Microsoft/go-winio
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: google.golang.org/genproto
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: google.golang.org/genproto/googleapis/api
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: google.golang.org/genproto/googleapis/rpc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: google.golang.org/protobuf
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels May 1, 2024
@dependabot dependabot bot requested a review from leo-scalingo May 1, 2024 11:49
@github-actions github-actions bot enabled auto-merge May 1, 2024 11:49
@github-actions github-actions bot merged commit def45b1 into master May 1, 2024
2 checks passed
@github-actions github-actions bot deleted the dependabot/go_modules/dependencies-9c118a55af branch May 1, 2024 11:50
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