Skip to content

Commit

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

**Bugfixes**
* #6113 Fix planner distributed table count
* #6117 Avoid decompressing batches using an empty slot
* #6123 Fix concurrency errors in OSM API
* #6142 Do not throw an error when deprecation GUC cannot be read

**Thanks**
* @symbx for reporting a crash when selecting from empty hypertables
  • Loading branch information
konskov committed Oct 10, 2023
1 parent cfddde9 commit c93fadd
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 8 deletions.
1 change: 0 additions & 1 deletion .unreleased/PR_6117

This file was deleted.

3 changes: 0 additions & 3 deletions .unreleased/pr_6113

This file was deleted.

1 change: 0 additions & 1 deletion .unreleased/pr_6142

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.12.1 (2023-10-11)

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

**Bugfixes**
* #6113 Fix planner distributed table count
* #6117 Avoid decompressing batches using an empty slot
* #6123 Fix concurrency errors in OSM API
* #6142 do not throw an error when deprecation GUC cannot be read
**Thanks**
* @symbx for reporting a crash when selecting from empty hypertables

## 2.12.0 (2023-09-27)

This release contains performance improvements for compressed hypertables
Expand Down
8 changes: 5 additions & 3 deletions sql/CMakeLists.txt
Expand Up @@ -38,11 +38,12 @@ set(MOD_FILES
updates/2.10.3--2.11.0.sql
updates/2.11.0--2.11.1.sql
updates/2.11.1--2.11.2.sql
updates/2.11.2--2.12.0.sql)
updates/2.11.2--2.12.0.sql
updates/2.12.0--2.12.1.sql)

# The downgrade file to generate a downgrade script for the current version, as
# specified in version.config
set(CURRENT_REV_FILE 2.12.0--2.11.2.sql)
set(CURRENT_REV_FILE 2.12.1--2.12.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 Down Expand Up @@ -72,7 +73,8 @@ set(OLD_REV_FILES
2.11.0--2.10.3.sql
2.11.1--2.11.0.sql
2.11.2--2.11.1.sql
2.12.0--2.11.2.sql)
2.12.0--2.11.2.sql
2.12.1--2.12.0.sql)

set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
set(LOADER_PATHNAME "$libdir/timescaledb")
Expand Down
Empty file added sql/updates/2.12.0-2.12.1.sql
Empty file.
Empty file added sql/updates/2.12.1--2.12.0.sql
Empty file.

0 comments on commit c93fadd

Please sign in to comment.