mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-14 09:37:00 +08:00
Release 0.9.2
This commit is contained in:
parent
256b39491c
commit
ff3ab04bd9
18
CHANGELOG.md
18
CHANGELOG.md
@ -4,6 +4,24 @@
|
||||
`psql` with the `-X` flag to prevent any `.psqlrc` commands from
|
||||
accidentally triggering the load of a previous DB version.**
|
||||
|
||||
## 0.9.2 (2018-05-04)
|
||||
|
||||
**High-level changes**
|
||||
* Fixed handling of `DISCARD ALL` command when parallel workers are involved, which sometimes caused the extension to complain it was not preloaded
|
||||
* User permission bug fix where users locating TRIGGER permissions in a database could not insert data into a hypertable
|
||||
* Fixes for some issues with 32-bit architectures
|
||||
|
||||
**Notable commits**
|
||||
* [256b394] Fix parsing of GrantRoleStmt
|
||||
* [b78953b] Fix datum conversion typo
|
||||
* [c7283ef] Fix bug with extension loader when DISCARD ALL is executed
|
||||
* [fe20e48] Fix chunk creation with user that lacks TRIGGER permission
|
||||
|
||||
**Thanks**
|
||||
* @gumshoes, @manigandham, @wallies, & @cjrh for reporting a problem where sometimes the extension would appear to not be preloaded when it actually was
|
||||
* @thaxy for reporting a permissions issue when user creating a hypertable lacks TRIGGER permission
|
||||
* @bertmelis for reporting some bugs with 32-bit architectures
|
||||
|
||||
## 0.9.1 (2018-03-26)
|
||||
|
||||
**High-level changes**
|
||||
|
@ -52,7 +52,7 @@ set(MOD_FILES
|
||||
updates/0.7.1--0.8.0.sql
|
||||
updates/0.8.0--0.9.0.sql
|
||||
updates/0.9.0--0.9.1.sql
|
||||
updates/0.9.1--0.10.0-dev.sql
|
||||
updates/0.9.1--0.9.2.sql
|
||||
)
|
||||
|
||||
set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
|
||||
|
@ -1,2 +1,2 @@
|
||||
version = 0.10.0-dev
|
||||
version = 0.9.2
|
||||
update_from_version = 0.9.1
|
||||
|
Loading…
x
Reference in New Issue
Block a user