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**
* timescale#5679 Teach loader to load OSM extension

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

**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 27, 2023
1 parent 33a3e10 commit b203e09
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 2 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,28 @@
`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 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

**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
3 changes: 2 additions & 1 deletion sql/CMakeLists.txt
Expand Up @@ -48,7 +48,8 @@ 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
Expand Down
Empty file added sql/updates/2.11.0--2.11.1.sql
Empty file.
2 changes: 1 addition & 1 deletion version.config
@@ -1,3 +1,3 @@
version = 2.12.0-dev
update_from_version = 2.11.0
update_from_version = 2.11.1
downgrade_to_version = 2.11.0

0 comments on commit b203e09

Please sign in to comment.