From e21bbc926c4b089d79a8dcf29193c06b5d48a108 Mon Sep 17 00:00:00 2001 From: Mats Kindahl Date: Thu, 1 Jul 2021 08:51:52 +0200 Subject: [PATCH] Release 2.3.1 **Bugfixes** * #3279 Add some more randomness to chunk assignment * #3288 Fix failed update with parallel workers * #3300 Improve trigger handling on distributed hypertables * #3304 Remove paths that reference parent relids for compressed chunks * #3305 Fix pull_varnos miscomputation of relids set * #3310 Generate downgrade script * #3314 Fix heap buffer overflow in hypertable expansion * #3317 Fix heap buffer overflow in remote connection cache. * #3327 Make aggregate in caggs fully qualified * #3327 Make aggregates in caggs fully qualified * #3336 Fix pg_init_privs objsubid handling * #3345 Fix SkipScan distinct column identification * #3355 Fix heap buffer overflow when renaming compressed hypertable columns. * #3367 Improve DecompressChunk qual pushdown * #3377 Fix bad use of repalloc **Thanks** * @db-adrian for reporting an issue when accessing cagg view through postgres_fdw * @fncaldas and @pgwhalen for reporting an issue accessing caggs when public is not in search_path * @fvannee, @mglonnro and @ebreijo for reporting an issue with the upgrade script * @fvannee for reporting a performance regression with SkipScan --- CHANGELOG.md | 11 ++++++++++- sql/CMakeLists.txt | 3 ++- sql/updates/2.3.0--2.3.1.sql | 1 + sql/updates/latest-dev.sql | 1 - version.config | 2 +- 5 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 sql/updates/2.3.0--2.3.1.sql diff --git a/CHANGELOG.md b/CHANGELOG.md index 12890cf7a77..acb8353b639 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,14 +4,23 @@ `psql` with the `-X` flag to prevent any `.psqlrc` commands from accidentally triggering the load of a previous DB version.** -## Unreleased +## 2.3.1 (2021-07-05) **Bugfixes** +* #3279 Add some more randomness to chunk assignment +* #3288 Fix failed update with parallel workers +* #3300 Improve trigger handling on distributed hypertables +* #3304 Remove paths that reference parent relids for compressed chunks * #3305 Fix pull_varnos miscomputation of relids set +* #3310 Generate downgrade script +* #3314 Fix heap buffer overflow in hypertable expansion +* #3317 Fix heap buffer overflow in remote connection cache. * #3327 Make aggregates in caggs fully qualified * #3336 Fix pg_init_privs objsubid handling * #3345 Fix SkipScan distinct column identification +* #3355 Fix heap buffer overflow when renaming compressed hypertable columns. * #3367 Improve DecompressChunk qual pushdown +* #3377 Fix bad use of repalloc **Thanks** * @db-adrian for reporting an issue when accessing cagg view through postgres_fdw diff --git a/sql/CMakeLists.txt b/sql/CMakeLists.txt index 959a6f2bad7..e1cdfb8b477 100644 --- a/sql/CMakeLists.txt +++ b/sql/CMakeLists.txt @@ -25,7 +25,8 @@ set(MOD_FILES updates/2.1.0--2.1.1.sql updates/2.1.1--2.2.0.sql updates/2.2.0--2.2.1.sql - updates/2.2.1--2.3.0.sql) + updates/2.2.1--2.3.0.sql + updates/2.3.0--2.3.1.sql) # Files for downgrade scripts. set(REV_FILES) diff --git a/sql/updates/2.3.0--2.3.1.sql b/sql/updates/2.3.0--2.3.1.sql new file mode 100644 index 00000000000..e1152da5fc1 --- /dev/null +++ b/sql/updates/2.3.0--2.3.1.sql @@ -0,0 +1 @@ +DROP FUNCTION IF EXISTS _timescaledb_internal.refresh_continuous_aggregate; diff --git a/sql/updates/latest-dev.sql b/sql/updates/latest-dev.sql index e2fcfab27d6..6be08d7b2d2 100644 --- a/sql/updates/latest-dev.sql +++ b/sql/updates/latest-dev.sql @@ -2,4 +2,3 @@ CREATE SCHEMA IF NOT EXISTS timescaledb_experimental; GRANT USAGE ON SCHEMA timescaledb_experimental TO PUBLIC; DROP FUNCTION IF EXISTS _timescaledb_internal.block_new_chunks; DROP FUNCTION IF EXISTS _timescaledb_internal.allow_new_chunks; -DROP FUNCTION IF EXISTS _timescaledb_internal.refresh_continuous_aggregate; diff --git a/version.config b/version.config index 07b94390b99..c5b132a78cf 100644 --- a/version.config +++ b/version.config @@ -1,4 +1,4 @@ version = 2.4.0-dev -update_from_version = 2.3.0 +update_from_version = 2.3.1 downgrade_to_version = 2.3.0