From 3920aebfa2137f3dc87848ce1004f5c3d45a3840 Mon Sep 17 00:00:00 2001 From: Miroslav Shubernetskiy Date: Thu, 5 Oct 2023 21:28:31 -0400 Subject: [PATCH] adding new section for 0.1.3 release notes --- src/docs/core-release-notes.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/docs/core-release-notes.md b/src/docs/core-release-notes.md index 44544e0e..a13110c2 100644 --- a/src/docs/core-release-notes.md +++ b/src/docs/core-release-notes.md @@ -1,3 +1,29 @@ +# Release Notes for Chalk version 0.1.3 + +## Fixes + +- Docker support when installed via `Snap`. + [9](https://github.com/crashappsec/chalk/pull/9) +- Removes error log when using chalk on ARM Linux as chalk fully + runs on ARM Linux now. + [7](https://github.com/crashappsec/chalk/pull/7) +- Chalk could not wrap any `docker` commands which required `TTY` + such as `docker run -i`. + [29](https://github.com/crashappsec/chalk/pull/29) +- When a `Dockerfile` uses `USER` directive, chalk can now wrap + entrypoint in that image + (`docker.wrap_entrypoint = true` in chalk config). + [34](https://github.com/crashappsec/chalk/pull/34) + +## Known Issues + +### Containers + +- When a `Dockerfile` does not use `USER` directive but base image + uses it to change default image user, chalk cannot wrap the + image as it on legacy Docker builder (not buildx) as it will + fail to `chmod` permissions of chalk during the build. + # Release Notes for Chalk version 0.1.2 This is the first open source release of Chalk. For those who