From aea16c3cfc51e4a11b01c603e4522f183bee995e Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Fri, 24 Jan 2025 15:30:34 +0100 Subject: [PATCH] buildx: update to buildx 0.20.0 release notes (#21890) ## Description To be aligned with GitHub one with new note callout: https://github.com/docker/buildx/releases/tag/v0.20.0 ## Reviews - [ ] Technical review - [ ] Editorial review - [ ] Product review --------- Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com> --- content/manuals/build/release-notes.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/content/manuals/build/release-notes.md b/content/manuals/build/release-notes.md index a326c2d673..26cff6f56d 100644 --- a/content/manuals/build/release-notes.md +++ b/content/manuals/build/release-notes.md @@ -29,6 +29,17 @@ The full release note for this release is available The full release note for this release is available [on GitHub](https://github.com/docker/buildx/releases/tag/v0.20.0). +> [!NOTE] +> +> This version of buildx enables filesystem entitlement checks for `buildx bake` +> command by default. If your Bake definition needs to read or write files +> outside your current working directory, you need to allow access to these +> paths with `--allow fs=`. On the terminal, you can also interactively +> approve these paths with the provided prompt. Optionally, you can disable +> these checks by setting `BUILDX_BAKE_ENTITLEMENTS_FS=0`. This validation +> produced a warning in Buildx v0.19.0+, but starting from current release it +> produces an error. For more information, see the [reference documentation](/reference/cli/docker/buildx/bake.md#allow). + ### New - New `buildx history` command has been added that allows working with build records of completed and running builds. You can use these commands to list, inspect, remove your builds, replay the logs of already completed builds, and quickly open your builds in Docker Desktop Build UI for further debugging. This is an early version of this command and we expect to add more features in the future releases. [#2891](https://github.com/docker/buildx/pull/2891), [#2925](https://github.com/docker/buildx/pull/2925)