diff --git a/CHANGELOG.md b/CHANGELOG.md index 74e5f2d169c6..cfda66d22e86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## 0.14.17 + +Released on April 27, 2021. + +### Features + +- Add git storage - [#4418](https://github.com/PrefectHQ/prefect/pull/4418) + +### Enhancements + +- Add test coverage for threaded `LocalDaskExecutor` timeouts - [#4217](https://github.com/PrefectHQ/prefect/pull/4217) +- Add environment variable support to UniversalRunConfig - [#4383](https://github.com/PrefectHQ/prefect/pull/4383) +- Adds column name fetching to PostgresFetch task - [#4414](https://github.com/PrefectHQ/prefect/pull/4414) +- Allow external Postgres with `prefect server start` command - [#4424](https://github.com/PrefectHQ/prefect/pull/4424) + +### Fixes + +- Pass reference tasks states instead of task states to terminal_state_handler - [#4409](https://github.com/PrefectHQ/prefect/pull/4409) +- Check for AWS_RETRY_MODE variable before setting default in `ECSAgent` - [#4417](https://github.com/PrefectHQ/prefect/pull/4417) +- Fixed bug from Flow.copy() not copying the slugs dictionary - [#4435](https://github.com/PrefectHQ/prefect/pull/4435) +- Fix compatibility with PyGithub >= 1.55 - [#4440](https://github.com/PrefectHQ/prefect/pull/4440) + +### Contributors + +- [Ben Fogelson](https://github.com/benfogelson) +- [Gabriel MontaƱola](https://github.com/gmontanola) + ## 0.14.16 Released on April 14, 2021. diff --git a/changes/pr4217.yaml b/changes/pr4217.yaml deleted file mode 100644 index f725838bc46b..000000000000 --- a/changes/pr4217.yaml +++ /dev/null @@ -1,3 +0,0 @@ - -enhancement: - - "Add test coverage for threaded `LocalDaskExecutor` timeouts - [#4217](https://github.com/PrefectHQ/prefect/pull/4217)" diff --git a/changes/pr4383.yaml b/changes/pr4383.yaml deleted file mode 100644 index 08d9252c8138..000000000000 --- a/changes/pr4383.yaml +++ /dev/null @@ -1,2 +0,0 @@ -enhancement: - - "Add environment variable support to UniversalRunConfig - [#4383](https://github.com/PrefectHQ/prefect/pull/4383)" diff --git a/changes/pr4409.yaml b/changes/pr4409.yaml deleted file mode 100644 index 18895bf755ce..000000000000 --- a/changes/pr4409.yaml +++ /dev/null @@ -1,2 +0,0 @@ -fix: - - "Pass reference tasks states instead of task states to terminal_state_handler - [#4409](https://github.com/PrefectHQ/prefect/pull/4409)" \ No newline at end of file diff --git a/changes/pr4414.yaml b/changes/pr4414.yaml deleted file mode 100644 index 48e12205eb37..000000000000 --- a/changes/pr4414.yaml +++ /dev/null @@ -1,5 +0,0 @@ -enhancement: - - "Adds column name fetching to PostgresFetch task - [#4414](https://github.com/PrefectHQ/prefect/pull/4414)" - -contributor: - - "[Gabriel MontaƱola](https://github.com/gmontanola)" diff --git a/changes/pr4417.yaml b/changes/pr4417.yaml deleted file mode 100644 index c3d48e694257..000000000000 --- a/changes/pr4417.yaml +++ /dev/null @@ -1,3 +0,0 @@ - -fix: - - "Check for AWS_RETRY_MODE variable before setting default in `ECSAgent` - [#4417](https://github.com/PrefectHQ/prefect/pull/4417)" diff --git a/changes/pr4418.yaml b/changes/pr4418.yaml deleted file mode 100644 index cf7d069f3d25..000000000000 --- a/changes/pr4418.yaml +++ /dev/null @@ -1,2 +0,0 @@ -feature: - - "Add git storage - [#4418](https://github.com/PrefectHQ/prefect/pull/4418)" diff --git a/changes/pr4424.yaml b/changes/pr4424.yaml deleted file mode 100644 index 01345e8e42ac..000000000000 --- a/changes/pr4424.yaml +++ /dev/null @@ -1,2 +0,0 @@ -enhancement: - - "Allow external Postgres with `prefect server start` command - [#4424](https://github.com/PrefectHQ/prefect/pull/4424)" \ No newline at end of file diff --git a/changes/pr4435.yaml b/changes/pr4435.yaml deleted file mode 100644 index 11116dbc8970..000000000000 --- a/changes/pr4435.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# An example changelog entry -# -# 1. Choose one (or more if a PR encompasses multiple changes) of the following headers: -# - feature -# - enhancement -# - task -# - fix -# - deprecation -# - breaking (for breaking changes) -# -# 2. Fill in one (or more) bullet points under the heading, describing the change. -# Markdown syntax may be used. -# -# 3. If you would like to be credited as helping with this release, add a -# contributor section with your name and github username. -# -# Here's an example of a PR that adds an enhancement - -fix: - - "Fixed bug from Flow.copy() not copying the slugs dictionary - [#4435](https://github.com/PrefectHQ/prefect/pull/4435)" - -contributor: - - "[Ben Fogelson](https://github.com/benfogelson)" diff --git a/changes/pr4440.yaml b/changes/pr4440.yaml deleted file mode 100644 index 9b87b8a9365d..000000000000 --- a/changes/pr4440.yaml +++ /dev/null @@ -1,3 +0,0 @@ - -fix: - - "Fix compatibility with PyGithub >= 1.55 - [#4440](https://github.com/PrefectHQ/prefect/pull/4440)" diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index b57f5a5a9384..1b4c1596a9c3 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.16)', link: '/api/latest/' }, + { text: 'Latest (0.14.17)', 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/' },