Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .unreleased/fix_9902

This file was deleted.

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

This file was deleted.

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

This file was deleted.

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

**Please note: When updating your database, you should connect using `psql` with the `-X` flag to prevent any `.psqlrc` commands from accidentally triggering the load of a previous TimescaleDB version.**

## 2.27.2 (2026-06-02)

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

**Bugfixes**
* [#9895](https://github.com/timescale/timescaledb/pull/9895) Remove refresh policy check when adding columnstore policy
* [#9902](https://github.com/timescale/timescaledb/pull/9902) Fix wrong results and crashes when grouping by columns that are not in the `SELECT` list with vectorized aggregation or columnar index scan
* [#9908](https://github.com/timescale/timescaledb/pull/9908) Skip `ColumnarIndexScan` when the qual contains a SubPlan

## 2.27.1 (2026-05-19)

This release contains performance improvements and bug fixes since the 2.27.0 release. We recommend that you upgrade at the next available opportunity.
Expand Down
3 changes: 2 additions & 1 deletion sql/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ set(MOD_FILES
updates/2.26.2--2.26.3.sql
updates/2.26.3--2.26.4.sql
updates/2.26.4--2.27.0.sql
updates/2.27.0--2.27.1.sql)
updates/2.27.0--2.27.1.sql
updates/2.27.1--2.27.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.27.1--2.27.2.sql
Empty file.
Empty file added sql/updates/2.27.2--2.27.1.sql
Empty file.
2 changes: 1 addition & 1 deletion version.config
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = 2.28.0-dev
previous_version = 2.27.1
previous_version = 2.27.2
Loading