mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-14 17:43:34 +08:00
Release 0.10.1
This commit is contained in:
parent
8b58500d76
commit
f06f853f89
26
CHANGELOG.md
26
CHANGELOG.md
@ -4,6 +4,32 @@
|
||||
`psql` with the `-X` flag to prevent any `.psqlrc` commands from
|
||||
accidentally triggering the load of a previous DB version.**
|
||||
|
||||
## 0.10.1 (2018-07-12)
|
||||
|
||||
**High-level changes**
|
||||
* Improved memory management for long-lived connections.
|
||||
* Fixed handling of dropping triggers that would lead to orphaned references in pg_depend.
|
||||
* Fixed pruning in CustomScan when the subplan is not a Scan type that caused a crash with LATERALs.
|
||||
* Corrected size reporting that was not accurately counting TOAST size
|
||||
* Updated error messages that more closely conform to PG style.
|
||||
* Corrected handling of table and schema name changes to chunks; TimescaleDB metadata catalogs are now properly updated
|
||||
|
||||
**Notable commits**
|
||||
* [8b58500] Fix bug where dropping triggers caused dangling references in pg_depend, disallow disabling triggers on hypertables
|
||||
* [745b8ab] Fixing CustomScan pruning whenever the subplan is NOT of a Scan type.
|
||||
* [67a8a41] Make chunk identifiers formatting safe using format
|
||||
* [41af6ff] Fix misreported toast_size in chunk_relation_size funcs
|
||||
* [4f2f1a6] Update the error messages to conform with the style guide; Fix tests
|
||||
* [3c28f65] Release cache pin memory
|
||||
* [abe76fc] Add support for changing chunk schema and name
|
||||
|
||||
**Thanks**
|
||||
* @mfuterko for updating our error messages to conform with PG error message style
|
||||
* @fvannee for reporting a crash when using certain LATERAL joins with aggregates
|
||||
* @linba708 for reporting a memory leak with long lived connections
|
||||
* @phlsmk for reporting an issue where dropping triggers prevented drop_chunks from working due to orphaned dependencies
|
||||
|
||||
|
||||
## 0.10.0 (2018-06-27)
|
||||
|
||||
**High-level changes**
|
||||
|
@ -54,7 +54,7 @@ set(MOD_FILES
|
||||
updates/0.9.0--0.9.1.sql
|
||||
updates/0.9.1--0.9.2.sql
|
||||
updates/0.9.2--0.10.0.sql
|
||||
updates/0.10.0--0.11.0-dev.sql
|
||||
updates/0.10.0--0.10.1.sql
|
||||
)
|
||||
|
||||
set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
|
||||
|
@ -1,2 +1,2 @@
|
||||
version = 0.11.0-dev
|
||||
version = 0.10.1
|
||||
update_from_version = 0.10.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user