From 26e9eb521a2082a9bdd4ea05eeede9a56c489cd4 Mon Sep 17 00:00:00 2001 From: Sven Klemm Date: Tue, 2 Jul 2024 17:52:18 +0200 Subject: [PATCH] TimescaleDB 2.15.3 post-release adjustments Adjust CHANGELOG and downgrade scripts for 2.15.3 --- CHANGELOG.md | 3 ++- sql/CMakeLists.txt | 3 ++- sql/updates/2.15.3--2.15.2.sql | 0 version.config | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 sql/updates/2.15.3--2.15.2.sql diff --git a/CHANGELOG.md b/CHANGELOG.md index d9bc9c7f3..149f7ea90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,10 +16,11 @@ After you run `ALTER EXTENSION`, you must run [this SQL script](https://github.c If you are migrating from TimescaleDB v2.15.0, v2.15.1 or v2.15.2, no changes are required. **Bugfixes** +* #7035: Fix the error when acquiring a tuple lock on the OSM chunks on the replica. * #7061: Fix the handling of multiple unique indexes in a compressed INSERT. * #7080: Fix the `corresponding equivalence member not found` error. * #7088: Fix the leaks in the DML functions. -* #7035: Fix the error when acquiring a tuple lock on the OSM chunks on the replica. +* #7091: Fix ORDER BY/GROUP BY expression not found in targetlist on PG16 **Thanks** * @Kazmirchuk for reporting the issue about leaks with the functions in DML. diff --git a/sql/CMakeLists.txt b/sql/CMakeLists.txt index 7eb7fef58..0d7aab152 100644 --- a/sql/CMakeLists.txt +++ b/sql/CMakeLists.txt @@ -79,7 +79,8 @@ set(OLD_REV_FILES 2.14.2--2.14.1.sql 2.15.0--2.14.2.sql 2.15.1--2.15.0.sql - 2.15.2--2.15.1.sql) + 2.15.2--2.15.1.sql + 2.15.3--2.15.2.sql) set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}") set(LOADER_PATHNAME "$libdir/timescaledb") diff --git a/sql/updates/2.15.3--2.15.2.sql b/sql/updates/2.15.3--2.15.2.sql new file mode 100644 index 000000000..e69de29bb diff --git a/version.config b/version.config index 82487689c..7a440c635 100644 --- a/version.config +++ b/version.config @@ -1,3 +1,3 @@ version = 2.16.0-dev update_from_version = 2.15.3 -downgrade_to_version = 2.15.2 +downgrade_to_version = 2.15.3