diff --git a/NEWS b/NEWS index ac24f3fd81..04393452ea 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,19 @@ OpenTSDB - User visible changes. +* Version 2.2.0 RC2 (2015-11-09) + +Noteworthy Changes: + - Allow overriding the metric and tag UID widths via config file instead of + having to modify the source code. + +Bug Fixes: + - OOM handling script now handles multiple TSDs installed on the same host. + - Fix a bug where queries never return if an exception is thrown from the + storage layer. + - Fix random metric UID assignment in the CLI tool. + - Fix for meta data sync when salting is enabled. + - + * Version 2.2.0 RC1 (2015-09-12) Noteworthy Changes: @@ -49,6 +63,15 @@ Bug Fixes: - Avoid OOM issues over Telnet when the sending client isn't reading errors off it's socket fast enough by blocking writes. +* Version 2.1.2 (2015-11-09) + +Bug Fixes: + - Fix the built-in UI to handle query parameter parsing properly (found when Firefox + changed their URI behavior) + - Fix comments about the Zookeeper quorum setting in various config files. + - Fix quoting in the Makefile when installing. + - Make sure builds write files in the proper location on FreeBSD. + * Version 2.1.1 (2015-09-12) Bug Fixes: diff --git a/THANKS b/THANKS index 33898d5163..4761912619 100644 --- a/THANKS +++ b/THANKS @@ -25,6 +25,7 @@ Dave Barr Filippo Giunchedi Gabriel Nicolas Avellaneda Guenther Schmuelling +Hong Dai Thanh Hugo Trippaers Jacek Masiulaniec Jari Takkala @@ -33,7 +34,9 @@ Jan Mangs Jason Harvey Jim Scott Jesse Chang +Jim Westfall Johan Zeeck +Johannes Meixner Jonathan Works Josh Thomas Kieren Hynd @@ -42,6 +45,7 @@ Kris Beevers Lex Herbert Liangliang He Loïs Burg +Lou Yunlong Matt Jibson Matt Schallert Marc Tamsky diff --git a/configure.ac b/configure.ac index b9d6c136f9..41c5cac7d3 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.2.0RC2-SNAPSHOT], [opentsdb@googlegroups.com]) +AC_INIT([opentsdb], [2.2.0RC2], [opentsdb@googlegroups.com]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign])