diff --git a/CHANGELOG.md b/CHANGELOG.md index a47074b48fe..b8b384a94fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,19 @@ `psql` with the `-X` flag to prevent any `.psqlrc` commands from accidentally triggering the load of a previous DB version.** -## Unreleased +## 2.4.1 (2021-08-19) +This release contains bug fixes since the 2.4.0 release. + +We deem it high priority to upgrade since it is needed to support +PostgreSQL 12.8 and 13.4. **Bugfixes** * #3430 Fix havingqual processing for continuous aggregates +* #3468 Disable tests by default if tools are not found +* #3462 Fix crash while tracking alter table commands +* #3489 Fix continuous agg bgw job failure for PG 12.8 and 13.4 +* #3494 Improve error message when adding data nodes **Thanks** * @brianbenns for reporting a segfault with continuous aggregates diff --git a/sql/CMakeLists.txt b/sql/CMakeLists.txt index 8f0f9e7e63c..78720d7dbe7 100644 --- a/sql/CMakeLists.txt +++ b/sql/CMakeLists.txt @@ -27,7 +27,8 @@ set(MOD_FILES updates/2.2.0--2.2.1.sql updates/2.2.1--2.3.0.sql updates/2.3.0--2.3.1.sql - updates/2.3.1--2.4.0.sql) + updates/2.3.1--2.4.0.sql + updates/2.4.0--2.4.1.sql) # Files for downgrade scripts. This should only include files for downgrade to # previous version since we do not support skipping versions when downgrading diff --git a/version.config b/version.config index dff041d42e8..c56947b3fb3 100644 --- a/version.config +++ b/version.config @@ -1,3 +1,3 @@ version = 2.5.0-dev -update_from_version = 2.4.0 +update_from_version = 2.4.1 downgrade_to_version = 2.4.0