From 0ea509cc48d06d2de2f0b1406ccf3b03c88fc88c Mon Sep 17 00:00:00 2001 From: Sven Klemm Date: Fri, 15 May 2020 13:17:39 +0200 Subject: [PATCH] Release 1.7.1 This maintenance release contains bugfixes since the 1.7.0 release. We deem it medium priority for upgrading and high priority for users with multiple continuous aggregates. In particular the fixes contained in this maintenance release address bugs in continuous aggregates with real-time aggregation and PostgreSQL 12 support. **Bugfixes** * #1834 Define strerror() for Windows * #1846 Fix segfault on COPY to hypertable * #1850 Fix scheduler failure due to bad next_start_time for jobs * #1851 Fix hypertable expansion for UNION ALL * #1854 Fix reorder policy job to skip compressed chunks * #1861 Fix qual pushdown for compressed hypertables where quals have casts * #1864 Fix issue with subplan selection in parallel ChunkAppend * #1868 Add support for WHERE, HAVING clauses with real time aggregates * #1869 Fix real time aggregate support for multiple continuous aggregates * #1871 Don't rely on timescaledb.restoring for upgrade * #1875 Fix hypertable detection in subqueries * #1884 Fix crash on SELECT WHERE NOT with empty table **Thanks** * @airton-neto for reporting an issue with queries over UNIONs of hypertables * @dhodyn for reporting an issue with UNION ALL queries * @frostwind for reporting an issue with casts in where clauses on compressed hypertables * @fvannee for reporting an issue with hypertable detection in inlined SQL functions and an issue with COPY * @hgiasac for reporting missing where clause with real time aggregates * @louisth for reporting an issue with real-time aggregation and multiple continuous aggregates * @michael-sayapin for reporting an issue with INSERTs and WHERE NOT EXISTS * @olernov for reporting and fixing an issue with compressed chunks in the reorder policy * @pehlert for reporting an issue with pg_upgrade --- CHANGELOG.md | 26 ++++++++++++++++++++------ sql/CMakeLists.txt | 1 + version.config | 2 +- 3 files changed, 22 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45e328231..cb738a90e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,24 +4,38 @@ `psql` with the `-X` flag to prevent any `.psqlrc` commands from accidentally triggering the load of a previous DB version.** -## To be released -We deem it high priority for users with multiple continuous aggregates to update to this release. +## 1.7.1 (2020-05-18) -**Major Features** +This maintenance release contains bugfixes since the 1.7.0 release. We deem it medium +priority for upgrading and high priority for users with multiple continuous aggregates. + +In particular the fixes contained in this maintenance release address bugs in continuous +aggregates with real-time aggregation and PostgreSQL 12 support. **Bugfixes** +* #1834 Define strerror() for Windows +* #1846 Fix segfault on COPY to hypertable * #1850 Fix scheduler failure due to bad next_start_time for jobs +* #1851 Fix hypertable expansion for UNION ALL +* #1854 Fix reorder policy job to skip compressed chunks * #1861 Fix qual pushdown for compressed hypertables where quals have casts * #1864 Fix issue with subplan selection in parallel ChunkAppend * #1868 Add support for WHERE, HAVING clauses with real time aggregates * #1869 Fix real time aggregate support for multiple continuous aggregates +* #1871 Don't rely on timescaledb.restoring for upgrade * #1875 Fix hypertable detection in subqueries +* #1884 Fix crash on SELECT WHERE NOT with empty table **Thanks** -* @frostwind for reporting issue with casts in where clauses on compressed hypertables -* @fvannee for reporting an issue with hypertable detection in inlined SQL functions -* @hgiasac for reporting missing where clause with real time aggregates * @airton-neto for reporting an issue with queries over UNIONs of hypertables +* @dhodyn for reporting an issue with UNION ALL queries +* @frostwind for reporting an issue with casts in where clauses on compressed hypertables +* @fvannee for reporting an issue with hypertable detection in inlined SQL functions and an issue with COPY +* @hgiasac for reporting missing where clause with real time aggregates +* @louisth for reporting an issue with real-time aggregation and multiple continuous aggregates +* @michael-sayapin for reporting an issue with INSERTs and WHERE NOT EXISTS +* @olernov for reporting and fixing an issue with compressed chunks in the reorder policy +* @pehlert for reporting an issue with pg_upgrade ## 1.7.0 (2020-04-16) diff --git a/sql/CMakeLists.txt b/sql/CMakeLists.txt index 087ce5b87..0f6ba0f6a 100644 --- a/sql/CMakeLists.txt +++ b/sql/CMakeLists.txt @@ -112,6 +112,7 @@ set(MOD_FILES updates/1.5.1--1.6.0.sql updates/1.6.0--1.6.1.sql updates/1.6.1--1.7.0.sql + updates/1.7.0--1.7.1.sql ) set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}") diff --git a/version.config b/version.config index 30cec5cc8..e1c876176 100644 --- a/version.config +++ b/version.config @@ -1,2 +1,2 @@ version = 2.0.0-dev -update_from_version = 1.7.0 +update_from_version = 1.7.1