Skip to content

Commit

Permalink
Release 2.9.2
Browse files Browse the repository at this point in the history
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
  • Loading branch information
sb230132 committed Jan 24, 2023
1 parent 03a510f commit 3314810
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
8 changes: 5 additions & 3 deletions sql/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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")
Expand Down
Empty file added sql/updates/2.9.1--2.9.2.sql
Empty file.
Empty file added sql/updates/2.9.2--2.9.1.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.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

0 comments on commit 3314810

Please sign in to comment.