From 3314810fd5f336f6b93847432eef293989975be2 Mon Sep 17 00:00:00 2001 From: Bharathy Date: Mon, 23 Jan 2023 15:05:30 +0530 Subject: [PATCH] Release 2.9.2 This release contains bug fixes since the 2.9.1 release. We recommend that you upgrade at the next available opportunity. **Bugfixes** * #5114 Fix issue with deleting data node and dropping the database on multi-node * #5133 Fix creating a CAgg on a CAgg where the time column is in a different order of the original hypertable * #5152 Fix adding column with NULL constraint to compressed hypertable * #5170 Fix CAgg on CAgg variable bucket size validation * #5180 Fix default data node availability status on multi-node * #5181 Fix ChunkAppend and ConstraintAwareAppend with TidRangeScan child subplan * #5193 Fix repartition behavior when attaching data node on multi-node --- CHANGELOG.md | 2 +- sql/CMakeLists.txt | 8 +++++--- sql/updates/2.9.1--2.9.2.sql | 0 sql/updates/2.9.2--2.9.1.sql | 0 version.config | 6 +++--- 5 files changed, 9 insertions(+), 7 deletions(-) create mode 100644 sql/updates/2.9.1--2.9.2.sql create mode 100644 sql/updates/2.9.2--2.9.1.sql diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e4a5c21620..70d9c747758 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ accidentally triggering the load of a previous DB version.** **Bugfixes** * #4926 Fix corruption when inserting into compressed chunks -## 2.9.2 (2023-12-26) +## 2.9.2 (2023-01-27) This release contains bug fixes since the 2.9.1 release. We recommend that you upgrade at the next available opportunity. diff --git a/sql/CMakeLists.txt b/sql/CMakeLists.txt index b0d02c040ae..54a3dbf4bba 100644 --- a/sql/CMakeLists.txt +++ b/sql/CMakeLists.txt @@ -41,11 +41,12 @@ set(MOD_FILES updates/2.7.2--2.8.0.sql updates/2.8.0--2.8.1.sql updates/2.8.1--2.9.0.sql - updates/2.9.0--2.9.1.sql) + updates/2.9.0--2.9.1.sql + updates/2.9.1--2.9.2.sql) # The downgrade file to generate a downgrade script for the current version, as # specified in version.config -set(CURRENT_REV_FILE 2.9.1--2.9.0.sql) +set(CURRENT_REV_FILE 2.9.2--2.9.1.sql) # Files for generating old downgrade scripts. This should only include files for # downgrade from one version to its previous version since we do not support # skipping versions when downgrading. @@ -65,7 +66,8 @@ set(OLD_REV_FILES 2.8.0--2.7.2.sql 2.8.1--2.8.0.sql 2.9.0--2.8.1.sql - 2.9.1--2.9.0.sql) + 2.9.1--2.9.0.sql + 2.9.2--2.9.1.sql) set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}") set(LOADER_PATHNAME "$libdir/timescaledb") diff --git a/sql/updates/2.9.1--2.9.2.sql b/sql/updates/2.9.1--2.9.2.sql new file mode 100644 index 00000000000..e69de29bb2d diff --git a/sql/updates/2.9.2--2.9.1.sql b/sql/updates/2.9.2--2.9.1.sql new file mode 100644 index 00000000000..e69de29bb2d diff --git a/version.config b/version.config index 2fa90d08f80..1d828a88bde 100644 --- a/version.config +++ b/version.config @@ -1,3 +1,3 @@ -version = 2.9.1 -update_from_version = 2.9.0 -downgrade_to_version = 2.9.0 +version = 2.9.2 +update_from_version = 2.9.1 +downgrade_to_version = 2.9.1 \ No newline at end of file