diff --git a/NEWS b/NEWS index beb38949ec..bf54e42d0d 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,30 @@ OpenTSDB - User visible changes. +* Version 2.3.2 (2018-12-16) + +Noteworthy Changes: + - A new Python wrapper script to make FSCK repair runs easier. + - Track performance in the Nagios/Icinga script + - Add a Contributions file. + - Add a config, 'tsd.core.bulk.allow_out_of_order_timestamps' to allow out of + order timestamps for bulk ingest. + - NOTE: This version also includes a JDK 8 compiled version of Jackson due to + security patches. If you need to run with an older JDK please replace the + Jackson JARs with older versions. + +Bug Fixes: + - Unwrap NoSuchUniqueIds when writing data points to make it easier to understand + exceptions. + - Fix an NPE in the PutDataPointRpc class if a data point in the list is null. + - Fix a Makefile error in the clean portion. + - Fix an NPOE in the UIDManager print result. + - Fix a bug in the UI where Y formats may contain a percent sign. + - Allow specifying the data block encoding and TTL in the HBase table creation + script. + - Change the make and TSDB scripts to use relative paths. + - Fix parsing of `use_meta` from the URI for the search endpoint. + - Fix the clean cache script to be a bit more OS agnostic. + * Version 2.3.1 (2018-04-21) Noteworthy Changes: diff --git a/THANKS b/THANKS index 716add80e9..fe9daee443 100644 --- a/THANKS +++ b/THANKS @@ -24,15 +24,18 @@ Bryan Zubrod Camden Narzt Can Zhang Carlos Devoto +Chaotian Chris McClymont Cristian Sechel Christophe Furmaniak Dave Barr Davide D Amico Dfsklar +Eric Price Ethan Wang Filippo Giunchedi Gabriel Nicolas Avellaneda +GreatSnoopy Guenther Schmuelling Haiyang Jiang Hari Krishna Dara @@ -53,6 +56,7 @@ Jesse Chang Jim Westfall Johan Zeeck Johannes Meixner +John Seekins Jonathan Works Josh Thomas Jsbali @@ -84,6 +88,7 @@ Neil Fordyce Nikhil Benesch Nitin Aggarwal Opsun +Qu Dong Fang Paula Keezer Peter Edwards Peter Gotz @@ -108,6 +113,8 @@ Utkarsh Bhatnagar Vasiliy Kiryanov Vitaliy Fuks William Kronmiller +White Lilis Xiayang Yulai Fu -Zachary Kurey \ No newline at end of file +Zachary Kurey +Zephyr Guo \ No newline at end of file diff --git a/configure.ac b/configure.ac index b5b3a3f435..4a137d3e18 100644 --- a/configure.ac +++ b/configure.ac @@ -14,7 +14,7 @@ # along with this library. If not, see . # Semantic Versioning (see http://semver.org/). -AC_INIT([opentsdb], [2.3.1], [opentsdb@googlegroups.com]) +AC_INIT([opentsdb], [2.3.2], [opentsdb@googlegroups.com]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign])