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

[main](go): Bump the dependencies group with 8 updates #3343

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 23, 2024

Bumps the dependencies group with 8 updates:

Package From To
code.cloudfoundry.org/bytefmt 0.21.0 0.22.0
code.cloudfoundry.org/clock 1.24.0 1.25.0
code.cloudfoundry.org/lager/v3 3.18.0 3.19.0
code.cloudfoundry.org/tlsconfig 0.12.0 0.13.0
github.com/cyphar/filepath-securejoin 0.3.5 0.3.6
github.com/maxbrunsfeld/counterfeiter/v6 6.10.0 6.11.2
github.com/onsi/ginkgo/v2 2.22.0 2.22.1
golang.org/x/net 0.32.0 0.33.0

Updates code.cloudfoundry.org/bytefmt from 0.21.0 to 0.22.0

Commits

Updates code.cloudfoundry.org/clock from 1.24.0 to 1.25.0

Commits

Updates code.cloudfoundry.org/lager/v3 from 3.18.0 to 3.19.0

Commits

Updates code.cloudfoundry.org/tlsconfig from 0.12.0 to 0.13.0

Commits

Updates github.com/cyphar/filepath-securejoin from 0.3.5 to 0.3.6

Release notes

Sourced from github.com/cyphar/filepath-securejoin's releases.

v0.3.6

This release lowers the minimum Go version to Go 1.18 as well as some library dependencies, in order to make it easier for folks that need to backport patches using the new filepath-securejoin API onto branches that are stuck using old Go compilers. For users using Go >= 1.21, this release contains no functional changes.

  • The minimum Go version requirement for filepath-securejoin is now Go 1.18 (we use generics internally).

    For reference, [email protected] somewhat-arbitrarily bumped the Go version requirement to 1.21.

    While we did make some use of Go 1.21 stdlib features (and in principle Go versions <= 1.21 are no longer even supported by upstream anymore), some downstreams have complained that the version bump has meant that they have to do workarounds when backporting fixes that use the new filepath-securejoin API onto old branches. This is not an ideal situation, but since using this library is probably better for most downstreams than a hand-rolled workaround, we now have compatibility shims that allow us to build on older Go versions.

  • Lower minimum version requirement for golang.org/x/sys to v0.18.0 (we need the wrappers for fsconfig(2)), which should also make backporting patches to older branches easier.

Signed-off-by: Aleksa Sarai [email protected]

Changelog

Sourced from github.com/cyphar/filepath-securejoin's changelog.

[0.3.6] - 2024-12-17

Compatibility

  • The minimum Go version requirement for filepath-securejoin is now Go 1.18 (we use generics internally).

    For reference, [email protected] somewhat-arbitrarily bumped the Go version requirement to 1.21.

    While we did make some use of Go 1.21 stdlib features (and in principle Go versions <= 1.21 are no longer even supported by upstream anymore), some downstreams have complained that the version bump has meant that they have to do workarounds when backporting fixes that use the new filepath-securejoin API onto old branches. This is not an ideal situation, but since using this library is probably better for most downstreams than a hand-rolled workaround, we now have compatibility shims that allow us to build on older Go versions.

  • Lower minimum version requirement for golang.org/x/sys to v0.18.0 (we need the wrappers for fsconfig(2)), which should also make backporting patches to older branches easier.

Commits
  • 200008e VERSION: release v0.3.6
  • 43784dc tests: lower github.com/stretchr/testify requirement to v1.7.1
  • 2ec07d2 merge #37 into cyphar/filepath-securejoin:main
  • d17d372 gha: use stable/oldstable go versions
  • 2d9831f gha: compile-test for all supported Go versions
  • 31bfec2 gha: test older Go versions in CI
  • e11873c deps: downgrade golang.org/x/sys requirement
  • 6ef6896 go: lower Go requirement to Go 1.18
  • a06a225 tests: don't call testing.Testing() in mocks
  • 07ceaf0 merge #36 into cyphar/filepath-securejoin:main
  • Additional commits viewable in compare view

Updates github.com/maxbrunsfeld/counterfeiter/v6 from 6.10.0 to 6.11.2

Release notes

Sourced from github.com/maxbrunsfeld/counterfeiter/v6's releases.

v6.11.2

Revert changes from v6.11.1.

Full Changelog: maxbrunsfeld/counterfeiter@v6.11.1...v6.11.2

v6.11.1

Restore compatibility for go 1.22.

Full Changelog: maxbrunsfeld/counterfeiter@v6.11.0...v6.11.1

v6.11.0

What's Changed

New Contributors

Full Changelog: maxbrunsfeld/counterfeiter@v6.10.0...v6.11.0

Commits
  • 9d1ef65 Revert "don’t include toolchain directive, support go 1.22+ until 1.24 is rel...
  • 432aa38 don’t include toolchain directive, support go 1.22+ until 1.24 is released
  • 1db6bf1 test with built in constraint
  • 00d12aa removed unused fake
  • ceb8b76 parser changes undone. requiring args to not include type params or constraints
  • e7c0976 remove test printing
  • 204c067 multiple generic types in one interface
  • 9a80e3f handle interfaces with generics
  • 27aec33 Merge pull request #310 from maxbrunsfeld/dependabot/go_modules/github.com/on...
  • b4c2c54 Bump github.com/onsi/gomega from 1.36.0 to 1.36.1
  • Additional commits viewable in compare view

Updates github.com/onsi/ginkgo/v2 from 2.22.0 to 2.22.1

Release notes

Sourced from github.com/onsi/ginkgo/v2's releases.

v2.22.1

2.22.1

Fixes

Fix CSV encoding

  • Update tests [aab3da6]
  • Properly encode CSV rows [c09df39]
  • Add test case for proper csv escaping [96a80fc]
  • Add meta-test [43dad69]

Maintenance

  • ensure *.test files are gitignored so we don't accidentally commit compiled tests again [c88c634]
  • remove golang.org/x/net/context in favour of stdlib context [4df44bf]
Changelog

Sourced from github.com/onsi/ginkgo/v2's changelog.

2.22.1

Fixes

Fix CSV encoding

  • Update tests [aab3da6]
  • Properly encode CSV rows [c09df39]
  • Add test case for proper csv escaping [96a80fc]
  • Add meta-test [43dad69]

Maintenance

  • ensure *.test files are gitignored so we don't accidentally commit compiled tests again [c88c634]
  • remove golang.org/x/net/context in favour of stdlib context [4df44bf]
Commits
  • a0190b7 v2.22.1
  • 4df44bf remove golang.org/x/net/context in favour of stdlib context
  • c88c634 ensure *.test files are gitignored so we don't accidentally commit compiled t...
  • aab3da6 Update tests
  • c09df39 Properly encode CSV rows
  • 96a80fc Add test case for proper csv escaping
  • 43dad69 Add meta-test
  • See full diff in compare view

Updates golang.org/x/net from 0.32.0 to 0.33.0

Commits
  • dfc720d go.mod: update golang.org/x dependencies
  • 8e66b04 html: use strings.EqualFold instead of lowering ourselves
  • b935f7b html: avoid endless loop on error token
  • 9af49ef route: remove unused sizeof* consts
  • 6705db9 quic: clean up crypto streams when dropping packet protection keys
  • 4ef7588 quic: handle ACK frame in packet which drops number space
  • 552d8ac Revert "route: change from syscall to x/sys/unix"
  • 13a7c01 Revert "route: remove unused sizeof* consts on freebsd"
  • See full diff 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 8 updates:

| Package | From | To |
| --- | --- | --- |
| [code.cloudfoundry.org/bytefmt](https://github.com/cloudfoundry/bytefmt) | `0.21.0` | `0.22.0` |
| [code.cloudfoundry.org/clock](https://github.com/cloudfoundry/clock) | `1.24.0` | `1.25.0` |
| [code.cloudfoundry.org/lager/v3](https://github.com/cloudfoundry/lager) | `3.18.0` | `3.19.0` |
| [code.cloudfoundry.org/tlsconfig](https://github.com/cloudfoundry/tlsconfig) | `0.12.0` | `0.13.0` |
| [github.com/cyphar/filepath-securejoin](https://github.com/cyphar/filepath-securejoin) | `0.3.5` | `0.3.6` |
| [github.com/maxbrunsfeld/counterfeiter/v6](https://github.com/maxbrunsfeld/counterfeiter) | `6.10.0` | `6.11.2` |
| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.22.0` | `2.22.1` |
| [golang.org/x/net](https://github.com/golang/net) | `0.32.0` | `0.33.0` |


Updates `code.cloudfoundry.org/bytefmt` from 0.21.0 to 0.22.0
- [Release notes](https://github.com/cloudfoundry/bytefmt/releases)
- [Commits](cloudfoundry/bytefmt@v0.21.0...v0.22.0)

Updates `code.cloudfoundry.org/clock` from 1.24.0 to 1.25.0
- [Release notes](https://github.com/cloudfoundry/clock/releases)
- [Commits](cloudfoundry/clock@v1.24.0...v1.25.0)

Updates `code.cloudfoundry.org/lager/v3` from 3.18.0 to 3.19.0
- [Release notes](https://github.com/cloudfoundry/lager/releases)
- [Commits](cloudfoundry/lager@v3.18.0...v3.19.0)

Updates `code.cloudfoundry.org/tlsconfig` from 0.12.0 to 0.13.0
- [Release notes](https://github.com/cloudfoundry/tlsconfig/releases)
- [Commits](cloudfoundry/tlsconfig@v0.12.0...v0.13.0)

Updates `github.com/cyphar/filepath-securejoin` from 0.3.5 to 0.3.6
- [Release notes](https://github.com/cyphar/filepath-securejoin/releases)
- [Changelog](https://github.com/cyphar/filepath-securejoin/blob/main/CHANGELOG.md)
- [Commits](cyphar/filepath-securejoin@v0.3.5...v0.3.6)

Updates `github.com/maxbrunsfeld/counterfeiter/v6` from 6.10.0 to 6.11.2
- [Release notes](https://github.com/maxbrunsfeld/counterfeiter/releases)
- [Commits](maxbrunsfeld/counterfeiter@v6.10.0...v6.11.2)

Updates `github.com/onsi/ginkgo/v2` from 2.22.0 to 2.22.1
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.22.0...v2.22.1)

Updates `golang.org/x/net` from 0.32.0 to 0.33.0
- [Commits](golang/net@v0.32.0...v0.33.0)

---
updated-dependencies:
- dependency-name: code.cloudfoundry.org/bytefmt
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: code.cloudfoundry.org/clock
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: code.cloudfoundry.org/lager/v3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: code.cloudfoundry.org/tlsconfig
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/cyphar/filepath-securejoin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: github.com/maxbrunsfeld/counterfeiter/v6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: golang.org/x/net
  dependency-type: direct:production
  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 Dec 23, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 30, 2024

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

@dependabot dependabot bot closed this Dec 30, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/dependencies-589560ecd0 branch December 30, 2024 09:11
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