Skip to content

Commit

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

**Features**
* #5679 Teach loader to load OSM extension

**Bugfixes**
* #5705 Scheduler accidentally getting killed when calling `delete_job`
* #5742 Fix Result node handling with ConstraintAwareAppend on
  compressed chunks
* #5750 Ensure tlist is present in decompress chunk plan
* #5754 Fixed handling of NULL values in bookend_sfunc
* #5798 Fixed batch look ahead in compressed sorted merge
* #5804 Mark cagg_watermark function as PARALLEL RESTRICTED
* #5807 Copy job config JSONB structure into current MemoryContext
* #5824 Improve continuous aggregate query chunk exclusion

**Thanks**
* @JamieD9 for reporting an issue with a wrong result ordering
* @xvaara for reporting an issue with Result node handling in
  ConstraintAwareAppend
  • Loading branch information
jnidzwetzki committed Jun 28, 2023
1 parent a74e785 commit c2b1bc5
Show file tree
Hide file tree
Showing 14 changed files with 31 additions and 20 deletions.
1 change: 0 additions & 1 deletion .unreleased/bugfix_5705

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

4 changes: 0 additions & 4 deletions .unreleased/bugfix_5798

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
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.11.1 (2023-06-29)

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

**Features**
* #5679 Update the loader to add support for the OSM extension (used for data tiering on [Timescale](https://www.timescale.com/))

**Bugfixes**
* #5705 Scheduler accidentally getting killed when calling `delete_job`
* #5742 Fix Result node handling with ConstraintAwareAppend on compressed chunks
* #5750 Ensure tlist is present in decompress chunk plan
* #5754 Fixed handling of NULL values in bookend_sfunc
* #5798 Fixed batch look ahead in compressed sorted merge
* #5804 Mark cagg_watermark function as PARALLEL RESTRICTED
* #5807 Copy job config JSONB structure into current MemoryContext
* #5824 Improve continuous aggregate query chunk exclusion

**Thanks**
* @JamieD9 for reporting an issue with a wrong result ordering
* @xvaara for reporting an issue with Result node handling in ConstraintAwareAppend


## 2.11.0 (2023-05-12)

This release contains new features and bug fixes since the 2.10.3 release.
Expand Down
8 changes: 5 additions & 3 deletions sql/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,12 @@ set(MOD_FILES
updates/2.10.0--2.10.1.sql
updates/2.10.1--2.10.2.sql
updates/2.10.2--2.10.3.sql
updates/2.10.3--2.11.0.sql)
updates/2.10.3--2.11.0.sql
updates/2.11.0--2.11.1.sql)

# The downgrade file to generate a downgrade script for the current version, as
# specified in version.config
set(CURRENT_REV_FILE 2.11.0--2.10.3.sql)
set(CURRENT_REV_FILE 2.11.1--2.11.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 @@ -79,7 +80,8 @@ set(OLD_REV_FILES
2.10.1--2.10.0.sql
2.10.2--2.10.1.sql
2.10.3--2.10.2.sql
2.11.0--2.10.3.sql)
2.11.0--2.10.3.sql
2.11.1--2.11.0.sql)

set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
set(LOADER_PATHNAME "$libdir/timescaledb")
Expand Down
Empty file added sql/updates/2.11.0--2.11.1.sql
Empty file.
Empty file added sql/updates/2.11.1--2.11.0.sql
Empty file.
6 changes: 3 additions & 3 deletions version.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = 2.11.0
update_from_version = 2.10.3
downgrade_to_version = 2.10.3
version = 2.11.1
update_from_version = 2.11.0
downgrade_to_version = 2.11.0

0 comments on commit c2b1bc5

Please sign in to comment.