diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f5fbfebb07b..737ed7181e4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## 0.14.21 + +Released on June 2, 2021. + +### Features + +- Add interface for backend key-value metadata store - [#4499](https://github.com/PrefectHQ/prefect/pull/4499) + +### Enhancements + +- Keep intermediate docker layers when using Docker Storage to improve caching - [#4584](https://github.com/PrefectHQ/prefect/pull/4584) + +### Fixes + +- Fix possible race condition in `LocalResult` directory creation - [#4587](https://github.com/PrefectHQ/prefect/pull/4587) +- Use absolute paths when registering flows in `prefect register` - [#4593](https://github.com/PrefectHQ/prefect/pull/4593) +- Propagate storage labels (e.g. hostname label on `Local` storage) when registering flows with `prefect register` - [#4593](https://github.com/PrefectHQ/prefect/pull/4593) +- Fix small-flow parallelism issues with multiprocess `LocalDaskExecutor` - [#4602](https://github.com/PrefectHQ/prefect/pull/4602) +- Cleanly handle unpicklable exceptions in tasks - [#4605](https://github.com/PrefectHQ/prefect/pull/4605) + +### Contributors + +- [Tom Forbes](https://github.com/orf) + ## 0.14.20 Released on May 25, 2021. diff --git a/changes/pr4499.yaml b/changes/pr4499.yaml deleted file mode 100644 index 46ba4082c21f..000000000000 --- a/changes/pr4499.yaml +++ /dev/null @@ -1,2 +0,0 @@ -feature: - - "Add interface for backend key-value metadata store - [#4499](https://github.com/PrefectHQ/prefect/pull/4499)" \ No newline at end of file diff --git a/changes/pr4584.yaml b/changes/pr4584.yaml deleted file mode 100644 index fed6d07c2668..000000000000 --- a/changes/pr4584.yaml +++ /dev/null @@ -1,5 +0,0 @@ -enhancement: - - "Keep intermediate docker layers when using Docker Storage to improve caching - [#4584](https://github.com/PrefectHQ/prefect/pull/4584)" - -contributor: - - "[Tom Forbes](https://github.com/orf)" diff --git a/changes/pr4587.yaml b/changes/pr4587.yaml deleted file mode 100644 index 107c14eef8e7..000000000000 --- a/changes/pr4587.yaml +++ /dev/null @@ -1,3 +0,0 @@ - -fix: - - "Fix possible race condition in `LocalResult` directory creation - [#4587](https://github.com/PrefectHQ/prefect/pull/4587)" diff --git a/changes/pr4593.yaml b/changes/pr4593.yaml deleted file mode 100644 index 2a611c86c9dd..000000000000 --- a/changes/pr4593.yaml +++ /dev/null @@ -1,3 +0,0 @@ -fix: - - "Use absolute paths when registering flows in `prefect register` - [#4593](https://github.com/PrefectHQ/prefect/pull/4593)" - - "Propagate storage labels (e.g. hostname label on `Local` storage) when registering flows with `prefect register` - [#4593](https://github.com/PrefectHQ/prefect/pull/4593)" diff --git a/changes/pr4602.yaml b/changes/pr4602.yaml deleted file mode 100644 index daaacae633c2..000000000000 --- a/changes/pr4602.yaml +++ /dev/null @@ -1,3 +0,0 @@ - -fix: - - "Fix small-flow parallelism issues with multiprocess `LocalDaskExecutor` - [#4602](https://github.com/PrefectHQ/prefect/pull/4602)" diff --git a/changes/pr4605.yaml b/changes/pr4605.yaml deleted file mode 100644 index e2fb7108217a..000000000000 --- a/changes/pr4605.yaml +++ /dev/null @@ -1,3 +0,0 @@ - -fix: - - "Cleanly handle unpicklable exceptions in tasks - [#4605](https://github.com/PrefectHQ/prefect/pull/4605)" diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 80f4bbf3306a..2829ea621e8a 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -80,7 +80,7 @@ module.exports = { { text: 'API Reference', items: [ - { text: 'Latest (0.14.20)', link: '/api/latest/' }, + { text: 'Latest (0.14.21)', link: '/api/latest/' }, { text: '0.13.19', link: '/api/0.13.19/' }, { text: '0.12.6', link: '/api/0.12.6/' }, { text: '0.11.5', link: '/api/0.11.5/' },