diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ab4988420c..24da7256cb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,12 +7,26 @@ accidentally triggering the load of a previous DB version.** ## Unreleased **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-06) + +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-27) diff --git a/sql/CMakeLists.txt b/sql/CMakeLists.txt index 54a3dbf4bba..e648eeba014 100644 --- a/sql/CMakeLists.txt +++ b/sql/CMakeLists.txt @@ -42,11 +42,12 @@ 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 -set(CURRENT_REV_FILE 2.9.2--2.9.1.sql) +set(CURRENT_REV_FILE 2.9.3--2.9.2.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. @@ -67,7 +68,8 @@ set(OLD_REV_FILES 2.8.1--2.8.0.sql 2.9.0--2.8.1.sql 2.9.1--2.9.0.sql - 2.9.2--2.9.1.sql) + 2.9.2--2.9.1.sql + 2.9.3--2.9.2.sql) set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}") set(LOADER_PATHNAME "$libdir/timescaledb") 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 00000000000..e69de29bb2d diff --git a/sql/updates/2.9.3--2.9.2.sql b/sql/updates/2.9.3--2.9.2.sql new file mode 100644 index 00000000000..e69de29bb2d diff --git a/version.config b/version.config index 1d828a88bde..e66140f7883 100644 --- a/version.config +++ b/version.config @@ -1,3 +1,3 @@ -version = 2.9.2 -update_from_version = 2.9.1 -downgrade_to_version = 2.9.1 \ No newline at end of file +version = 2.9.3 +update_from_version = 2.9.2 +downgrade_to_version = 2.9.2