diff --git a/AUTHORS b/AUTHORS index f52737fcdf..828a00bfd9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -24,5 +24,6 @@ Chris Larsen David Bainbridge Geoffrey Anderson Ion Savin +Jonathan Creasy Nicholas Whitehead Will Moss diff --git a/NEWS b/NEWS index c0950558e1..d2dabe3de2 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ OpenTSDB - User visible changes. -* Version 2.3.0 RC1 (2016-03-28) +* Version 2.3.0 RC1 (2016-05-02) Noteworthy Changes: - Introduced option --max-connection/tsd.core.connections.limit to set the maximum number @@ -13,15 +13,24 @@ Noteworthy Changes: - Added MetaDataCache plugin api - Added timeshift() function (#175) - Now align downsampling to Gregorian Calendar (#548, #657) - - Added support for latest Java versions - - Added NONE aggregator + - Added None aggregator to fetch raw data along with first and last aggregators to + fetch only the first or last data points when downsampling. - Added script to build OpenTSDB/HBase on OSX (#674) - - Added First/Last Downsampler + - Add cross-series expressions with mathematical operators using Jexl - Added query epxressions (alias(), scale(), absolute(), movingAverage(), highestCurrent(), highestMax(), timeShift(), divide(), sum(), difference(), multiply()) (#625) + - Add a Unique ID assignment filter API for enforcing UID assignment naming conventions. + - Add a whitelist regular expression based UID assignment filter + - Add a time series storage filter plugin API that allows processing time series data + and determining if it should be stored or not. + - Allow using OpenTSDB with Google's Bigtable cloud platform or with Apache Cassandra + Bug Fixes: - Some improperly formatted timestamps were allowed (#724) - - removed stdout logging from packaged logback.xml files (#715) + - Removed stdout logging from packaged logback.xml files (#715) + - Restore the ability to create TSMeta objects via URI + - Restore raw data points (along with post-filtered data points) in query stats + - Built in UI will now properly display global annotations when the query string is passed - * Version 2.2.0 (2016-02-14) diff --git a/THANKS b/THANKS index 05e9ae58ff..08c55697a5 100644 --- a/THANKS +++ b/THANKS @@ -13,11 +13,16 @@ Adrien Mogenet Alex Ioffe Andre Pech Andrey Stepachev +Andy Flury +Anna Claiborne Aravind Gottipati Arvind Jayaprakash Berk D. Demir Bikrant Neupane Bryan Zubrod +Camden Narzt +Can Zhang +Carlos Devoto Chris McClymont Cristian Sechel Christophe Furmaniak @@ -28,7 +33,9 @@ Gabriel Nicolas Avellaneda Guenther Schmuelling Hari Krishna Dara Hong Dai Thanh +Hugo M Fernandes Hugo Trippaers +Isaiah Choe Ivan Babrou Jacek Masiulaniec Jari Takkala @@ -42,6 +49,7 @@ Johan Zeeck Johannes Meixner Jonathan Works Josh Thomas +Kevin Bowling Kieren Hynd Kimoon Kim Kris Beevers @@ -65,6 +73,7 @@ Nikhil Benesch Nitin Aggarwal Paula Keezer Peter Gotz +Ping Yong Pradeep Chhetri Rajesh G Ryan Berdeen @@ -81,5 +90,6 @@ Tristan Colgate-McFarlane Tony Landells Utkarsh Bhatnagar Vasiliy Kiryanov +Vitaliy Fuks Yulai Fu Zachary Kurey \ No newline at end of file diff --git a/configure.ac b/configure.ac index 8212e4ffe6..ea48f48ce8 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# Copyright (C) 2011-2012 The OpenTSDB Authors. +# Copyright (C) 2011-2016 The OpenTSDB Authors. # # This library is free software: you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published @@ -14,7 +14,7 @@ # along with this library. If not, see . # Semantic Versioning (see http://semver.org/). -AC_INIT([opentsdb], [2.3.0-SNAPSHOT], [opentsdb@googlegroups.com]) +AC_INIT([opentsdb], [2.3.0-RC1], [opentsdb@googlegroups.com]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign])