1
0
mirror of https://github.com/timescale/timescaledb.git synced 2025-05-16 10:33:27 +08:00

Release 2.9.1

This release contains bug fixes since the 2.9.0 release.
This release is high priority for upgrade. We strongly recommend that you
upgrade as soon as possible.

**Bugfixes**
*  Fix CAgg on CAgg bucket size validation
*  Fix enabling compression on caggs with renamed columns
*  Fix building against PG15 on Windows
*  Fix postgres server restart on background worker exit
*  Fix privileges for job_errors in update script
This commit is contained in:
Sven Klemm 2022-12-23 07:14:25 +01:00 committed by Sven Klemm
parent 0a3615fc70
commit 93667df7d8
5 changed files with 16 additions and 3 deletions

@ -8,7 +8,19 @@ accidentally triggering the load of a previous DB version.**
**Bugfixes**
* #4926 Fix corruption when inserting into compressed chunks
## 2.9.1 (2022-12-23)
This release contains bug fixes since the 2.9.0 release.
This release is high priority for upgrade. We strongly recommend that you
upgrade as soon as possible.
**Bugfixes**
* #5072 Fix CAgg on CAgg bucket size validation
* #5101 Fix enabling compression on caggs with renamed columns
* #5106 Fix building against PG15 on Windows
* #5117 Fix postgres server restart on background worker exit
* #5121 Fix privileges for job_errors in update script
## 2.9.0 (2022-12-15)

@ -40,7 +40,8 @@ set(MOD_FILES
updates/2.7.1--2.7.2.sql
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.8.1--2.9.0.sql
updates/2.9.0--2.9.1.sql)
# The downgrade file to generate a downgrade script for the current version, as
# specified in version.config

@ -0,0 +1 @@
GRANT SELECT ON _timescaledb_internal.job_errors to PUBLIC;

@ -1 +0,0 @@
GRANT SELECT ON _timescaledb_internal.job_errors to PUBLIC;

@ -1,3 +1,3 @@
version = 2.10.0-dev
update_from_version = 2.9.0
update_from_version = 2.9.1
downgrade_to_version = 2.9.0