Skip to content

Commit

Permalink
Release 2.9.3
Browse files Browse the repository at this point in the history
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
  • Loading branch information
lkshminarayanan committed Feb 6, 2023
1 parent c3ad834 commit b88c5a9
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 8 deletions.
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
8 changes: 5 additions & 3 deletions sql/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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")
Expand Down
Empty file added sql/updates/2.9.2--2.9.3.sql
Empty file.
Empty file added sql/updates/2.9.3--2.9.2.sql
Empty file.
6 changes: 3 additions & 3 deletions version.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = 2.9.2
update_from_version = 2.9.1
downgrade_to_version = 2.9.1
version = 2.9.3
update_from_version = 2.9.2
downgrade_to_version = 2.9.2

0 comments on commit b88c5a9

Please sign in to comment.