From 4ba95ce457fb354e1f351fb92289d201f0812eb9 Mon Sep 17 00:00:00 2001 From: Sven Klemm Date: Mon, 7 Sep 2020 21:09:12 +0200 Subject: [PATCH] Release 1.7.4 This maintenance release contains bugfixes since the 1.7.3 release. We deem it high priority for upgrading if TimescaleDB is deployed with replicas (synchronous or asynchronous). In particular the fixes contained in this maintenance release address an issue with running queries on compressed hypertables on standby nodes. **Bugfixes** * #2340 Remove tuple lock on select path --- CHANGELOG.md | 12 ++++++++++++ sql/CMakeLists.txt | 1 + version.config | 2 +- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55ba204fc58..1019a5dc744 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ `psql` with the `-X` flag to prevent any `.psqlrc` commands from accidentally triggering the load of a previous DB version.** +## 1.7.4 (2020-09-07) + +This maintenance release contains bugfixes since the 1.7.3 release. We deem it +high priority for upgrading if TimescaleDB is deployed with replicas (synchronous +or asynchronous). + +In particular the fixes contained in this maintenance release address an issue with +running queries on compressed hypertables on standby nodes. + +**Bugfixes** +* #2340 Remove tuple lock on select path + ## 1.7.3 (2020-07-27) This maintenance release contains bugfixes since the 1.7.2 release. We deem it high diff --git a/sql/CMakeLists.txt b/sql/CMakeLists.txt index d1bc6ff9bb1..9fc107a4acb 100644 --- a/sql/CMakeLists.txt +++ b/sql/CMakeLists.txt @@ -94,6 +94,7 @@ set(MOD_FILES updates/1.7.0--1.7.1.sql updates/1.7.1--1.7.2.sql updates/1.7.2--1.7.3.sql + updates/1.7.3--1.7.4.sql ) set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}") diff --git a/version.config b/version.config index e57ed45e556..0347ded990e 100644 --- a/version.config +++ b/version.config @@ -1,2 +1,2 @@ version = 2.0.0-dev -update_from_version = 1.7.3 +update_from_version = 1.7.4