mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-14 01:10:37 +08:00
Release 2.11.2
This release contains bug fixes since the 2.11.1 release. We recommend that you upgrade at the next available opportunity. **Features** * #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
This commit is contained in:
parent
b96d170921
commit
44eab9cf9b
@ -1,3 +0,0 @@
|
||||
Fixes: #5906 Fix quoting owners in sql scripts.
|
||||
|
||||
Thanks: @mrksngl
|
@ -1 +0,0 @@
|
||||
Implements: #5923 Feature flags for TimescaleDB features
|
@ -1 +0,0 @@
|
||||
Fixes: #5774 Fixed two bugs in decompression sorted merge code
|
@ -1 +0,0 @@
|
||||
Fixes: #5786 Ensure pg_config --cppflags are passed
|
@ -1 +0,0 @@
|
||||
Fixes: #5912 Fix crash in 1-step integer policy creation
|
19
CHANGELOG.md
19
CHANGELOG.md
@ -4,6 +4,23 @@
|
||||
`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.1 release.
|
||||
We recommend that you upgrade at the next available opportunity.
|
||||
|
||||
**Features**
|
||||
* #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.
|
||||
@ -72,12 +89,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)
|
||||
|
@ -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
|
||||
|
0
sql/updates/2.11.1--2.11.2.sql
Normal file
0
sql/updates/2.11.1--2.11.2.sql
Normal file
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user