Skip to content

Commit

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

**Bugfixes**
* timescale#6365 Use numrows_pre_compression in approximate row count
* timescale#6377 Use processed group clauses in PG16
* timescale#6384 Change bgw_log_level to use PGC_SUSET
* timescale#6393 Disable vectorized sum for expressions.
* timescale#6408 Fix groupby pathkeys for gapfill in PG16
* timescale#6428 Fix index matching during DML decompression
* timescale#6439 Fix compressed chunk permission handling on PG16
* timescale#6443 Fix lost concurrent CAgg updates
* timescale#6454 Fix unique expression indexes on compressed chunks
* timescale#6465 Fix use of freed path in decompression sort logic

**Thanks**
* @MA-MacDonald for reporting an issue with gapfill in PG16
* @aarondglover for reporting an issue with unique expression indexes on compressed chunks
* @adriangb for reporting an issue with security barrier views on pg16
  • Loading branch information
jnidzwetzki committed Jan 3, 2024
1 parent c8b0f83 commit 3bf2160
Show file tree
Hide file tree
Showing 15 changed files with 28 additions and 19 deletions.
1 change: 0 additions & 1 deletion .unreleased/fix_6365

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

23 changes: 23 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,29 @@
`psql` with the `-X` flag to prevent any `.psqlrc` commands from
accidentally triggering the load of a previous DB version.**

## 2.13.1 (2024-01-04)

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

**Bugfixes**
* #6365 Use numrows_pre_compression in approximate row count
* #6377 Use processed group clauses in PG16
* #6384 Change bgw_log_level to use PGC_SUSET
* #6393 Disable vectorized sum for expressions.
* #6405 Read CAgg watermark from materialized data
* #6408 Fix groupby pathkeys for gapfill in PG16
* #6428 Fix index matching during DML decompression
* #6439 Fix compressed chunk permission handling on PG16
* #6443 Fix lost concurrent CAgg updates
* #6454 Fix unique expression indexes on compressed chunks
* #6465 Fix use of freed path in decompression sort logic

**Thanks**
* @MA-MacDonald for reporting an issue with gapfill in PG16
* @aarondglover for reporting an issue with unique expression indexes on compressed chunks
* @adriangb for reporting an issue with security barrier views on pg16

## 2.13.0 (2023-11-28)

This release contains performance improvements, an improved hypertable DDL API
Expand Down
4 changes: 2 additions & 2 deletions cmake/GenerateScripts.cmake
Expand Up @@ -185,9 +185,9 @@ function(generate_downgrade_script)
# Save the current PROJECT_VERSION_MOD
set(SAVED_PROJECT_VERSION_MOD ${PROJECT_VERSION_MOD})
# To use PROJECT_VERSION_MOD variable as a target version in downgrade scripts
# we should set it as the UPDATE_FROM_VERSION because it means the target version
# we should set it as the DOWNGRADE_TO_VERSION because it means the target version
# when executing the downgrade scripts
set(PROJECT_VERSION_MOD ${UPDATE_FROM_VERSION})
set(PROJECT_VERSION_MOD ${DOWNGRADE_TO_VERSION})
generate_script(
VERSION
${_downgrade_TARGET_VERSION}
Expand Down
3 changes: 2 additions & 1 deletion sql/CMakeLists.txt
Expand Up @@ -41,7 +41,8 @@ set(MOD_FILES
updates/2.11.2--2.12.0.sql
updates/2.12.0--2.12.1.sql
updates/2.12.1--2.12.2.sql
updates/2.12.2--2.13.0.sql)
updates/2.12.2--2.13.0.sql
updates/2.13.0--2.13.1.sql)

# The downgrade file to generate a downgrade script for the current version, as
# specified in version.config
Expand Down
Empty file added sql/updates/2.13.0--2.13.1.sql
Empty file.
2 changes: 1 addition & 1 deletion version.config
@@ -1,3 +1,3 @@
version = 2.14.0-dev
update_from_version = 2.13.0
update_from_version = 2.13.1
downgrade_to_version = 2.13.0

0 comments on commit 3bf2160

Please sign in to comment.