diff --git a/content/manuals/build/release-notes.md b/content/manuals/build/release-notes.md index a326c2d673ac..26cff6f56d4f 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)