Skip to content

Commit

Permalink
Release 2.9.1
Browse files Browse the repository at this point in the history
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
  • Loading branch information
svenklemm committed Dec 23, 2022
1 parent d3cffdf commit b064b2c
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 7 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@
`psql` with the `-X` flag to prevent any `.psqlrc` commands from
accidentally triggering the load of a previous DB version.**

## 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)

This release adds major new features since the 2.8.1 release.
Expand Down
8 changes: 5 additions & 3 deletions sql/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,12 @@ 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
set(CURRENT_REV_FILE 2.9.0--2.8.1.sql)
set(CURRENT_REV_FILE 2.9.1--2.9.0.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 @@ -63,7 +64,8 @@ set(OLD_REV_FILES
2.7.2--2.7.1.sql
2.8.0--2.7.2.sql
2.8.1--2.8.0.sql
2.9.0--2.8.1.sql)
2.9.0--2.8.1.sql
2.9.1--2.9.0.sql)

set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
set(LOADER_PATHNAME "$libdir/timescaledb")
Expand Down
1 change: 1 addition & 0 deletions sql/updates/2.9.0--2.9.1.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GRANT SELECT ON _timescaledb_internal.job_errors to PUBLIC;
Empty file added sql/updates/2.9.1--2.9.0.sql
Empty file.
1 change: 0 additions & 1 deletion sql/updates/latest-dev.sql
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
GRANT SELECT ON _timescaledb_internal.job_errors to PUBLIC;
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.0
update_from_version = 2.8.1
downgrade_to_version = 2.8.1
version = 2.9.1
update_from_version = 2.9.0
downgrade_to_version = 2.9.0

0 comments on commit b064b2c

Please sign in to comment.