[PR #838] [MERGED] build(deps): bump github.com/moby/buildkit from 0.9.0 to 0.9.1 #1638

Closed
opened 2026-03-01 21:52:02 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/nektos/act/pull/838
Author: @dependabot[bot]
Created: 10/11/2021
Status: Merged
Merged: 10/18/2021
Merged by: @mergify[bot]

Base: masterHead: dependabot/go_modules/github.com/moby/buildkit-0.9.1


📝 Commits (1)

  • 04fbb2f build(deps): bump github.com/moby/buildkit from 0.9.0 to 0.9.1

📊 Changes

2 files changed (+5 additions, -4 deletions)

View changed files

📝 go.mod (+1 -1)
📝 go.sum (+4 -3)

📄 Description

Bumps github.com/moby/buildkit from 0.9.0 to 0.9.1.

Release notes

Sourced from github.com/moby/buildkit's releases.

v0.9.1

https://hub.docker.com/r/moby/buildkit

Notable changes

  • Builtin Dockerfile frontend has been updated to v1.3.1 changelog

  • Seccomp profile has been updated to properly handle clone3 syscall support. #2379

  • Fix possible panic on ARM32 due to struct alignment #2321

  • Fix occasional "no active session" and "no such job" errors on concurrent builds #2369

  • Fix flakiness during import of a cache with empty layers removed #2372

  • Handle "edge not found" error in build instead of panicking #2382 #2385

  • Fix problems with experimental Github Actions cache backend:

Commits
  • 966bcf4 Merge pull request #2391 from tonistiigi/v0.9-picks-20211004
  • ba1cf51 don't cast Value when pipe is errored
  • 83f8183 return an error instead of panicking when failing to get edge
  • 9a3c7aa vendor: update go-actions-cache to 4d48f2ff
  • f5213a5 solver: make sure previous error gets reset
  • bc42fdd gha: handle missing blob gracefully
  • 121aab0 gha: handle already exist error on save
  • cf59036 Merge pull request #2386 from tonistiigi/v0.9-picks-10012021
  • e0ce30a solver: include cachemap index in flightcontrol.
  • 6316fbc Fix issues #1980 and #2198
  • Additional commits viewable in compare view

Dependabot compatibility score

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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/nektos/act/pull/838 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 10/11/2021 **Status:** ✅ Merged **Merged:** 10/18/2021 **Merged by:** [@mergify[bot]](https://github.com/apps/mergify) **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/moby/buildkit-0.9.1` --- ### 📝 Commits (1) - [`04fbb2f`](https://github.com/nektos/act/commit/04fbb2ffdd7d2db31ebf996929ed838ad7a9c4dc) build(deps): bump github.com/moby/buildkit from 0.9.0 to 0.9.1 ### 📊 Changes **2 files changed** (+5 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+1 -1) 📝 `go.sum` (+4 -3) </details> ### 📄 Description Bumps [github.com/moby/buildkit](https://github.com/moby/buildkit) from 0.9.0 to 0.9.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/moby/buildkit/releases">github.com/moby/buildkit's releases</a>.</em></p> <blockquote> <h2>v0.9.1</h2> <p><a href="https://hub.docker.com/r/moby/buildkit">https://hub.docker.com/r/moby/buildkit</a></p> <h3>Notable changes</h3> <ul> <li> <p>Builtin Dockerfile frontend has been updated to v1.3.1 <a href="https://github.com/moby/buildkit/releases/tag/dockerfile%2F1.3.1">changelog</a></p> </li> <li> <p>Seccomp profile has been updated to properly handle clone3 syscall support. <a href="https://github-redirect.dependabot.com/moby/buildkit/issues/2379">#2379</a></p> </li> <li> <p>Fix possible panic on ARM32 due to struct alignment <a href="https://github-redirect.dependabot.com/moby/buildkit/issues/2321">#2321</a></p> </li> <li> <p>Fix occasional &quot;no active session&quot; and &quot;no such job&quot; errors on concurrent builds <a href="https://github-redirect.dependabot.com/moby/buildkit/issues/2369">#2369</a></p> </li> <li> <p>Fix flakiness during import of a cache with empty layers removed <a href="https://github-redirect.dependabot.com/moby/buildkit/issues/2372">#2372</a></p> </li> <li> <p>Handle &quot;edge not found&quot; error in build instead of panicking <a href="https://github-redirect.dependabot.com/moby/buildkit/issues/2382">#2382</a> <a href="https://github-redirect.dependabot.com/moby/buildkit/issues/2385">#2385</a></p> </li> <li> <p>Fix problems with experimental Github Actions cache backend:</p> <ul> <li>Add retry logic when API rate limits are reached <a href="https://github-redirect.dependabot.com/tonistiigi/go-actions-cache/pull/8">tonistiigi/go-actions-cache#8</a></li> <li>Remove BOM from error messages returned by API <a href="https://github-redirect.dependabot.com/tonistiigi/go-actions-cache/pull/6">tonistiigi/go-actions-cache#6</a></li> <li>Gracefully handle downloading blobs that have been removed from the cache <a href="https://github-redirect.dependabot.com/moby/buildkit/pull/2387">moby/buildkit#2387</a></li> <li>Fix &quot;cache already exists&quot; errors in certain conditions <a href="https://github-redirect.dependabot.com/moby/buildkit/pull/2387">moby/buildkit#2387</a></li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/moby/buildkit/commit/966bcf4aa3ef397a9d6025fade18f2d59a5bf29d"><code>966bcf4</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/moby/buildkit/issues/2391">#2391</a> from tonistiigi/v0.9-picks-20211004</li> <li><a href="https://github.com/moby/buildkit/commit/ba1cf51d1b9c489bc134d68b1dc5579c20bbe476"><code>ba1cf51</code></a> don't cast Value when pipe is errored</li> <li><a href="https://github.com/moby/buildkit/commit/83f81830c05660e355c47de2f5725e3a36a22aa7"><code>83f8183</code></a> return an error instead of panicking when failing to get edge</li> <li><a href="https://github.com/moby/buildkit/commit/9a3c7aa559e78e4beab6cd6f8787db9e16ab9c07"><code>9a3c7aa</code></a> vendor: update go-actions-cache to 4d48f2ff</li> <li><a href="https://github.com/moby/buildkit/commit/f5213a54546ad67af8f62bc6eb12e784c6033d44"><code>f5213a5</code></a> solver: make sure previous error gets reset</li> <li><a href="https://github.com/moby/buildkit/commit/bc42fdd9c951bbbd4ed70262656d667a49627744"><code>bc42fdd</code></a> gha: handle missing blob gracefully</li> <li><a href="https://github.com/moby/buildkit/commit/121aab0bc7cbde427a8188872787ae72a1c6e0ff"><code>121aab0</code></a> gha: handle already exist error on save</li> <li><a href="https://github.com/moby/buildkit/commit/cf590366fc9bdd61218e41e92db801b46bcb332d"><code>cf59036</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/moby/buildkit/issues/2386">#2386</a> from tonistiigi/v0.9-picks-10012021</li> <li><a href="https://github.com/moby/buildkit/commit/e0ce30a13dfd4de18ee2022e65b7e150fc983bc7"><code>e0ce30a</code></a> solver: include cachemap index in flightcontrol.</li> <li><a href="https://github.com/moby/buildkit/commit/6316fbc8ce75cc6fb2e5f24c5812d5ae02de00a2"><code>6316fbc</code></a> Fix issues <a href="https://github-redirect.dependabot.com/moby/buildkit/issues/1980">#1980</a> and <a href="https://github-redirect.dependabot.com/moby/buildkit/issues/2198">#2198</a></li> <li>Additional commits viewable in <a href="https://github.com/moby/buildkit/compare/v0.9.0...v0.9.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/moby/buildkit&package-manager=go_modules&previous-version=0.9.0&new-version=0.9.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-01 21:52:02 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/act#1638
No description provided.