diff --git a/CHANGELOG.md b/CHANGELOG.md index d1b23b5e0d9..d6aeeb139c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,15 +8,26 @@ accidentally triggering the load of a previous DB version.** **Bugfixes** * #4926 Fix corruption when inserting into compressed chunks -* #5114 Fix issue with deleting data node and dropping database -* #5133 Fix CAgg on CAgg using different column order on the original hypertable + +## 2.9.2 (2023-01-26) + +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 **Thanks** -* @ikkala for reporting error when adding column with NULL constraint to compressed hypertable * @salquier-appvizer for reporting error on CAgg on CAgg using different column order on the original hypertable +* @ikkala for reporting error when adding column with NULL constraint to compressed hypertable * @ssmoss, @adbnexxtlab and @ivanzamanov for reporting error on CAgg on CAgg variable bucket size validation +* @ronnyas for reporting a bug "Invalid child of chunk" on specific ctid filtering ## 2.9.1 (2022-12-23) diff --git a/sql/CMakeLists.txt b/sql/CMakeLists.txt index 738eb2b2b10..d58256405bb 100644 --- a/sql/CMakeLists.txt +++ b/sql/CMakeLists.txt @@ -41,7 +41,8 @@ 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 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/version.config b/version.config index e922aadd3e9..e6779ce5e9e 100644 --- a/version.config +++ b/version.config @@ -1,3 +1,3 @@ version = 2.10.0-dev -update_from_version = 2.9.1 +update_from_version = 2.9.2 downgrade_to_version = 2.9.1