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

fix(deps): update all go dependencies main (patch) #1396

Merged
merged 1 commit into from
Sep 4, 2023

Conversation

cilium-renovate[bot]
Copy link
Contributor

This PR contains the following updates:

Package Type Update Change
github.com/containerd/containerd require patch v1.7.3 -> v1.7.5
github.com/google/cel-go require patch v0.17.3 -> v0.17.6
github.com/hashicorp/golang-lru/v2 require patch v2.0.5 -> v2.0.6

Release Notes

containerd/containerd (github.com/containerd/containerd)

v1.7.5: containerd 1.7.5

Compare Source

Welcome to the v1.7.5 release of containerd!

The fifth patch release for containerd 1.7 fixes a versioning issue from
the previous release and includes some internal logging API changes.

See the changelog for complete list of changes

Please try out the release binaries and report any issues at
https://github.com/containerd/containerd/issues.

Contributors
  • Sebastiaan van Stijn
  • Derek McGowan
  • Akihiro Suda
  • Antonio Huete Jimenez
  • Phil Estes
  • Samuel Karp
Changes
18 commits

  • [release/1.7] Prepare release notes for 1.7.5 (#​9010)
  • [release/1.7 backport] go.mod: github.com/containerd/continuity v0.4.2 (#​9012)
    • 503ab21bf go.mod: github.com/containerd/continuity v0.4.2
  • [release/1.7 backport] log: cleanups and improvements to decouple more from logrus (#​9001)
    • 2a9ae3c51 log: swap logrus functions with their equivalent on default logger
    • 01445bb73 log: add package documentation and summary of package's purpose
    • 932795f45 log: make Fields type a generic map[string]any
    • 707ca94d8 log: add log.Entry type
    • 0a79e67e4 log: define OutputFormat type
    • dbbe28b7d log: define G() as a function instead of a variable
    • 93b6cb784 log: add all log-levels that are accepted
    • e8e086e02 log: group "enum" consts and touch-up docs
    • 7aa4f8fdc log: WithLogger: remove redundant intermediate var
    • bfdce4ce4 log: SetFormat: include returns in switch
    • 6621e0888 log: remove testify dependency
    • df76aaede removes/docker: remove unnecessary conversion (unconvert)

Changes from containerd/continuity
2 commits

  • Add initial DragonFly BSD support (#​230)
    • bcc6e25 dragonfly: Initial porting work

Dependency Changes
  • github.com/containerd/continuity 1e0d26e -> v0.4.2

Previous release can be found at v1.7.4

v1.7.4: containerd 1.7.4

Compare Source

Welcome to the v1.7.4 release of containerd!

The fourth patch release for containerd 1.7 contains remote differ plugin support,
a new block file based snapshotter, and various fixes and updates.

Notable Updates
  • Add blockfile snapshotter (#​8986)
  • Add remote/proxy differ (#​8985)
  • Update runc binary to v1.1.9 (#​8965)
  • Cri: Don't use rel path for image volumes (#​8926)
  • Allow attaching to any combination of stdin/out/err (#​8910)
  • Fix ro mount option being passed (#​8887)
  • Fix leaked shim caused by high IO pressure (#​9003)
  • Add configurable mount options to overlay snapshotter (#​9005)

See the changelog for complete list of changes

Please try out the release binaries and report any issues at
https://github.com/containerd/containerd/issues.

Contributors
  • Wei Fu
  • Derek McGowan
  • Akihiro Suda
  • Kazuyoshi Kato
  • Cardy.Tang
  • Phil Estes
  • Ben Foster
  • Danny Canter
  • Hsing-Yu (David) Chen
  • James Jenkins
  • James Sturtevant
  • Maksym Pavlenko
  • Rodrigo Campos
  • Sebastiaan van Stijn
  • rongfu.leng
Changes
43 commits

  • [release/1.7] Prepare release notes for v1.7.4 (#​9000)
    • 7a0cae3ca [release/1.7] Prepare release notes for v1.7.4
  • [releases/1.7] *: fix leaked shim caused by high IO pressure (#​9003)
  • [release/1.7] Cherry-pick: [overlay] add configurable mount options to overlay snapshotter (#​9005)
    • 0f4885c16 Add configurable mount options to overlay
    • 8804a27d7 feat: make overlay sync removal configurable
  • [release/1.7] Remove temporary replace (#​8997)
  • [release/1.7] Add blockfile snapshotter (#​8986)
    • 2bf6bd143 vendor: update github.com/containerd/continuity
    • 30a163086 snapshots|pkg: umount without DETACH and nosync after umount
    • c9eebe3d1 mount: support direct-io for loopback device
    • 1c2977db0 Modify loopback size
    • cf9c78d2d snapshots/blockfile: fix lint issue
    • b823b4f54 snapshots/blockfile: deflaky the testsuite
    • 6daeceb11 snapshots/blockfile: use passed in dst in scratchGenerator
    • 99b61aee3 snapshots/blockfile: use loop if options is empty
    • fd39769ac Add mount options to blockfile snapshotter
    • 8d732c6c2 Add sync before unmount on snapshotter layer test
    • 8472a407e Add blockfile snapshotter to snapshotters doc
    • 6740d77ca Add blockfile as a builtin
    • 07cc24b32 Add blockfile snapshotter
  • [release/1.7] Backport remote/proxy differ (#​8985)
  • [release/1.7 backport] update runc binary to v1.1.9 (#​8965)
  • [release/1.7] Port fix for Linux Integration test failure (#​8950)
    • c0b1c8f74 fix ci Linux Integration test fail
  • [release/1.7] cri: Don't use rel path for image volumes (#​8926)
    • 4e97a115f cri: Don't use rel path for image volumes
  • [release/1.7] fix: allow attaching to any combination of stdin/stdout/stderr (#​8910)
    • 34a5d0330 fix: allow attaching to any combination of stdin/stdout/stderr
  • [release/1.7 backport] update to go1.20.7, go1.19.12 (#​8906)
  • [release/1.7] cherry-pick: Fix ro mount option being passed (#​8887)

Changes from containerd/continuity
4 commits

  • fs: use io.Copy because go supports CopyFileRange (#​227)
    • 4b8bec5 fs: use io.Copy because go supports CopyFileRange
  • fs/fstest: CreateFile should use sync (#​228)
    • 3fa7d7a fs/fstest: CreateFile should use sync

Dependency Changes

Previous release can be found at v1.7.3

google/cel-go (github.com/google/cel-go)

v0.17.6

Compare Source

v0.17.5

Compare Source

v0.17.4

Compare Source

hashicorp/golang-lru (github.com/hashicorp/golang-lru/v2)

v2.0.6: golang-lru 2.0.6

Compare Source

This release removes calling the eviction callback when the Add method is called with an item that is already in the cache (#​154); it reverts PR #​135 which caused issue #​141.

What's Changed

Full Changelog: hashicorp/golang-lru@v2.0.5...v2.0.6


Configuration

📅 Schedule: Branch creation - "on monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>
@cilium-renovate cilium-renovate bot requested a review from a team as a code owner August 28, 2023 09:08
@cilium-renovate cilium-renovate bot added kind/enhancement This improves or streamlines existing functionality release-blocker This PR or issue is blocking the next release. labels Aug 28, 2023
@mtardy mtardy merged commit 2ac7060 into main Sep 4, 2023
25 of 28 checks passed
@mtardy mtardy deleted the renovate/patch-all-go-deps-main branch September 4, 2023 10:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/enhancement This improves or streamlines existing functionality release-blocker This PR or issue is blocking the next release.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant