1
0
mirror of https://github.com/timescale/timescaledb.git synced 2025-05-17 11:03:36 +08:00

Release 2.5.1

This commit is contained in:
Duncan Moore 2021-11-30 22:47:40 +00:00 committed by duncan-tsdb
parent 069cb4ed19
commit 94dc837394
5 changed files with 29 additions and 11 deletions

@ -11,19 +11,36 @@ accidentally triggering the load of a previous DB version.**
* #3769 Allow ALTER TABLE DROP COLUMN on compressed hypertable
**Bugfixes**
* #3808 Properly handle `max_retries` option
## 2.5.1 (2021-12-02)
This release contains bug fixes since the 2.5.0 release.
We deem it medium priority to upgrade.
**Bugfixes**
* #3706 Test enabling dist compression within a procedure
* #3734 Rework distributed DDL processing logic
* #3737 Fix flaky pg_dump
* #3739 Fix compression policy on tables using INTEGER
* #3766 Fix segfault in ts_hist_sfunc
* #3789 Fix time_bucket comparison transformation
* #3784 Fix DISTINCT ON queries returning incorrect results on distributed hypertables
* #3801 Fail size utility functions when data nodes do not respond
* #3781 Segfault in fill_result_error()
* #3779 Support GRANT/REVOKE on distributed database
* #3808 Properly handle `max_retries` option
* #3789 Fix time_bucket comparison transformation
* #3797 Fix DISTINCT ON queries for distributed hyperatbles
* #3799 Fix error printout on correct security label
* #3801 Fail size utility functions when data nodes do not respond
* #3809 Fix NULL pointer evaluation in fill_result_error()
* #3811 Fix INSERT..SELECT involving dist hypertables
* #3819 Fix reading garbage value from TSConnectionError
* #3824 Remove pointers from CAGG lists for 64-bit archs
* #3846 Eliminate deadlock in recompress chunk policy
* #3881 Fix SkipScan crash due to pruned unique path
* #3884 Fix create_distributed_restore_point memory issue
**Thanks**
* @cbisnett for reporting and fixing a typo in an error message
* @CaptainCuddleCube for reporting bug on compression policy procedure on tables using INTEGER on time dimension
* @phemmer for continuously reporting bugs on multi-node
* @phemmer for reporting bugs on multi-node
## 2.5.0 (2021-10-28)

@ -30,7 +30,8 @@ set(MOD_FILES
updates/2.3.1--2.4.0.sql
updates/2.4.0--2.4.1.sql
updates/2.4.1--2.4.2.sql
updates/2.4.2--2.5.0.sql)
updates/2.4.2--2.5.0.sql
updates/2.5.0--2.5.1.sql)
# The downgrade file to generate a downgrade script for the current version, as
# specified in version.config

@ -0,0 +1,3 @@
-- Remove old compression policy procedures
DROP PROCEDURE IF EXISTS _timescaledb_internal.policy_compression_interval(INTEGER, INTEGER, INTERVAL, INTEGER, BOOLEAN, BOOLEAN);
DROP PROCEDURE IF EXISTS _timescaledb_internal.policy_compression_integer(INTEGER, INTEGER, BIGINT, INTEGER, BOOLEAN, BOOLEAN);

@ -1,3 +0,0 @@
-- Remove old compression policy procedures
DROP PROCEDURE IF EXISTS _timescaledb_internal.policy_compression_interval(INTEGER, INTEGER, INTERVAL, INTEGER, BOOLEAN, BOOLEAN);
DROP PROCEDURE IF EXISTS _timescaledb_internal.policy_compression_integer(INTEGER, INTEGER, BIGINT, INTEGER, BOOLEAN, BOOLEAN);

@ -1,3 +1,3 @@
version = 2.6.0-dev
update_from_version = 2.5.0
update_from_version = 2.5.1
downgrade_to_version = 2.5.0