Skip to content

Commit

Permalink
Release 2.4.1
Browse files Browse the repository at this point in the history
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**
* timescale#3430 Fix havingqual processing for continuous aggregates
* timescale#3468 Disable tests by default if tools are not found
* timescale#3468 Fix crash while tracking alter table commands
* timescale#3494 Improve error message when adding data nodes
* timescale#3498 Fix continuous agg bgw job failure for PG 12.8 and 13.4

**Thanks**
* @brianbenns for reporting a segfault with continuous aggregates
  • Loading branch information
mkindahl committed Aug 19, 2021
1 parent c4eb9b6 commit 0433083
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
* #3468 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
Expand Down
3 changes: 2 additions & 1 deletion sql/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion version.config
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 0433083

Please sign in to comment.