Skip to content

Commit

Permalink
Release 2.11.2
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#5909 CREATE INDEX ONLY ON hypertable creates index on chunks
* timescale#5923 Feature flags for TimescaleDB features
**Bugfixes**
* timescale#5680 Fix DISTINCT query with JOIN on multiple segmentby columns
* timescale#5774 Fixed two bugs in decompression sorted merge code
* timescale#5786 Ensure pg_config --cppflags are passed
* timescale#5906 Fix quoting owners in sql scripts.
* timescale#5912 Fix crash in 1-step integer policy creation
**Thanks**
* @mrksngl for submitting a PR to fix extension upgrade scripts
* @ericdevries for reporting an issue with DISTINCT queries using
segmentby columns of compressed hypertable
  • Loading branch information
konskov committed Aug 9, 2023
1 parent 2eb0a38 commit 863ad74
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 10 deletions.
3 changes: 0 additions & 3 deletions .unreleased/PR_5906

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@
`psql` with the `-X` flag to prevent any `.psqlrc` commands from
accidentally triggering the load of a previous DB version.**

## 2.11.2 (2023-08-09)

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

**Features**
* #5909 CREATE INDEX ONLY ON hypertable creates index on chunks
* #5923 Feature flags for TimescaleDB features
**Bugfixes**
* #5680 Fix DISTINCT query with JOIN on multiple segmentby columns
* #5774 Fixed two bugs in decompression sorted merge code
* #5786 Ensure pg_config --cppflags are passed
* #5906 Fix quoting owners in sql scripts.
* #5912 Fix crash in 1-step integer policy creation
**Thanks**
* @mrksngl for submitting a PR to fix extension upgrade scripts
* @ericdevries for reporting an issue with DISTINCT queries using segmentby columns of compressed hypertable

## 2.11.1 (2023-06-29)

This release contains bug fixes since the 2.11.0 release.
Expand Down Expand Up @@ -72,12 +90,10 @@ This release includes these noteworthy features:
* #5642 Fix ALTER TABLE SET with normal tables
* #5666 Reduce memory usage for distributed analyze
* #5668 Fix subtransaction resource owner
* #5680 Fix DISTINCT query with JOIN on multiple segmentby columns

**Thanks**
* @kovetskiy and @DZDomi for reporting peformance regression in Realtime Continuous Aggregates
* @ollz272 for reporting an issue with interpolate error messages
* @ericdevries for reporting an issue with DISTINCT queries using segmentby columns of compressed hypertable


## 2.10.3 (2023-04-26)
Expand Down
3 changes: 2 additions & 1 deletion sql/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ set(MOD_FILES
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.11.0--2.11.1.sql)
updates/2.11.0--2.11.1.sql
updates/2.11.1--2.11.2.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.1--2.11.2.sql
Empty file.
2 changes: 1 addition & 1 deletion version.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = 2.12.0-dev
update_from_version = 2.11.1
update_from_version = 2.11.2
downgrade_to_version = 2.11.1

0 comments on commit 863ad74

Please sign in to comment.