mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-16 18:43:18 +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** * #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
This commit is contained in:
parent
0a3615fc70
commit
93667df7d8
12
CHANGELOG.md
12
CHANGELOG.md
@ -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
|
||||
|
1
sql/updates/2.9.0--2.9.1.sql
Normal file
1
sql/updates/2.9.0--2.9.1.sql
Normal file
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user