Skip to content

Commit

Permalink
Release 2.1.1
Browse files Browse the repository at this point in the history
This maintenance release contains bugfixes since the 2.1.0 release. We
deem it high priority for upgrading.

The bug fixes in this release address issues with CREATE INDEX and
UPSERT for hypertables, custom jobs, and gapfill queries.

This release marks TimescaleDB as a trusted extension in PG13, so that
superuser privileges are not required anymore to install the extension.

**Minor features**
* timescale#2998 Mark timescaledb as trusted extension

**Bugfixes**
* timescale#2948 Fix off by 4 error in histogram deserialize
* timescale#2974 Fix index creation for hypertables with dropped columns
* timescale#2990 Fix segfault in job_config_check for cagg
* timescale#2987 Fix crash due to txns in emit_log_hook_callback
* timescale#3042 Commit end transaction for CREATE INDEX
* timescale#3053 Fix gapfill/hashagg planner interaction
* timescale#3059 Fix UPSERT on hypertables with columns with defaults

**Thanks**
* @eloyekunle and @kitwestneat for reporting an issue with UPSERT
* @jocrau for reporting an issue with index creation
* @kev009 for fixing a compilation issue
* @majozv and @pehlert for reporting an issue with time_bucket_gapfill
  • Loading branch information
k-rus committed Mar 29, 2021
1 parent 8aeecd9 commit 39a27d6
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
20 changes: 17 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,34 @@
`psql` with the `-X` flag to prevent any `.psqlrc` commands from
accidentally triggering the load of a previous DB version.**

## Unreleased
## 2.1.1 (2021-03-29)

This maintenance release contains bugfixes since the 2.1.0 release. We
deem it high priority for upgrading.

The bug fixes in this release address issues with CREATE INDEX and
UPSERT for hypertables, custom jobs, and gapfill queries.

This release marks TimescaleDB as a trusted extension in PG13, so that
superuser privileges are not required anymore to install the extension.

**Minor features**
* #2998 Mark timescaledb as trusted extension

**Bugfixes**
* #2948 Fix off by 4 error in histogram deserialize
* #2974 Fix index creation for hypertables with dropped columns
* #2990 Fix segfault in job_config_check for cagg
* #2987 Fix crash due to txns in emit_log_hook_callback
* #3042 Commit end transaction for CREATE INDEX
* #3053 Fix gapfill/hashagg planner interaction
* #3059 Fix UPSERT on hypertables with columns with defaults

**Thanks**
* @eloyekunle and @kitwestneat for reporting an issue with UPSERT
* @jocrau for reporting an issue with index creation
* @kev009 for fixing a compilation issue
* @majozv and @pehlert for reporting an issue with time_bucket_gapfill
* @pedrokost and @RobAtticus for reporting an issue with size
functions on empty hypertables

## 2.1.0 (2021-02-22)

Expand Down
1 change: 1 addition & 0 deletions sql/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ set(MOD_FILES
updates/2.0.0--2.0.1.sql
updates/2.0.1--2.0.2.sql
updates/2.0.2--2.1.0.sql
updates/2.1.0--2.1.1.sql
)

set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
Expand Down
4 changes: 2 additions & 2 deletions version.config
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = 2.1.0
update_from_version = 2.0.2
version = 2.1.1
update_from_version = 2.1.0

0 comments on commit 39a27d6

Please sign in to comment.