Skip to content

Commit a4b2fb9

Browse files
authored
Forwardport 2.19.1 (#7896)
Disable-check: force-changelog-file Disable-check: approval-count
1 parent 31e8298 commit a4b2fb9

File tree

7 files changed

+21
-6
lines changed

7 files changed

+21
-6
lines changed

.unreleased/pr_7834

Lines changed: 0 additions & 1 deletion
This file was deleted.

.unreleased/pr_7890

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@
44
`psql` with the `-X` flag to prevent any `.psqlrc` commands from
55
accidentally triggering the load of a previous DB version.**
66

7+
## 2.19.1 (2025-04-01)
8+
9+
This release contains bug fixes since the 2.19.0 release. We recommend that you upgrade at the next available opportunity.
10+
11+
**Bugfixes**
12+
* [#7816](https://github.com/timescale/timescaledb/pull/7816) Fix `ORDER BY` for direct queries on partial chunks
13+
* [#7834](https://github.com/timescale/timescaledb/pull/7834) Avoid unnecessary scheduler restarts
14+
* [#7837](https://github.com/timescale/timescaledb/pull/7837) Ignore frozen chunks in compression policy
15+
* [#7850](https://github.com/timescale/timescaledb/pull/7850) Add `is_current_xact_tuple` to Arrow TTS
16+
* [#7890](https://github.com/timescale/timescaledb/pull/7890) Flush error state before doing anything else
17+
18+
**Thanks**
19+
* @bjornuppeke for reporting a problem with `INSERT INTO ... ON CONFLICT DO NOTHING` on compressed chunks
20+
* @kav23alex for reporting a segmentation fault on `ALTER TABLE` with `DEFAULT`
21+
722
## 2.19.0 (2025-03-18)
823

924
This release contains performance improvements and bug fixes since the 2.18.2 release. We recommend that you upgrade at the next available opportunity.

sql/CMakeLists.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ set(MOD_FILES
3939
updates/2.17.2--2.18.0.sql
4040
updates/2.18.0--2.18.1.sql
4141
updates/2.18.1--2.18.2.sql
42-
updates/2.18.2--2.19.0.sql)
42+
updates/2.18.2--2.19.0.sql
43+
updates/2.19.0--2.19.1.sql)
4344

4445
# The downgrade file to generate a downgrade script for the current version, as
4546
# specified in version.config
@@ -78,7 +79,8 @@ set(OLD_REV_FILES
7879
2.18.0--2.17.2.sql
7980
2.18.1--2.18.0.sql
8081
2.18.2--2.18.1.sql
81-
2.19.0--2.18.2.sql)
82+
2.19.0--2.18.2.sql
83+
2.19.1--2.19.0.sql)
8284

8385
set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
8486
set(LOADER_PATHNAME "$libdir/timescaledb")

sql/updates/2.19.0--2.19.1.sql

Whitespace-only changes.

sql/updates/2.19.1--2.19.0.sql

Whitespace-only changes.

version.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version = 2.20.0-dev
2-
update_from_version = 2.19.0
3-
downgrade_to_version = 2.19.0
2+
update_from_version = 2.19.1
3+
downgrade_to_version = 2.19.1

0 commit comments

Comments
 (0)