From 61503eee7dd08dd25d66108c54073c414fa31e55 Mon Sep 17 00:00:00 2001 From: Michael Adkins Date: Wed, 21 Jul 2021 02:08:29 +0000 Subject: [PATCH] Release 0.15.2 (#4794) * Cut final changelog for 0.15.2 [ci skip] * Update latest doc for 0.15.2 [ci skip] --- CHANGELOG.md | 3 +++ changes/pr4736.yaml | 3 --- changes/pr4761.yaml | 3 --- changes/pr4792.yaml | 5 ----- docs/.vuepress/config.js | 2 +- 5 files changed, 4 insertions(+), 12 deletions(-) delete mode 100644 changes/pr4736.yaml delete mode 100644 changes/pr4761.yaml delete mode 100644 changes/pr4792.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 05a1e709a02a..d01f5449cd78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,11 +9,14 @@ Released on July 20, 2021. - Allow CLI registration of flows without starting their schedule `prefect register --no-schedule` - [#4752](https://github.com/PrefectHQ/prefect/pull/4752) - Add `host_config` to `DockerRun` to expose deeper settings for Docker flow runs - [#4733](https://github.com/PrefectHQ/prefect/issues/4773) - Enable loading additional repository files with `Git` storage - [#4767](https://github.com/PrefectHQ/prefect/pull/4767) +- Update flow run heartbeats to be robust to exceptions - [#4736](https://github.com/PrefectHQ/prefect/pull/4736) +- Allow `prefect build/register` paths to contain globs for recursion - [#4761](https://github.com/PrefectHQ/prefect/pull/4761) ### Fixes - Fix duplicate task runs in `FlowRunView.get_all_task_runs` - [#4774](https://github.com/PrefectHQ/prefect/pull/4774) - Fix zombie processes from exited heartbeats - [#4733](https://github.com/PrefectHQ/prefect/pull/4733) +- Missing `auth_file` directory is created when saving credentials - [#4774](https://github.com/PrefectHQ/prefect/pull/4792) ### Task Library diff --git a/changes/pr4736.yaml b/changes/pr4736.yaml deleted file mode 100644 index e50dfc1fe8ab..000000000000 --- a/changes/pr4736.yaml +++ /dev/null @@ -1,3 +0,0 @@ - -enhancement: - - "Update flow run heartbeats to be robust to exceptions - [#4736](https://github.com/PrefectHQ/prefect/pull/4736)" diff --git a/changes/pr4761.yaml b/changes/pr4761.yaml deleted file mode 100644 index 71968bd2300d..000000000000 --- a/changes/pr4761.yaml +++ /dev/null @@ -1,3 +0,0 @@ - -enhancement: - - "Allow `prefect build/register` paths to contain globs for recursion - [#4761](https://github.com/PrefectHQ/prefect/pull/4761)" diff --git a/changes/pr4792.yaml b/changes/pr4792.yaml deleted file mode 100644 index abe81c24739a..000000000000 --- a/changes/pr4792.yaml +++ /dev/null @@ -1,5 +0,0 @@ -fix: - - "Missing auth_file directory is handled properly - [#4774](https://github.com/PrefectHQ/prefect/pull/4792)" - -contributor: - - "[Pawel Janowski](https://github.com/pjanowski)" diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 7d36fb687468..c17e39732020 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -80,7 +80,7 @@ module.exports = { { text: 'API Reference', items: [ - { text: 'Latest (0.15.1)', link: '/api/latest/' }, + { text: 'Latest (0.15.2)', link: '/api/latest/' }, { text: '0.14.22', link: '/api/0.14.22/' }, { text: '0.13.19', link: '/api/0.13.19/' }, { text: '0.12.6', link: '/api/0.12.6/' },