Skip to content

Commit

Permalink
Release 2.14.2
Browse files Browse the repository at this point in the history
This release contains bug fixes since the 2.14.1 release.
We recommend that you upgrade at the next available opportunity.

**Bugfixes**
* #6655 Fix segfault in cagg_validate_query
* #6660 Fix refresh on empty CAgg with variable bucket
* #6670 Don't try to compress osm chunks

**Thanks**
* @kav23alex for reporting a segfault in cagg_validate_query
  • Loading branch information
svenklemm committed Feb 20, 2024
1 parent 287ff1c commit 8f27a70
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 9 deletions.
1 change: 0 additions & 1 deletion .unreleased/bugfix_6660

This file was deleted.

2 changes: 0 additions & 2 deletions .unreleased/pr_6655

This file was deleted.

13 changes: 13 additions & 0 deletions CHANGELOG.md
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.14.2 (2024-02-20)

This release contains bug fixes since the 2.14.1 release.
We recommend that you upgrade at the next available opportunity.

**Bugfixes**
* #6655 Fix segfault in cagg_validate_query
* #6660 Fix refresh on empty CAgg with variable bucket
* #6670 Don't try to compress osm chunks

**Thanks**
* @kav23alex for reporting a segfault in cagg_validate_query

## 2.14.1 (2024-02-14)

This release contains bug fixes since the 2.14.0 release.
Expand Down
8 changes: 5 additions & 3 deletions sql/CMakeLists.txt
Expand Up @@ -44,11 +44,12 @@ set(MOD_FILES
updates/2.12.2--2.13.0.sql
updates/2.13.0--2.13.1.sql
updates/2.13.1--2.14.0.sql
updates/2.14.0--2.14.1.sql)
updates/2.14.0--2.14.1.sql
updates/2.14.1--2.14.2.sql)

# The downgrade file to generate a downgrade script for the current version, as
# specified in version.config
set(CURRENT_REV_FILE 2.14.1--2.14.0.sql)
set(CURRENT_REV_FILE 2.14.2--2.14.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 Down Expand Up @@ -84,7 +85,8 @@ set(OLD_REV_FILES
2.13.0--2.12.2.sql
2.13.1--2.13.0.sql
2.14.0--2.13.1.sql
2.14.1--2.14.0.sql)
2.14.1--2.14.0.sql
2.14.2--2.14.1.sql)

set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
set(LOADER_PATHNAME "$libdir/timescaledb")
Expand Down
Empty file added sql/updates/2.14.1--2.14.2.sql
Empty file.
Empty file added sql/updates/2.14.2--2.14.1.sql
Empty file.
6 changes: 3 additions & 3 deletions version.config
@@ -1,3 +1,3 @@
version = 2.14.1
update_from_version = 2.14.0
downgrade_to_version = 2.14.0
version = 2.14.2
update_from_version = 2.14.1
downgrade_to_version = 2.14.1

0 comments on commit 8f27a70

Please sign in to comment.