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

Bump the go-deps group with 20 updates #170

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 7, 2024

Bumps the go-deps group with 20 updates:

Package From To
github.com/bufbuild/protocompile 0.5.1 0.9.0
github.com/compose-spec/compose-go 1.17.0 1.20.2
github.com/docker/cli 24.0.5+incompatible 26.0.0+incompatible
github.com/docker/compose/v2 2.14.0 2.26.1
github.com/docker/docker 24.0.5+incompatible 26.0.0+incompatible
github.com/fsnotify/fsnotify 1.6.0 1.7.0
github.com/go-errors/errors 1.4.2 1.5.1
github.com/goccy/go-yaml 1.8.0 1.11.3
github.com/gookit/color 1.5.2 1.5.4
github.com/onsi/gomega 1.24.1 1.29.0
github.com/spf13/cobra 1.7.0 1.8.0
github.com/unrolled/render 0.0.0-20180914162206-b9786414de4d 1.6.1
github.com/vishvananda/netns 0.0.0-20211101163701-50045581ed74 0.0.4
go.fd.io/govpp 0.8.0 0.10.0
go.ligato.io/cn-infra/v2 2.5.0-alpha.0.20230824082901-356dce1f1754 2.5.0
go.ligato.io/vpp-agent/v3 3.5.0-alpha.0.20231009134600-723f8db0bf7a 3.5.0
golang.org/x/exp 0.0.0-20230713183714-613f0c0eb8a1 0.0.0-20240112132812-db7319d0e0e3
golang.org/x/sys 0.13.0 0.16.0
google.golang.org/grpc 1.56.2 1.59.0
google.golang.org/protobuf 1.30.0 1.33.0

Updates github.com/bufbuild/protocompile from 0.5.1 to 0.9.0

Release notes

Sourced from github.com/bufbuild/protocompile's releases.

v0.9.0

This release contains a minor change and one new exported function.

Improvements:

  • The experimental github.com/bufbuild/protocompile/parser/fastscan package has been updated so it's even faster: it can scan in roughly half the time using a fourth as much memory as the previous version.

Additions:

  • A new options.StripSourceRetentionOptionsFromFile helper function has been added, for use by tools that use the results of this compiler to do code generation. This function accepts a file descriptor and returns a modified version of it that has all options marked as "source" retention removed.

v0.8.0

This release primarily fixes bugs in the compiler that resulted in differences between the source files that protocompile would accept vs. the source files that the reference compiler, protoc, would accept. But one of these changes resulted in an unused AST node type. So this type has been removed from the exported API, which is why this v0.8.0 instead of v0.7.2.

Fixes:

  1. A protocompile.Compiler would previously accept some sources that would be rejected by protoc. In particular, protocompile allowed for explicitly-signed positive numeric literals -- with a leading plus (+) sign. But this is not allowed by the reference compiler, protoc, nor by implementations of the text format in myriad languages (which is also the format the compiler uses to parse custom option values that are message literals).
    • This change is not backwards compatible. The AST node type ast.PositiveUintLiteralNode has been removed. It was only used to support this invalid construct in the language. Code that refers to this node type (or its associated factory function and Visitor method) must be removed.
  2. A protocompile.Compiler would previously reject some sources that would protoc would accept. In particular, protocompile did not allow -nan as a default field value or custom option value and it also did not accept inf and alternate case spellings (such as upper- or mixed-case) of infinity and nan in message literals, which are all allowed by protoc.

v0.7.1

Fixes:

  1. If a protocompile.Compiler's Resolver returns a *descriptorpb.FileDescriptorProto (instead of source code or an already-built protoreflect.FileDescriptor), any already-interpreted options therein would be inadvertently cleared when the compiler reached the step of interpreting options for that file. This has been fixed: descriptor protos with options already interpreted will be left alone.

v0.7.0

This release contains some potentially breaking changes. Such changes were deemed acceptable since this module has not yet reached v1.0 and the impact on existing user code is likely to be very low.

Fixes:

  1. Previously, protocompile would allow the packed field option to be used on non-repeated fields are repeated fields that cannot be packed (like repeated string, bytes, and message fields). Such sources would be rejected by the reference compiler, protoc, and the resulting descriptors would be rejected by some Protobuf runtime libraries (including the one for Go). This has been fixed. So protocompile now also rejects such incorrect sources.
  2. A panic could occur in the parser with certain kinds of malformed input that contained syntactically incorrect message literals in option values. This has been fixed, and such sources now result in a syntax error value instead of a panic.

Changes:

  1. The ErrorWithPos interface has two new methods, Start() ast.SourcePos and End() ast.SourcePos. This change allows errors to indicate an entire region of code, not just a single position.
    • This is a breaking change. It is expected that this interface was only implemented internally. If there are implementations outside of this repo, fixing them can be as straight-forward as implementing the two new methods to return the same position as the existing GetPosition() method.
  2. The various helper functions for creating ErrorWithPos instances now accept an ast.SourceSpan instead of an ast.SourcePos. This includes reporter.Error and reporter.Errorf as well as the methods HandleErrorWithPos, HandleErrorf, HandleWarningWithPos, and HandleWarningf of reporter.Handler.
    • This is a breaking change. It is expected that these functions, despite being exported, were only used internally by the compiler implementation. If there are existing calls outside of this repo and a span (such as a ast.NodeInfo, ast.ItemInfo, or ast.Comment) is not readily available to them, they can use ast.NewSourceSpan to construct a span whose start and end are the same ast.SourcePos and pass that.

Additions:

  1. A new ast.SourceSpan interface type has been added that represents a span of code. There are also two factory functions for creating instances of ast.SourceSpan: ast.NewSourceSpan and ast.UnknownSpan. This interface is implemented by existing types ast.NodeInfo, ast.ItemInfo, ast.Comment, and reporter.ErrorWithPos.
  2. A new github.com/bufbuild/protocompile/parser/fastscan package has been added. While this entire repo is pre-v1.0, and therefore may be subject to incompatible changes (as evidenced by the backwards-incompatible change in this release), this new package is considered experimental. So the threshold for allowing an incompatible change to this package is even lower, and its API should be viewed as less stable.

v0.6.0

This release contains several breaking changes. Such changes were deemed acceptable since this module has not yet reached v1.0 and the impact on existing user code is likely to be very low.

Fixes:

  1. If a protocompile.Resolver returns search results that include descriptor protos, the compilation step that interprets options could inexplicably fail. This was because the logic was relying on an AST for some metadata about the option declarations in the source. This has been fixed: if a descriptor proto is provided that contains uninterpreted options, they can now be successfully interpreted.

... (truncated)

Commits
  • 8727154 Add function for stripping source retention options from a descriptor (#250)
  • f62a9f6 Speed up fastscan package (#249)
  • f4c4a6f Tolerate missing field tags (#246)
  • 31b173d Bump github.com/bufbuild/buf from 1.28.1 to 1.29.0 in /internal/tools (#241)
  • 22459ce Bump golang.org/x/sync from 0.5.0 to 0.6.0 in /internal/benchmarks (#240)
  • 9cd199b Bump Go version to 1.22 (#245)
  • cc74522 Create add-to-project workflow (#243)
  • 8fa8c48 Bump google.golang.org/protobuf from 1.31.1-0.20231027082548-f4a6c1f6e5c1 to ...
  • 5681c2b Bump actions/cache from 3 to 4 (#238)
  • 147620f Bump github.com/bufbuild/protocompile from 0.6.0 to 0.8.0 in /internal/benchm...
  • Additional commits viewable in compare view

Updates github.com/compose-spec/compose-go from 1.17.0 to 1.20.2

Release notes

Sourced from github.com/compose-spec/compose-go's releases.

v1.20.2

What's Changed

Full Changelog: compose-spec/compose-go@v1.20.1...v1.20.2

v1.20.1

What's Changed

New Contributors

Full Changelog: compose-spec/compose-go@v1.20.0...v1.20.1

v1.20.0

What's Changed

Full Changelog: compose-spec/compose-go@v1.19.0...v1.20.0

v1.19.0

What's Changed

New Contributors

Full Changelog: compose-spec/compose-go@v1.18.4...v1.19.0

v1.18.4

What's Changed

... (truncated)

Commits
  • e390b97 Add a network-scoped mac_address field
  • 6a91ca5 update compose-spec.json with path and action as required field for develop
  • 0f734f9 v1 branch
  • 0eea9f8 Merge pull request #487 from ndeloof/build-ulimits-v1
  • d91e0e9 add support for build.ulimits
  • 5c2ad73 Merge pull request #484 from ndeloof/inline_config_v1
  • accf4aa add support for inline config
  • 7ef3e28 Merge pull request #475 from ndeloof/decode_labels
  • 317b7c4 label can be set with empty value
  • 7bdb947 Merge pull request #474 from mieubrisse/patch-2
  • Additional commits viewable in compare view

Updates github.com/docker/cli from 24.0.5+incompatible to 26.0.0+incompatible

Commits
  • 2ae903e Merge pull request #4929 from dvdksn/privileged-flag
  • 5931a2f Merge pull request #4956 from vvoland/vendor-docker-26.0.0-dev
  • ed9dd75 Merge pull request #4949 from akerouanton/remove-short-cid-alias
  • 69575f6 vendor: github.com/docker/docker 8b79278316b5 (master)
  • fa84cfd Merge pull request #4950 from vvoland/vendor-docker-26.0.0-rc3-dev
  • b70a26d vendor: github.com/docker/docker 330d777c53fb (v26.0.0-rc3-dev)
  • 2356372 Merge pull request #4944 from thaJeztah/update_engine
  • ea3201c Merge pull request #4945 from thaJeztah/remove_gocompat
  • c050bf0 Merge pull request #4946 from thaJeztah/bump_gofumpt
  • 4eef4af Merge pull request #4893 from vvoland/deprecate-container
  • Additional commits viewable in compare view

Updates github.com/docker/compose/v2 from 2.14.0 to 2.26.1

Release notes

Sourced from github.com/docker/compose/v2's releases.

v2.26.1

🐛 Fixes

  • Include image pull failure reason in output (#11555)
  • Fix crash when running up with --no-build and --watch (#11664)
  • Fix crash when no TTY available and menu enabled (#11672)
  • Improve legibility of menu actions (#11671)

🔧 Internal

  • Bump opencontainers/image-spec to 1.1.0 (#11657)

Changelog

New Contributors

Full Changelog: docker/compose@v2.26.0...v2.26.1

v2.26.0

What's Changed

🐛 Fixes

✨ Improvements

🔧 Internal

New Contributors

Full Changelog: docker/compose@v2.25.0...v2.26.0

v2.25.0

What's Changed

🐛 Fixes

... (truncated)

Commits
  • ff20b64 Does not start keyboard manager if there is no tty
  • 339b331 Change menu information text to dim
  • 6fe69b2 Merge pull request #11664 from jhrotko/fix-no-build-watch
  • dd5614e Handle --no-build and --watch args
  • 4b7b6ad build(deps): bump github.com/opencontainers/image-spec
  • 466374b Unwrap error message.
  • 2e85b3c Include error message in pull warning/errors
  • 3371227 chore(desktop): revised feature detection for file shares
  • e9dc820 Add Navigation Menu to compose up
  • 3950460 Add support for volume Subpath option
  • Additional commits viewable in compare view

Updates github.com/docker/docker from 24.0.5+incompatible to 26.0.0+incompatible

Release notes

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

v26.0.0

26.0.0

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

Security

This release contains a security fix for [CVE-2024-29018], a potential data exfiltration from 'internal' networks via authoritative DNS servers.

New

  • Add Subpath field to the VolumeOptions making it possible to mount a subpath of a volume. moby/moby#45687
  • Add volume-subpath support to the mount flag (--mount type=volume,...,volume-subpath=<subpath>). docker/cli#4331
  • Accept = separators and [ipv6] in compose files for docker stack deploy. docker/cli#4860
  • rootless: Add support for enabling host loopback by setting the DOCKERD_ROOTLESS_ROOTLESSKIT_DISABLE_HOST_LOOPBACK environment variable to false (defaults to true). This lets containers connect to the host by using IP address 10.0.2.2. moby/moby#47352
  • containerd image store: docker image ls no longer creates duplicates entries for multi-platform images. moby/moby#45967
  • containerd image store: Send Prometheus metrics. moby/moby#47555

Bug fixes and enhancements

  • [CVE-2024-29018]: Do not forward requests to external DNS servers for a container that is only connected to an 'internal' network. Previously, requests were forwarded if the host's DNS server was running on a loopback address, like systemd's 127.0.0.53. moby/moby#47589
  • Ensure that a generated MAC address is not restored when a container is restarted, but a configured MAC address is preserved. moby/moby#47233

[!WARNING]

Containers created using Docker Engine 25.0.0 may have duplicate MAC addresses, they must be re-created. Containers created using version 25.0.0 or 25.0.1 with user-defined MAC addresses will get generated MAC addresses when they are started using 25.0.2. They must also be re-created.

  • Always attempt to enable IPv6 on a container's loopback interface, and only include IPv6 in /etc/hosts if successful. moby/moby#47062

[!NOTE]

By default, IPv6 will remain enabled on a container's loopback interface when the container is not connected to an IPv6-enabled network. For example, containers that are only connected to an IPv4-only network now have the ::1 address on their loopback interface.

To disable IPv6 in a container, use option --sysctl net.ipv6.conf.all.disable_ipv6=1 in the create or run command, or the equivalent sysctls option in the service configuration section of a Compose file.

If IPv6 is not available in a container because it has been explicitly disabled for the container, or the host's networking stack does not have IPv6 enabled (or for any other reason) the container's /etc/hosts file will not include IPv6 entries.

  • Fix ADD Dockerfile instruction failing with lsetxattr <file>: operation not supported when unpacking archive with xattrs onto a filesystem that doesn't support them. moby/moby#47175
  • Fix docker container start failing when used with --checkpoint. moby/moby#47456

... (truncated)

Commits
  • 8b79278 Merge pull request #47599 from neersighted/short_id_aliases_removal
  • 22726fb api: document changed behavior of the Aliases field in v1.45
  • 963e1f3 Merge pull request #47597 from vvoland/c8d-list-fix-shared-size
  • 3312b82 c8d/list: Add a test case for images sharing a top layer
  • ad8a5a5 c8d/list: Fix diffIDs being outputted instead of chainIDs
  • 0c2d83b c8d/list: Handle unpacked layers when calculating shared size
  • 330d777 Merge pull request #47591 from vvoland/api-1.45
  • 3d2a56e docs/api: add documentation for API v1.45
  • 4531a37 Merge pull request #47580 from vvoland/c8d-list-slow
  • 731a640 c8d/list: Generate image summary concurrently
  • Additional commits viewable in compare view

Updates github.com/fsnotify/fsnotify from 1.6.0 to 1.7.0

Release notes

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

v1.7.0

This version of fsnotify needs Go 1.17.

Additions

  • illumos: add FEN backend to support illumos and Solaris. (#371)

  • all: add NewBufferedWatcher() to use a buffered channel, which can be useful in cases where you can't control the kernel buffer and receive a large number of events in bursts. (#550, #572)

  • all: add AddWith(), which is identical to Add() but allows passing options. (#521)

  • windows: allow setting the ReadDirectoryChangesW() buffer size with fsnotify.WithBufferSize(); the default of 64K is the highest value that works on all platforms and is enough for most purposes, but in some cases a highest buffer is needed. (#521)

Changes and fixes

  • inotify: remove watcher if a watched path is renamed (#518)

    After a rename the reported name wasn't updated, or even an empty string. Inotify doesn't provide any good facilities to update it, so just remove the watcher. This is already how it worked on kqueue and FEN.

    On Windows this does work, and remains working.

  • windows: don't listen for file attribute changes (#520)

    File attribute changes are sent as FILE_ACTION_MODIFIED by the Windows API, with no way to see if they're a file write or attribute change, so would show up as a fsnotify.Write event. This is never useful, and could result in many spurious Write events.

  • windows: return ErrEventOverflow if the buffer is full (#525)

    Before it would merely return "short read", making it hard to detect this error.

  • kqueue: make sure events for all files are delivered properly when removing a watched directory (#526)

    Previously they would get sent with "" (empty string) or "." as the path name.

  • kqueue: don't emit spurious Create events for symbolic links (#524)

    The link would get resolved but kqueue would "forget" it already saw the link itself, resulting on a Create for every Write event for the directory.

  • all: return ErrClosed on Add() when the watcher is closed (#516)

  • other: add Watcher.Errors and Watcher.Events to the no-op Watcher in backend_other.go, making it easier to use on unsupported platforms such as WASM, AIX, etc. (#528)

  • other: use the backend_other.go no-op if the appengine build tag is set; Google AppEngine forbids usage of the unsafe package so the inotify backend won't compile there.

#371: fsnotify/fsnotify#371 #516: fsnotify/fsnotify#516 #518: fsnotify/fsnotify#518 #520: fsnotify/fsnotify#520 #521: fsnotify/fsnotify#521 #524: fsnotify/fsnotify#524 #525: fsnotify/fsnotify#525

... (truncated)

Changelog

Sourced from github.com/fsnotify/fsnotify's changelog.

1.7.0 - 2023-10-22

This version of fsnotify needs Go 1.17.

Additions

  • illumos: add FEN backend to support illumos and Solaris. (#371)

  • all: add NewBufferedWatcher() to use a buffered channel, which can be useful in cases where you can't control the kernel buffer and receive a large number of events in bursts. (#550, #572)

  • all: add AddWith(), which is identical to Add() but allows passing options. (#521)

  • windows: allow setting the ReadDirectoryChangesW() buffer size with fsnotify.WithBufferSize(); the default of 64K is the highest value that works on all platforms and is enough for most purposes, but in some cases a highest buffer is needed. (#521)

Changes and fixes

  • inotify: remove watcher if a watched path is renamed (#518)

    After a rename the reported name wasn't updated, or even an empty string. Inotify doesn't provide any good facilities to update it, so just remove the watcher. This is already how it worked on kqueue and FEN.

    On Windows this does work, and remains working.

  • windows: don't listen for file attribute changes (#520)

    File attribute changes are sent as FILE_ACTION_MODIFIED by the Windows API, with no way to see if they're a file write or attribute change, so would show up as a fsnotify.Write event. This is never useful, and could result in many spurious Write events.

  • windows: return ErrEventOverflow if the buffer is full (#525)

    Before it would merely return "short read", making it hard to detect this error.

  • kqueue: make sure events for all files are delivered properly when removing a watched directory (#526)

    Previously they would get sent with "" (empty string) or "." as the path name.

  • kqueue: don't emit spurious Create events for symbolic links (#524)

... (truncated)

Commits
  • cfc9c4f Few more tiny doc fixes >_<
  • c3fa8e6 Proof-read some docs and prepare 1.7.0 release
  • 5310461 Remove stray trailing space in doc comment
  • f01d91e Add NewBufferedWatcher() (#572)
  • e545940 Merge pull request #589 from fsnotify/win-rm
  • c86f21c Document and test removing watched directory on Windows
  • 68111f2 Merge pull request #588 from fsnotify/illumos
  • 0614185 Add back illumos
  • 2f2332a Idiomatic bitwise operations
  • 769aaa7 Tweak docs
  • Additional commits viewable in compare view

Updates github.com/go-errors/errors from 1.4.2 to 1.5.1

Commits

Updates github.com/goccy/go-yaml from 1.8.0 to 1.11.3

Release notes

Sourced from github.com/goccy/go-yaml's releases.

1.11.3

What's Changed

Full Changelog: goccy/go-yaml@v1.11.2...v1.11.3

1.11.2

What's Changed

New Contributors

Full Changelog: goccy/go-yaml@v1.11.1...v1.11.2

1.11.1

What's Changed

New Contributors

Full Changelog: goccy/go-yaml@v1.11.0...v1.11.1

1.11.0

What's Changed

Full Changelog: goccy/go-yaml@v1.10.1...v1.11.0

1.10.1

What's Changed

... (truncated)

Changelog

Sourced from github.com/goccy/go-yaml's changelog.

1.11.2 - 2023-09-15

Fix bugs

  • Fix quoted comments ( #370 )
  • Fix handle of space at start or last ( #376 )
  • Fix sequence with comment ( #390 )

1.11.1 - 2023-09-14

Fix bugs

  • Handle \r in a double-quoted string the same as \n ( #372 )
  • Replace loop with n.Values = append(n.Values, target.Values...) ( #380 )
  • Skip encoding an inline field if it is null ( #386 )
  • Fix comment parsing with null value ( #388 )

1.11.0 - 2023-04-03

Features

  • Supports dynamically switch encode and decode processing for a given type

1.10.1 - 2023-03-28

Features

  • Quote YAML 1.1 bools at encoding time for compatibility with other legacy parsers
  • Add support of 32-bit architecture

Fix bugs

  • Don't trim all space characters in block style sequence
  • Support strings starting with @

1.10.0 - 2023-03-01

Fix bugs

Reversible conversion of comments was not working in various cases, which has been corrected. Breaking Change exists in the comment map interface. However, if you are dealing with CommentMap directly, there is no problem.

1.9.8 - 2022-12-19

Fix feature

  • Append new line at the end of file ( #329 )

Fix bugs

... (truncated)

Commits

Updates github.com/gookit/color from 1.5.2 to 1.5.4

Release notes

Sourced from github.com/gookit/color's releases.

v1.5.4

Change Log

Fixed

Feature

Other

v1.5.3

Change Log

Feature

Other

Commits
  • 9027b9d ✨ feat: Color add new method: IsBg(), IsFg(), IsOption() for check c...
  • fe2b251 ✨ feat: RGBColor add new method: ToFg(), ToBg() for quick convert
  • 74bb513 🐛 fix: fix convert basic color to rgb color fail
  • 7da3fe3 build(deps): bump golang.org/x/sys from 0.9.0 to 0.10.0 (#64)
  • 0354c4a build(deps): bump github.com/stretchr/testify from 1.8.2 to 1.8.4 (#62)
  • dd23b12 build(deps): bump golang.org/x/sys from 0.8.0 to 0.9.0 (#63)
  • ...

    Description has been truncated

Bumps the go-deps group with 20 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/bufbuild/protocompile](https://github.com/bufbuild/protocompile) | `0.5.1` | `0.9.0` |
| [github.com/compose-spec/compose-go](https://github.com/compose-spec/compose-go) | `1.17.0` | `1.20.2` |
| [github.com/docker/cli](https://github.com/docker/cli) | `24.0.5+incompatible` | `26.0.0+incompatible` |
| [github.com/docker/compose/v2](https://github.com/docker/compose) | `2.14.0` | `2.26.1` |
| [github.com/docker/docker](https://github.com/docker/docker) | `24.0.5+incompatible` | `26.0.0+incompatible` |
| [github.com/fsnotify/fsnotify](https://github.com/fsnotify/fsnotify) | `1.6.0` | `1.7.0` |
| [github.com/go-errors/errors](https://github.com/go-errors/errors) | `1.4.2` | `1.5.1` |
| [github.com/goccy/go-yaml](https://github.com/goccy/go-yaml) | `1.8.0` | `1.11.3` |
| [github.com/gookit/color](https://github.com/gookit/color) | `1.5.2` | `1.5.4` |
| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.24.1` | `1.29.0` |
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.7.0` | `1.8.0` |
| [github.com/unrolled/render](https://github.com/unrolled/render) | `0.0.0-20180914162206-b9786414de4d` | `1.6.1` |
| [github.com/vishvananda/netns](https://github.com/vishvananda/netns) | `0.0.0-20211101163701-50045581ed74` | `0.0.4` |
| [go.fd.io/govpp](https://github.com/FDio/govpp) | `0.8.0` | `0.10.0` |
| [go.ligato.io/cn-infra/v2](https://github.com/ligato/cn-infra) | `2.5.0-alpha.0.20230824082901-356dce1f1754` | `2.5.0` |
| [go.ligato.io/vpp-agent/v3](https://github.com/ligato/vpp-agent) | `3.5.0-alpha.0.20231009134600-723f8db0bf7a` | `3.5.0` |
| [golang.org/x/exp](https://github.com/golang/exp) | `0.0.0-20230713183714-613f0c0eb8a1` | `0.0.0-20240112132812-db7319d0e0e3` |
| [golang.org/x/sys](https://github.com/golang/sys) | `0.13.0` | `0.16.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.56.2` | `1.59.0` |
| google.golang.org/protobuf | `1.30.0` | `1.33.0` |


Updates `github.com/bufbuild/protocompile` from 0.5.1 to 0.9.0
- [Release notes](https://github.com/bufbuild/protocompile/releases)
- [Commits](bufbuild/protocompile@v0.5.1...v0.9.0)

Updates `github.com/compose-spec/compose-go` from 1.17.0 to 1.20.2
- [Release notes](https://github.com/compose-spec/compose-go/releases)
- [Commits](compose-spec/compose-go@v1.17.0...v1.20.2)

Updates `github.com/docker/cli` from 24.0.5+incompatible to 26.0.0+incompatible
- [Commits](docker/cli@v24.0.5...v26.0.0)

Updates `github.com/docker/compose/v2` from 2.14.0 to 2.26.1
- [Release notes](https://github.com/docker/compose/releases)
- [Commits](docker/compose@v2.14.0...v2.26.1)

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

Updates `github.com/fsnotify/fsnotify` from 1.6.0 to 1.7.0
- [Release notes](https://github.com/fsnotify/fsnotify/releases)
- [Changelog](https://github.com/fsnotify/fsnotify/blob/main/CHANGELOG.md)
- [Commits](fsnotify/fsnotify@v1.6.0...v1.7.0)

Updates `github.com/go-errors/errors` from 1.4.2 to 1.5.1
- [Release notes](https://github.com/go-errors/errors/releases)
- [Commits](go-errors/errors@v1.4.2...v1.5.1)

Updates `github.com/goccy/go-yaml` from 1.8.0 to 1.11.3
- [Release notes](https://github.com/goccy/go-yaml/releases)
- [Changelog](https://github.com/goccy/go-yaml/blob/master/CHANGELOG.md)
- [Commits](goccy/go-yaml@v1.8.0...v1.11.3)

Updates `github.com/gookit/color` from 1.5.2 to 1.5.4
- [Release notes](https://github.com/gookit/color/releases)
- [Commits](gookit/color@v1.5.2...v1.5.4)

Updates `github.com/onsi/gomega` from 1.24.1 to 1.29.0
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.24.1...v1.29.0)

Updates `github.com/spf13/cobra` from 1.7.0 to 1.8.0
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.7.0...v1.8.0)

Updates `github.com/unrolled/render` from 0.0.0-20180914162206-b9786414de4d to 1.6.1
- [Release notes](https://github.com/unrolled/render/releases)
- [Commits](https://github.com/unrolled/render/commits/v1.6.1)

Updates `github.com/vishvananda/netns` from 0.0.0-20211101163701-50045581ed74 to 0.0.4
- [Release notes](https://github.com/vishvananda/netns/releases)
- [Commits](https://github.com/vishvananda/netns/commits/v0.0.4)

Updates `go.fd.io/govpp` from 0.8.0 to 0.10.0
- [Changelog](https://github.com/FDio/govpp/blob/master/CHANGELOG.md)
- [Commits](FDio/govpp@v0.8.0...v0.10.0)

Updates `go.ligato.io/cn-infra/v2` from 2.5.0-alpha.0.20230824082901-356dce1f1754 to 2.5.0
- [Release notes](https://github.com/ligato/cn-infra/releases)
- [Changelog](https://github.com/ligato/cn-infra/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ligato/cn-infra/commits/v2.5.0)

Updates `go.ligato.io/vpp-agent/v3` from 3.5.0-alpha.0.20231009134600-723f8db0bf7a to 3.5.0
- [Release notes](https://github.com/ligato/vpp-agent/releases)
- [Changelog](https://github.com/ligato/vpp-agent/blob/v3.5.0/CHANGELOG.md)
- [Commits](https://github.com/ligato/vpp-agent/commits/v3.5.0)

Updates `golang.org/x/exp` from 0.0.0-20230713183714-613f0c0eb8a1 to 0.0.0-20240112132812-db7319d0e0e3
- [Commits](https://github.com/golang/exp/commits)

Updates `golang.org/x/sys` from 0.13.0 to 0.16.0
- [Commits](golang/sys@v0.13.0...v0.16.0)

Updates `google.golang.org/grpc` from 1.56.2 to 1.59.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.56.2...v1.59.0)

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

---
updated-dependencies:
- dependency-name: github.com/bufbuild/protocompile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/compose-spec/compose-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/docker/cli
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: go-deps
- dependency-name: github.com/docker/compose/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/docker/docker
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: go-deps
- dependency-name: github.com/fsnotify/fsnotify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/go-errors/errors
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/goccy/go-yaml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/gookit/color
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: github.com/onsi/gomega
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/spf13/cobra
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/unrolled/render
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: go-deps
- dependency-name: github.com/vishvananda/netns
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: go.fd.io/govpp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: go.ligato.io/cn-infra/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: go.ligato.io/vpp-agent/v3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: golang.org/x/exp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: golang.org/x/sys
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: google.golang.org/protobuf
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Dependency updates label Apr 7, 2024
@dependabot dependabot bot requested a review from a team April 7, 2024 19:24
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 14, 2024

Superseded by #171.

@dependabot dependabot bot closed this Apr 14, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/main/go-deps-5af06ff59c branch April 14, 2024 19:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Dependency updates
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants