FDio / govpp

Go toolset for the VPP.
Apache License 2.0
192 stars 81 forks source link

Bump the go-deps group with 7 updates #153

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps the go-deps group with 7 updates:

Package Update
github.com/docker/cli 24.0.2+incompatible to 24.0.5+incompatible
github.com/fsnotify/fsnotify 1.4.9 to 1.6.0
github.com/gookit/color 1.5.2 to 1.5.4
github.com/onsi/gomega 1.19.0 to 1.27.10
github.com/pkg/profile 1.5.0 to 1.7.0
github.com/sirupsen/logrus 1.8.1 to 1.9.3
github.com/spf13/cobra 1.6.1 to 1.7.0

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

Commits
  • ced0996 Merge pull request #4450 from vvoland/fix-issue-4414-Danial-Gharib-24
  • 1ee40e2 configfile: Initialize nil AuthConfigs
  • 40cc1d8 Merge pull request #4445 from thaJeztah/24.0_backport_buildx_0.11.2
  • 3c2278a Merge pull request #4443 from thaJeztah/24.0_update_engine2
  • 3bd6d69 Dockerfile: update buildx to v0.11.2
  • 05bf7fb vendor: github.com/docker/docker v24.0.5-0.20230718221249-d4a26c153000
  • c6d7c0b Merge pull request #4438 from thaJeztah/24.0_update_engine
  • dd08d44 Merge pull request #4425 from thaJeztah/24.0_backport_credential-store-improv...
  • 809975d Merge pull request #4423 from thaJeztah/24.0_backport_dont-ignore-volume-pars...
  • 8b5023d vendor: github.com/docker/docker v24.0.5-0.20230717072055-8443a06149b5
  • Additional commits viewable in compare view


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

Release notes

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

v1.6.0

This version of fsnotify needs Go 1.16 (this was already the case since 1.5.1, but not documented). It also increases the minimum Linux version to 2.6.32.

Additions

  • all: add Event.Has() and Op.Has() (#477)

    This makes checking events a lot easier; for example:

    if event.Op&Write == Write && !(event.Op&Remove == Remove) {
    }
    

    Becomes:

    if event.Has(Write) && !event.Has(Remove) {
    }
    
  • all: add cmd/fsnotify (#463)

    A command-line utility for testing and some examples.

Changes and fixes

  • inotify: don't ignore events for files that don't exist (#260, #470)

    Previously the inotify watcher would call os.Lstat() to check if a file still exists before emitting events.

    This was inconsistent with other platforms and resulted in inconsistent event reporting (e.g. when a file is quickly removed and re-created), and generally a source of confusion. It was added in 2013 to fix a memory leak that no longer exists.

  • all: return ErrNonExistentWatch when Remove() is called on a path that's not watched (#460)

  • inotify: replace epoll() with non-blocking inotify (#434)

    Non-blocking inotify was not generally available at the time this library was written in 2014, but now it is. As a result, the minimum Linux version is bumped from 2.6.27 to 2.6.32. This hugely simplifies the code and is faster.

  • kqueue: don't check for events every 100ms (#480)

    The watcher would wake up every 100ms, even when there was nothing to do. Now it waits until there is something to do.

  • macos: retry opening files on EINTR (#475)

  • kqueue: skip unreadable files (#479)

    kqueue requires a file descriptor for every file in a directory; this would fail if a file was unreadable by the current user. Now these files are simply skipped.

  • windows: fix renaming a watched directory if the parent is also watched (#370)

  • windows: increase buffer size from 4K to 64K (#485)

... (truncated)

Changelog

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

1.6.0 - 2022-10-13

This version of fsnotify needs Go 1.16 (this was already the case since 1.5.1, but not documented). It also increases the minimum Linux version to 2.6.32.

Additions

  • all: add Event.Has() and Op.Has() (#477)

    This makes checking events a lot easier; for example:

    if event.Op&Write == Write && !(event.Op&Remove == Remove) {
    }
    

    Becomes:

    if event.Has(Write) && !event.Has(Remove) {
    }
    
  • all: add cmd/fsnotify (#463)

    A command-line utility for testing and some examples.

Changes and fixes

  • inotify: don't ignore events for files that don't exist (#260, #470)

    Previously the inotify watcher would call os.Lstat() to check if a file still exists before emitting events.

    This was inconsistent with other platforms and resulted in inconsistent event reporting (e.g. when a file is quickly removed and re-created), and generally a source of confusion. It was added in 2013 to fix a memory leak that no longer exists.

  • all: return ErrNonExistentWatch when Remove() is called on a path that's not watched (#460)

  • inotify: replace epoll() with non-blocking inotify (#434)

    Non-blocking inotify was not generally available at the time this library was written in 2014, but now it is. As a result, the minimum Linux version is bumped from 2.6.27 to 2.6.32. This hugely simplifies the code and is faster.

  • kqueue: don't check for events every 100ms (#480)

    The watcher would wake up every 100ms, even when there was nothing to do. Now it waits until there is something to do.

  • macos: retry opening files on EINTR (#475)

... (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 :sparkles: feat: Color add new method: IsBg(), IsFg(), IsOption() for check c...
  • fe2b251 :sparkles: feat: RGBColor add new method: ToFg(), ToBg() for quick convert
  • 74bb513 :bug: 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.19.0 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/pkg/profile from 1.5.0 to 1.7.0

Release notes

Sourced from github.com/pkg/profile's releases.

pkg/profile 1.7.0

Adds support for fgprof, thanks @​yonderblue

pkg/profile 1.6.0

No release notes provided.

Commits


Updates github.com/sirupsen/logrus from 1.8.1 to 1.9.3

Release notes

Sourced from github.com/sirupsen/logrus's releases.

v1.9.3

Full Changelog: https://github.com/sirupsen/logrus/compare/v1.9.2...v1.9.3

v1.9.2

Full Changelog: https://github.com/sirupsen/logrus/compare/v1.9.1...v1.9.2

v1.9.1

What's Changed

New Contributors

Full Changelog: https://github.com/sirupsen/logrus/compare/v1.9.0...v1.9.1

v1.9.0

No release notes provided.

v1.8.3

What's Changed

New Contributors

Full Changelog: https://github.com/sirupsen/logrus/compare/v1.8.2...v1.8.3

v1.8.2

What's Changed

... (truncated)

Commits
  • d40e25c fix panic in Writer
  • f9291a5 Revert "Revert "Merge pull request #1376 from ozfive/master""
  • 352781d Revert "Merge pull request #1376 from ozfive/master"
  • b30aa27 Merge pull request #1339 from xieyuschen/patch-1
  • 6acd903 Merge pull request #1376 from ozfive/master
  • 105e63f Merge pull request #1 from ashmckenzie/ashmckenzie/fix-writer-scanner
  • c052ba6 Scan text in 64KB chunks
  • e59b167 Merge pull request #1372 from tommyblue/syslog_different_loglevels
  • 766cfec This commit fixes a potential denial of service vulnerability in logrus.Write...
  • 70234da Add instructions to use different log levels for local and syslog
  • Additional commits viewable in compare view


Updates github.com/spf13/cobra from 1.6.1 to 1.7.0

Release notes

Sourced from github.com/spf13/cobra's releases.

v1.7.0

✨ Features

🐛 Bug fixes

🧪 Testing & CI/CD

🔧 Maintenance

✏️ Documentation


This release contains several long running fixes, improvements to powershell completions, and further optimizations for completions.

Thank you everyone who contributed to this release and all your hard work! Cobra and this community would never be possible without all of you! 🐍

Full changelog: https://github.com/spf13/cobra/compare/v1.6.1...v1.7.0

Commits


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