mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-14 09:37:00 +08:00
Release 2.17.1 on main
This release contains performance improvements and bug fixes since the 2.17.0 release. We recommend that you upgrade at the next available opportunity. **Features** * #7360 Add chunk skipping GUC **Bugfixes** * #7335 Change log level used in compression * #7342 Fix collation for in-memory tuple filtering **Thanks** * @gmilamjr for reporting an issue with the log level of compression messages * @hackbnw for reporting an issue with collation during tuple filtering
This commit is contained in:
parent
d83383615a
commit
3c707bf28a
@ -1,2 +0,0 @@
|
||||
Fixes: #7335 Change log level used in compression
|
||||
Thanks: @gmilamjr for reporting an issue with the log level of compression messages
|
@ -1,2 +0,0 @@
|
||||
Fixes: #7342 Fix collation for in-memory tuple filtering
|
||||
Thanks: @hackbnw for reporting an issue with collation during tuple filtering
|
@ -1 +0,0 @@
|
||||
Implements: #7360 Add chunk skipping GUC
|
16
CHANGELOG.md
16
CHANGELOG.md
@ -4,6 +4,22 @@
|
||||
`psql` with the `-X` flag to prevent any `.psqlrc` commands from
|
||||
accidentally triggering the load of a previous DB version.**
|
||||
|
||||
## 2.17.1 (2024-10-21)
|
||||
|
||||
This release contains performance improvements and bug fixes since
|
||||
the 2.17.0 release. We recommend that you upgrade at the next
|
||||
available opportunity.
|
||||
|
||||
**Features**
|
||||
* #7360 Add chunk skipping GUC
|
||||
|
||||
**Bugfixes**
|
||||
* #7335 Change log level used in compression
|
||||
* #7342 Fix collation for in-memory tuple filtering
|
||||
|
||||
**Thanks**
|
||||
* @gmilamjr for reporting an issue with the log level of compression messages
|
||||
* @hackbnw for reporting an issue with collation during tuple filtering
|
||||
|
||||
## 2.17.0 (2024-10-08)
|
||||
|
||||
|
@ -43,7 +43,8 @@ set(MOD_FILES
|
||||
updates/2.15.2--2.15.3.sql
|
||||
updates/2.15.3--2.16.0.sql
|
||||
updates/2.16.0--2.16.1.sql
|
||||
updates/2.16.1--2.17.0.sql)
|
||||
updates/2.16.1--2.17.0.sql
|
||||
updates/2.17.0--2.17.1.sql)
|
||||
|
||||
# The downgrade file to generate a downgrade script for the current version, as
|
||||
# specified in version.config
|
||||
@ -86,7 +87,8 @@ set(OLD_REV_FILES
|
||||
2.15.3--2.15.2.sql
|
||||
2.16.0--2.15.3.sql
|
||||
2.16.1--2.16.0.sql
|
||||
2.17.0--2.16.1.sql)
|
||||
2.17.0--2.16.1.sql
|
||||
2.17.1--2.17.0.sql)
|
||||
|
||||
set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
|
||||
set(LOADER_PATHNAME "$libdir/timescaledb")
|
||||
|
0
sql/updates/2.17.0--2.17.1.sql
Normal file
0
sql/updates/2.17.0--2.17.1.sql
Normal file
0
sql/updates/2.17.1--2.17.0.sql
Normal file
0
sql/updates/2.17.1--2.17.0.sql
Normal file
@ -1,3 +1,3 @@
|
||||
version = 2.18.0-dev
|
||||
update_from_version = 2.17.0
|
||||
downgrade_to_version = 2.17.0
|
||||
update_from_version = 2.17.1
|
||||
downgrade_to_version = 2.17.1
|
||||
|
Loading…
x
Reference in New Issue
Block a user