From 58ff19c9b2b6d1ddaea717073358e24372776b99 Mon Sep 17 00:00:00 2001 From: Alexander Wang Date: Wed, 10 Apr 2024 21:17:42 -0700 Subject: [PATCH 1/2] v0.6.4 --- ci/release/changelogs/next.md | 14 -------------- ci/release/changelogs/v0.6.4.md | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 14 deletions(-) create mode 100644 ci/release/changelogs/v0.6.4.md diff --git a/ci/release/changelogs/next.md b/ci/release/changelogs/next.md index 69ef0268b..f3c0d2a77 100644 --- a/ci/release/changelogs/next.md +++ b/ci/release/changelogs/next.md @@ -1,19 +1,5 @@ #### Features ๐Ÿš€ -- `style.underline` works on connections [#1836](https://github.com/terrastruct/d2/pull/1836) -- `none` is added as an accepted value for `fill-pattern`. Previously there was no way to cancel the `fill-pattern` on select objects set by a theme that applies it (Origami) [#1882](https://github.com/terrastruct/d2/pull/1882) - #### Improvements ๐Ÿงน -- Dimensions can be set less than label dimensions [#1901](https://github.com/terrastruct/d2/pull/1901) -- Boards no longer inherit `label` fields from parents [#1838](https://github.com/terrastruct/d2/pull/1838) -- Prevents `near` targeting a child of a special object like grid cells, which wasn't doing anything [#1851](https://github.com/terrastruct/d2/pull/1851) - #### Bugfixes โ›‘๏ธ - -- Theme flags on CLI apply to PDFs [#1894](https://github.com/terrastruct/d2/pull/1894) -- Fixes styles in connections not overriding styles set by globs [#1857](https://github.com/terrastruct/d2/pull/1857) -- Fixes `null` being set on a nested shape not working in certain cases when connections also pointed to that shape [#1830](https://github.com/terrastruct/d2/pull/1830) -- Fixes edge case of bad import syntax crashing using d2 as a library [#1829](https://github.com/terrastruct/d2/pull/1829) -- Fixes `style.fill` not applying to markdown [#1872](https://github.com/terrastruct/d2/pull/1872) -- Fixes compiler erroring on certain styles when the shape's `shape` value is not all lowercase (e.g. `Circle`) [#1887](https://github.com/terrastruct/d2/pull/1887) diff --git a/ci/release/changelogs/v0.6.4.md b/ci/release/changelogs/v0.6.4.md new file mode 100644 index 000000000..69ef0268b --- /dev/null +++ b/ci/release/changelogs/v0.6.4.md @@ -0,0 +1,19 @@ +#### Features ๐Ÿš€ + +- `style.underline` works on connections [#1836](https://github.com/terrastruct/d2/pull/1836) +- `none` is added as an accepted value for `fill-pattern`. Previously there was no way to cancel the `fill-pattern` on select objects set by a theme that applies it (Origami) [#1882](https://github.com/terrastruct/d2/pull/1882) + +#### Improvements ๐Ÿงน + +- Dimensions can be set less than label dimensions [#1901](https://github.com/terrastruct/d2/pull/1901) +- Boards no longer inherit `label` fields from parents [#1838](https://github.com/terrastruct/d2/pull/1838) +- Prevents `near` targeting a child of a special object like grid cells, which wasn't doing anything [#1851](https://github.com/terrastruct/d2/pull/1851) + +#### Bugfixes โ›‘๏ธ + +- Theme flags on CLI apply to PDFs [#1894](https://github.com/terrastruct/d2/pull/1894) +- Fixes styles in connections not overriding styles set by globs [#1857](https://github.com/terrastruct/d2/pull/1857) +- Fixes `null` being set on a nested shape not working in certain cases when connections also pointed to that shape [#1830](https://github.com/terrastruct/d2/pull/1830) +- Fixes edge case of bad import syntax crashing using d2 as a library [#1829](https://github.com/terrastruct/d2/pull/1829) +- Fixes `style.fill` not applying to markdown [#1872](https://github.com/terrastruct/d2/pull/1872) +- Fixes compiler erroring on certain styles when the shape's `shape` value is not all lowercase (e.g. `Circle`) [#1887](https://github.com/terrastruct/d2/pull/1887) From 5ace73f60a92251f28751d00bac1c7f5ffc67960 Mon Sep 17 00:00:00 2001 From: Alexander Wang Date: Wed, 10 Apr 2024 22:26:12 -0700 Subject: [PATCH 2/2] upgrade go version in docker --- ci/release/build_in_docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/release/build_in_docker.sh b/ci/release/build_in_docker.sh index 034d842e4..cbfcbcdec 100755 --- a/ci/release/build_in_docker.sh +++ b/ci/release/build_in_docker.sh @@ -4,7 +4,7 @@ cd -- "$(dirname "$0")/../.." . ./ci/sub/lib.sh tag="$(sh_c docker build \ - --build-arg GOVERSION="1.20.8.linux-$ARCH" \ + --build-arg GOVERSION="1.22.2.linux-$ARCH" \ -qf ./ci/release/linux/Dockerfile ./ci/release/linux)" docker_run \ -e DRY_RUN \