diff --git a/CHANGELOG.md b/CHANGELOG.md index b54611b2f..db2af3263 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,12 +13,26 @@ accidentally triggering the load of a previous DB version.** * #5253 Make data node command execution interruptible **Bugfixes** -* #4804 Skip bucketing when start or end of refresh job is null * #4926 Fix corruption when inserting into compressed chunks * #5218 Add role-level security to job error log * #5214 Fix use of prepared statement in async module + +## 2.9.3 (2023-02-03) + +This release contains bug fixes since the 2.9.2 release. +This release is high priority for upgrade. We strongly recommend that you +upgrade as soon as possible. + +**Bugfixes** +* #4804 Skip bucketing when start or end of refresh job is null +* #5108 Fix column ordering in compressed table index not following the order of a multi-column segment by definition +* #5187 Don't enable clang-tidy by default +* #5255 Fix year not being considered as a multiple of day/month in hierarchical continuous aggregates * #5259 Lock down search_path in SPI calls -* #5255 Fix year not multiple of day/month in nested CAgg + +**Thanks** +* @ssmoss for reporting issues on continuous aggregates +* @jaskij for reporting the compliation issue that occurred with clang ## 2.9.2 (2023-01-26) diff --git a/sql/CMakeLists.txt b/sql/CMakeLists.txt index 51dc8981e..aa9a3e40d 100644 --- a/sql/CMakeLists.txt +++ b/sql/CMakeLists.txt @@ -42,7 +42,8 @@ set(MOD_FILES 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.1--2.9.2.sql) + updates/2.9.1--2.9.2.sql + updates/2.9.2--2.9.3.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.2--2.9.3.sql b/sql/updates/2.9.2--2.9.3.sql new file mode 100644 index 000000000..e69de29bb diff --git a/version.config b/version.config index 6b69fdb69..6b0bb2ae8 100644 --- a/version.config +++ b/version.config @@ -1,3 +1,3 @@ version = 2.10.0-dev -update_from_version = 2.9.2 +update_from_version = 2.9.3 downgrade_to_version = 2.9.2