From 2d6176ee92291320b714551ae14ed1318ab5228a Mon Sep 17 00:00:00 2001 From: Sven Klemm Date: Mon, 24 Aug 2020 17:40:07 +0200 Subject: [PATCH] Release 1.7.3 This maintenance release contains bugfixes since the 1.7.2 release. We deem it high priority for upgrading. In particular the fixes contained in this maintenance release address bugs in compression, drop_chunks and the background worker scheduler. **Bugfixes** * #2059 Improve infering start and stop arguments from gapfill query * #2067 Support moving compressed chunks * #2068 Apply SET TABLESPACE for compressed chunks * #2090 Fix index creation with IF NOT EXISTS for existing indexes * #2092 Fix delete on tables involving hypertables with compression * #2164 Fix telemetry installed_time format * #2184 Fix background worker scheduler memory consumption * #2222 Fix `negative bitmapset member not allowed` in decompression * #2255 Propagate privileges from hypertables to chunks * #2256 Fix segfault in chunk_append with space partitioning * #2259 Fix recursion in cache processing * #2261 Lock dimension slice tuple when scanning **Thanks** * @akamensky for reporting an issue with drop_chunks and ChunkAppend with space partitioning * @dewetburger430 for reporting an issue with setting tablespace for compressed chunks * @fvannee for reporting an issue with cache invalidation * @nexces for reporting an issue with ChunkAppend on space-partitioned hypertables * @PichetGoulu for reporting an issue with index creation and IF NOT EXISTS * @sezaru for reporting an issue with background worker scheduler memory consumption --- CHANGELOG.md | 24 ++++++++++++++++++++++-- sql/CMakeLists.txt | 1 + version.config | 2 +- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39be079c45d..91d127f5c8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,15 +4,35 @@ `psql` with the `-X` flag to prevent any `.psqlrc` commands from accidentally triggering the load of a previous DB version.** -## Unreleased +## 1.7.3 (2020-07-27) + +This maintenance release contains bugfixes since the 1.7.2 release. We deem it high +priority for upgrading. + +In particular the fixes contained in this maintenance release address bugs in compression, +drop_chunks and the background worker scheduler. **Bugfixes** +* #2059 Improve infering start and stop arguments from gapfill query +* #2067 Support moving compressed chunks +* #2068 Apply SET TABLESPACE for compressed chunks * #2090 Fix index creation with IF NOT EXISTS for existing indexes * #2092 Fix delete on tables involving hypertables with compression +* #2164 Fix telemetry installed_time format +* #2184 Fix background worker scheduler memory consumption * #2222 Fix `negative bitmapset member not allowed` in decompression +* #2255 Propagate privileges from hypertables to chunks +* #2256 Fix segfault in chunk_append with space partitioning +* #2259 Fix recursion in cache processing +* #2261 Lock dimension slice tuple when scanning **Thanks** +* @akamensky for reporting an issue with drop_chunks and ChunkAppend with space partitioning +* @dewetburger430 for reporting an issue with setting tablespace for compressed chunks +* @fvannee for reporting an issue with cache invalidation +* @nexces for reporting an issue with ChunkAppend on space-partitioned hypertables * @PichetGoulu for reporting an issue with index creation and IF NOT EXISTS +* @sezaru for reporting an issue with background worker scheduler memory consumption ## 1.7.2 (2020-07-07) @@ -388,7 +408,7 @@ or in this [tutorial](https://docs.timescale.com/latest/tutorials/compression-tu * @dhyun-obsec for reporting an issue with pg_restore * @rhaymo for reporting an issue with interpolate * @optijon for reporting an issue with locf treat_null_as_missing -* @favnee for reporting an issue with runtime exclusion +* @fvannee for reporting an issue with runtime exclusion * @Lectem for reporting an issue with histograms * @rogerdwan for reporting an issue with BGW rescheduling * @od0 for reporting an issue with alter_job_schedule diff --git a/sql/CMakeLists.txt b/sql/CMakeLists.txt index bf30f7fa679..d1bc6ff9bb1 100644 --- a/sql/CMakeLists.txt +++ b/sql/CMakeLists.txt @@ -93,6 +93,7 @@ set(MOD_FILES updates/1.6.1--1.7.0.sql updates/1.7.0--1.7.1.sql updates/1.7.1--1.7.2.sql + updates/1.7.2--1.7.3.sql ) set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}") diff --git a/version.config b/version.config index b09fca01e9f..e57ed45e556 100644 --- a/version.config +++ b/version.config @@ -1,2 +1,2 @@ version = 2.0.0-dev -update_from_version = 1.7.2 +update_from_version = 1.7.3