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 14 updates #127

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 17, 2023

Bumps the go-deps group with 14 updates:

Package From To
github.com/bufbuild/protocompile 0.5.1 0.6.0
github.com/compose-spec/compose-go 1.17.0 1.18.4
github.com/docker/cli 24.0.5+incompatible 24.0.6+incompatible
github.com/docker/compose/v2 2.14.0 2.21.0
github.com/docker/docker 24.0.5+incompatible 24.0.6+incompatible
github.com/go-errors/errors 1.4.2 1.5.0
github.com/goccy/go-yaml 1.8.0 1.11.2
github.com/gookit/color 1.5.2 1.5.4
github.com/onsi/gomega 1.24.1 1.27.10
github.com/unrolled/render 0.0.0-20180914162206-b9786414de4d 1.6.0
github.com/vishvananda/netns 0.0.0-20211101163701-50045581ed74 0.0.4
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.20230824171626-fce1eee4ae59 3.5.0
google.golang.org/grpc 1.57.0 1.58.1

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

Release notes

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

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.

Changes:

  1. Numerous elements have been renamed so that references to "oneof" elements now use the spelling "Oneof" instead of "OneOf" (second "O" now lower-case). This is for consistency with how this is spelled in the core protobuf runtime, in the "google.golang.org/protobuf" module).
    • This is a breaking change. Fixes to user code that may have been broken by this change should be straight-forward and mechanical.
  2. The grammar used to generate the parser has been improved. In particular, all conflicts in the yacc configuration have been eliminated. This does not fix any known bug, but it does provide higher confidence that no latent bugs exist since the generated parser could previously have chosen the wrong action in the face of a conflict.
  3. The function sourceinfo.GenerateSourceInfo now accepts a sourceinfo.OptionIndex instead of an options.Index. It also now accepts variadic options. The function sourceinfo.GenerateSourceInfoWithExtraComments has been removed; its functionality can now be accomplished by passing an option to sourceinfo.GenerateSourceInfo.
    • This is a breaking change. It is expected that these functions, despite being exported, were only used internally by the compiler implementation.
  4. The type options.Index has been removed. Code should instead use the new sourceinfo.OptionIndex type.
    • This is a breaking change. It is expected that this type, despite being exported, was only used internally by the compiler implementation.

Additions:

  1. A new protocompile.SourceInfoMode value has been added: SourceInfoExtraOptionLocations. This can be combined with other values (via bitwise OR) to have the compiler include additional source code info for locations inside message literals in custom option values.
  2. A new sourceinfo.OptionIndex type has been added, along with related types in the same package: OptionSourceInfo, OptionChildrenSourceInfo, ArrayLiteralSourceInfo, and MessageLiteralSourceInfo. These provide a model of source info paths in the interior of an option declaration.
  3. A new sourceinfo.GenerateOption type has been added, allowing the behavior of sourceinfo.GenerateSourceInfo to be customized via variadic options. Options are available for retaining extra comments (sourceinfo.WithExtraComments) and for producing extra locations for option declarations with message literal values (sourceinfo.WithExtraOptionLocations).
Commits
  • 4b4eff5 Allow default json_name on extensions (#164)
  • 472c6fb Bump golang.org/x/tools from 0.10.0 to 0.11.0 in /internal/tools (#161)
  • 6a86e60 Bump google.golang.org/protobuf from 1.30.0 to 1.31.0 (#157)
  • 730f77b Bump github.com/golangci/golangci-lint from 1.52.2 to 1.53.3 in /internal/too...
  • af60335 Bump golang.org/x/sync from 0.2.0 to 0.3.0 (#156)
  • 3399017 Bump github.com/stretchr/testify from 1.8.3 to 1.8.4 in /internal/benchmarks ...
  • 04af82a Bump github.com/stretchr/testify from 1.8.3 to 1.8.4 (#148)
  • 4022811 Bump golang.org/x/tools from 0.9.1 to 0.10.0 in /internal/tools (#154)
  • 2b29724 Source code info locations inside message literals (#143)
  • c677062 Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /internal/benchmarks ...
  • Additional commits viewable in compare view

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

Release notes

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

v1.18.4

What's Changed

New Contributors

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

v1.18.3

🐛 Fixes

  • Fix for "no such service" errors when using include and profiles (#448)
  • Fix for .env overrides when using include (#449)

✨ Features

  • Support for multi-document YAML files (#451)

🔧 Internal

  • Do not read COMPOSE_PROFILES env var in load stage (#446)
    • NOTE: If you are using compose-go as a library, when loading a project, use WithDefaultProfiles to mimic default Compose behavior with a fallback to COMPOSE_PROFILES or WithProfiles if reading from the OS environment is not desirable

What's Changed

Full Changelog: compose-spec/compose-go@v1.18.2...v1.18.3

v1.18.2

What's Changed

Full Changelog: compose-spec/compose-go@v1.18.1...v1.18.2

v1.18.1

What's Changed

Full Changelog: compose-spec/compose-go@v1.18.0...v1.18.1

v1.18.0

What's Changed

... (truncated)

Commits
  • c8ee8d4 Merge pull request #454 from ndeloof/depends_on_filter
  • aa737c5 keep depends_on config for services explicitly selected
  • 9325945 Merge pull request #452 from thaJeztah/swap_reference
  • 0ab9e42 migrate to github.com/distribution/reference v0.5.0
  • c6eecc5 load: support for multi-document yaml (#451)
  • 8c4b79e load: move env var profile detection to option (#446)
  • 1be5aca Merge pull request #449 from ndeloof/env_override_include
  • 15210d9 local environment to override included .env
  • cda4df5 include: import disabled services for proper profile activation (#448)
  • ae43465 load: include details about included files on *Project (#444)
  • Additional commits viewable in compare view

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

Commits
  • ed223bc Merge pull request #4544 from thaJeztah/24.0_backport_fix_events_json_format
  • fab55e1 cli/command/system: fix "docker events" not supporting --format=json
  • 2fcff17 Merge pull request #4537 from thaJeztah/24.0_backort_docs_fixes
  • b74d8e1 Merge pull request #4538 from thaJeztah/24.0_backport_history_test
  • 3789f8a Merge pull request #4542 from thaJeztah/24.0_backport_manifest_deref
  • d3485b9 cli/registry: client.iterateEndpoints: remove check for APIVersion1
  • 6133802 cli/registry: fix client.pullManifestList not de-referencing manifest
  • b83959e force TestNewHistoryCommandSuccess to use UTC timezone
  • 28a08a2 un-skip history test and fix golden mismatches
  • 8e03939 update cli-docs-tool to v0.6.0
  • Additional commits viewable in compare view

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

Release notes

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

v2.21.0

💁🏻 Upgrade Notes

  • Format of docker compose ps and docker compose ps --format=json changed to better align with docker ps output (#10918)

✨ Features

  • compose-spec/compose-go#451
  • Experimental support for loading remote Compose files from Git repos with include (#10811)

🐛 Fixes

  • Fix for incorrect proxy variables during build (#10908)
  • Fix for truncated container logs (#10925)
  • Fix for "no such service" errors when using includecompose-spec/compose-go#448
  • Fix for .env overrides when using includecompose-spec/compose-go#449

🔧 Internal

What's Changed

New Contributors

Full Changelog: docker/compose@v2.20.3...v2.21.0

v2.20.3

What's Changed

Enhancements ✨

Fixes 🐛

... (truncated)

Commits
  • d6f842b test: e2e test reliability improvements (#10950)
  • 4fbbf20 build(deps): upgrade to compose-go v1.18.3 (#10947)
  • 935d72f added the dot at the end of the sentence
  • 41682ac add support for attributes exposed by docker ps
  • 1054792 align docker compose ps with docker CLI to support --format
  • 19f6691 watch: only allow a single instance per-project
  • 186744e ci: bump golangci-lint to v1.54.2
  • bc9d696 Merge pull request #10922 from thaJeztah/replace_dockerignore
  • 6204fb1 logs: fix for missing output on container exit (#10925)
  • 5d73201 replace dockerfile/dockerignore with patternmatcher/ignorefile
  • Additional commits viewable in compare view

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

Release notes

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

v24.0.6

24.0.6

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

Bug fixes and enhancements

  • containerd storage backend: Fix docker ps failing when a container image is no longer present in the content store. moby/moby#46095
  • containerd storage backend: Fix docker ps -s -a and docker container prune failing when a container image config is no longer present in the content store. moby/moby#46097
  • containerd storage backend: Fix docker inspect failing when a container image config is no longer (or was never) present in the content store. moby/moby#46244
  • containerd storage backend: Fix diff and export with the overlayfs snapshotter by using reference-counted rootfs mounts. moby/moby#46266
  • containerd storage backend: Fix a misleading error message when the image platforms available locally do not match the desired platform. moby/moby#46300
  • containerd storage backend: Fix the FROM scratch Dockerfile instruction with the classic builder. moby/moby#46302
  • containerd storage backend: Fix mismatched image rootfs and manifest layers errors with the classic builder. moby/moby#46310
  • Warn when pulling Docker Image Format v1, and Docker Image manifest version 2, schema 1 images from all registries. moby/moby#46290
  • Fix live-restore of volumes with custom volume options. moby/moby#46366
  • Fix incorrectly dropping capabilities bits when running a container as a non-root user (note: this change was already effectively present due to a regression). moby/moby#46221
  • Fix network isolation iptables rules preventing IPv6 Neighbor Solicitation packets from being exchanged between containers. moby/moby#46214
  • Fix dockerd.exe --register-service not working when the binary is in the current directory on Windows. moby/moby#46215
  • Add a hint suggesting the use of a PAT to docker login against Docker Hub. docker/cli#4500
  • Improve shell startup time for users of Bash completion for the CLI. docker/cli#4517
  • Improve the speed of some commands by skipping GET /_ping when possible. docker/cli#4508
  • Fix credential scopes when using a PAT to docker manifest inspect an image on Docker Hub. docker/cli#4512
  • Fix docker events not supporting --format=json. docker/cli#4544

Packaging updates

Commits
  • 1a79695 Merge pull request #46366 from thaJeztah/24.0_backport_volume-local-restore-m...
  • c35376c volume/local: Don't unmount, restore mounted status
  • 5d4cc0b integration/liveRestore: Check volume content
  • c78abd9 Merge pull request #46330 from thaJeztah/24.0_backport_api_docs_update_urls
  • 6282d95 Merge pull request #46331 from thaJeztah/24.0_backport_update_golangci_lint
  • 1d983e2 update golangci-lint to v1.54.2
  • d2e9a19 CONTRIBUTING.md: update links to golang docs and blog
  • 73f6053 api: swagger: update link to Go documentation
  • de13951 docs/api: update links to Go documentation
  • 7741a89 Merge pull request #46325 from thaJeztah/24.0_backport_hack_less_redirects
  • Additional commits viewable in compare view

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

Commits

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

Release notes

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

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

New Contributors

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

... (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)
  • 264b64f build(deps): bump golang.org/x/sys from 0.7.0 to 0.8.0 (#60)
  • 13c3e97 build(deps): bump golang.org/x/sys from 0.6.0 to 0.7.0 (#59)
  • a43d137 build(deps): bump github.com/stretchr/testify from 1.8.0 to 1.8.2 (#57)
  • c0a8b52 {type}:chore: replace all interface{} type to any
  • Additional commits viewable in compare view

Updates github.com/onsi/gomega from 1.24.1 to 1.27.10

Release notes

Sourced from github.com/onsi/gomega's releases.

v1.27.10

1.27.10

Fixes

  • fix: go 1.21 adding goroutine ID to creator+location (#685) [bdc7803]

v1.27.9

1.27.9

Fixes

  • Prevent nil-dereference in format.Object for boxed nil error (#681) [3b31fc3]

Maintenance

  • Bump golang.org/x/net from 0.11.0 to 0.12.0 (#679) [360849b]
  • chore: use String() instead of fmt.Sprintf (#678) [86f3659]
  • Bump golang.org/x/net from 0.10.0 to 0.11.0 (#674) [642ead0]
  • chore: unnecessary use of fmt.Sprintf (#677) [ceb9ca6]
  • Bump github.com/onsi/ginkgo/v2 from 2.10.0 to 2.11.0 (#675) [a2087d8]
  • docs: fix ContainSubstring references (#673) [fc9a89f]
  • Bump github.com/onsi/ginkgo/v2 from 2.9.7 to 2.10.0 (#671) [9076019]

v1.27.8

1.27.8

Fixes

  • HaveExactElement should not call FailureMessage if a submatcher returned an error [096f392]

Maintenance

  • Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669) [8884bee]

v1.27.7

1.27.7

Fixes

  • fix: gcustom.MakeMatcher accepts nil as actual value (#666) [57054d5]

Maintenance

  • update gitignore [05c1bc6]
  • Bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663) [7cadcf6]
  • Bump golang.org/x/net from 0.9.0 to 0.10.0 (#662) [b524839]
  • Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661) [5f44694]
  • Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#657) [05dc99a]
  • Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#658) [3a033d1]
  • Replace deprecated NewGomegaWithT with NewWithT (#659) [a19238f]
  • Bump golang.org/x/net from 0.8.0 to 0.9.0 (#656) [29ed041]
  • Bump actions/setup-go from 3 to 4 (#651) [11b2080]

v1.27.6

1.27.6

... (truncated)

Changelog

Sourced from github.com/onsi/gomega's changelog.

1.27.10

Fixes

  • fix: go 1.21 adding goroutine ID to creator+location (#685) [bdc7803]

1.27.9

Fixes

  • Prevent nil-dereference in format.Object for boxed nil error (#681) [3b31fc3]

Maintenance

  • Bump golang.org/x/net from 0.11.0 to 0.12.0 (#679) [360849b]
  • chore: use String() instead of fmt.Sprintf (#678) [86f3659]
  • Bump golang.org/x/net from 0.10.0 to 0.11.0 (#674) [642ead0]
  • chore: unnecessary use of fmt.Sprintf (#677) [ceb9ca6]
  • Bump github.com/onsi/ginkgo/v2 from 2.10.0 to 2.11.0 (#675) [a2087d8]
  • docs: fix ContainSubstring references (#673) [fc9a89f]
  • Bump github.com/onsi/ginkgo/v2 from 2.9.7 to 2.10.0 (#671) [9076019]

1.27.8

Fixes

  • HaveExactElement should not call FailureMessage if a submatcher returned an error [096f392]

Maintenance

  • Bump github.com/onsi/ginkgo/v2 from 2.9.5 to 2.9.7 (#669) [8884bee]

1.27.7

Fixes

  • fix: gcustom.MakeMatcher accepts nil as actual value (#666) [57054d5]

Maintenance

  • update gitignore [05c1bc6]
  • Bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (#663) [7cadcf6]
  • Bump golang.org/x/net from 0.9.0 to 0.10.0 (#662) [b524839]
  • Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (#661) [5f44694]
  • Bump commonmarker from 0.23.8 to 0.23.9 in /docs (#657) [05dc99a]
  • Bump nokogiri from 1.14.1 to 1.14.3 in /docs (#658) [3a033d1]
  • Replace deprecated NewGomegaWithT with NewWithT (#659) [a19238f]
  • Bump golang.org/x/net from 0.8.0 to 0.9.0 (#656) [29ed041]
  • Bump actions/setup-go from 3 to 4 (#651) [11b2080]

1.27.6

Fixes

  • Allow collections matchers to work correctly when expected has nil elements [60e7cf3]

Maintenance

  • updates MatchError godoc comment to also accept a Gomega matcher (#654) [67b869d]

... (truncated)

Commits
  • 9cbf7b0 v1.27.10
  • bdc7803 fix: go 1.21 adding goroutine ID to creator+location (#685)
  • 66bcd9d v1.27.9
  • 3b31fc3 Prevent nil-dereference in format.Object for boxed nil error (#681)
  • 360849b Bump golang.org/x/net from 0.11.0 to 0.12.0 (#679)
  • 86f3659 chore: use String() instead of fmt.Sprintf (#678)
  • 642ead0 Bump golang.org/x/net from 0.10.0 to 0.11.0 (#674)
  • ceb9ca6 chore: unnecessary use of fmt.Sprintf (#677)
  • a2087d8 Bump github.com/onsi/ginkgo/v2 from 2.10.0 to 2.11.0 (#675)
  • fc9a89f docs: fix ContainSubstring references (#673)
  • Additional commits viewable in compare view

Updates github.com/unrolled/render from 0.0.0-20180914162206-b9786414de4d to 1.6.0

Release notes

Sourced from github.com/unrolled/render's releases.

v1.6.0

  • Adding ability to set html/template options (commit)

v1.5.0

v1.4.1

  • Support use io/fs.FS directly (#97 )

v1.4.0

  • Introduce an interface RWLock to implement lock free in production mode (#94)
  • Mini refactor and cleanup, added UseMutexLock option (#96)

v1.3.0

New feature:

  • Use fsnotify if using Directory and expose CompileTemplates (#93)

v1.2.0

New feature:

  • Render templates from embed.FS (#89)

v1.1.1

  • Use RWMutex instead of Mutex for locking templates (#90)

v1.1.0

  • Adjusted HTML buffer implementation, made it configurable (#87)

v1.0.3

  • Added template functions as html render option #81

v1.0.2

  • Add option to specify file system #80
Commits

Updates github.com/vishvananda/netns from 0.0.0-20211101163701-50045581ed74 to 0.0.4

Release notes

Sourced from github.com/vishvananda/netns's releases.

v0.0.4 - fix casing of "NS(none)"

What's Changed

New Contributors

Full Changelog: vishvananda/netns@v0.0.3...v0.0.4

v0.0.3

...

Description has been truncated

Bumps the go-deps group with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/bufbuild/protocompile](https://github.com/bufbuild/protocompile) | `0.5.1` | `0.6.0` |
| [github.com/compose-spec/compose-go](https://github.com/compose-spec/compose-go) | `1.17.0` | `1.18.4` |
| [github.com/docker/cli](https://github.com/docker/cli) | `24.0.5+incompatible` | `24.0.6+incompatible` |
| [github.com/docker/compose/v2](https://github.com/docker/compose) | `2.14.0` | `2.21.0` |
| [github.com/docker/docker](https://github.com/docker/docker) | `24.0.5+incompatible` | `24.0.6+incompatible` |
| [github.com/go-errors/errors](https://github.com/go-errors/errors) | `1.4.2` | `1.5.0` |
| [github.com/goccy/go-yaml](https://github.com/goccy/go-yaml) | `1.8.0` | `1.11.2` |
| [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.27.10` |
| [github.com/unrolled/render](https://github.com/unrolled/render) | `0.0.0-20180914162206-b9786414de4d` | `1.6.0` |
| [github.com/vishvananda/netns](https://github.com/vishvananda/netns) | `0.0.0-20211101163701-50045581ed74` | `0.0.4` |
| [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.20230824171626-fce1eee4ae59` | `3.5.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.57.0` | `1.58.1` |


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

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

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

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

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

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

Updates `github.com/goccy/go-yaml` from 1.8.0 to 1.11.2
- [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.2)

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.27.10
- [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.27.10)

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

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.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.20230824171626-fce1eee4ae59 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 `google.golang.org/grpc` from 1.57.0 to 1.58.1
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.57.0...v1.58.1)

---
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-patch
  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-patch
  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/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.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: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Dependency updates label Sep 17, 2023
@dependabot dependabot bot requested a review from a team September 17, 2023 19:27
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 24, 2023

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Sep 24, 2023
@dependabot dependabot bot deleted the dependabot/go_modules/main/go-deps-49e94cee68 branch September 24, 2023 19:36
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.

0 participants