Skip to content

Commit

Permalink
Release 2.15.3
Browse files Browse the repository at this point in the history
This release contains bug fixes since the 2.15.2 release.
Best practice is to upgrade at the next available opportunity.

**Migrating from self-hosted TimescaleDB v2.14.x and earlier**

After you run `ALTER EXTENSION`, you must run [this SQL script](https://github.com/timescale/timescaledb-extras/blob/master/utils/2.15.X-fix_hypertable_foreign_keys.sql). For more details, see the following pull request [timescale#6797](timescale#6797).

If you are migrating from TimescaleDB v2.15.0, v2.15.1 or v2.15.2, no changes are required.

**Bugfixes**
* timescale#7061: Fix handling of multiple unique indexes in compressed INSERT.
* timescale#7080: Fix `corresponding equivalence member not found` error.
  • Loading branch information
pallavisontakke committed Jul 2, 2024
1 parent ebbca2d commit 6e0a6f4
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 4 deletions.
1 change: 0 additions & 1 deletion .unreleased/pr_7061

This file was deleted.

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

This file was deleted.

15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@
`psql` with the `-X` flag to prevent any `.psqlrc` commands from
accidentally triggering the load of a previous DB version.**

## 2.15.3 (2024-07-02)

This release contains bug fixes since the 2.15.2 release.
Best practice is to upgrade at the next available opportunity.

**Migrating from self-hosted TimescaleDB v2.14.x and earlier**

After you run `ALTER EXTENSION`, you must run [this SQL script](https://github.com/timescale/timescaledb-extras/blob/master/utils/2.15.X-fix_hypertable_foreign_keys.sql). For more details, see the following pull request [#6797](https://github.com/timescale/timescaledb/pull/6797).

If you are migrating from TimescaleDB v2.15.0, v2.15.1 or v2.15.2, no changes are required.

**Bugfixes**
* #7061: Fix handling of multiple unique indexes in compressed INSERT.
* #7080: Fix `corresponding equivalence member not found` error.

## 2.15.2 (2024-06-07)

This release contains bug fixes since the 2.15.1 release. Best
Expand Down
3 changes: 2 additions & 1 deletion sql/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ set(MOD_FILES
updates/2.14.1--2.14.2.sql
updates/2.14.2--2.15.0.sql
updates/2.15.0--2.15.1.sql
updates/2.15.1--2.15.2.sql)
updates/2.15.1--2.15.2.sql
updates/2.15.2--2.15.3.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.15.2--2.15.3.sql
Empty file.
2 changes: 1 addition & 1 deletion version.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = 2.16.0-dev
update_from_version = 2.15.2
update_from_version = 2.15.3
downgrade_to_version = 2.15.2

0 comments on commit 6e0a6f4

Please sign in to comment.