Skip to content

Commit

Permalink
prep for 1.5.8 tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Doyle committed Mar 26, 2019
1 parent fa05285 commit 461df8b
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## GRNOC TSDS Services 1.5.8 -- Thu Mar 26 2019

### Features:

* Added "__timestamp" as an optional by clause element. Including this in the by
clause will make unique merging also consider the start/end times when determining
uniqueness. For example, grouping by a circuit's first interface by default will pick
one interface and use it for the entire query timeframe. Grouping by the circuit's first
interface and __timestamp will make it use the first interface for as long as that
interface existed, and then the next interface, etc for the duration of the query. Careful
use of order by is recommended when doing this to ensure your results are sane.

### Bugs:

* Fixed an issue introduced in the last release that would cause aggregates of aggregates
to emit a lot of warnings in cases where some value types weren't defined.


## GRNOC TSDS Services 1.5.7 -- Thu Mar 13 2019

### Features:
Expand Down
2 changes: 1 addition & 1 deletion grnoc-tsds-services.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: GRNOC TSDS Services
Name: grnoc-tsds-services
Version: 1.5.7
Version: 1.5.8
Release: 1%{?dist}
License: GRNOC
Group: Measurement
Expand Down
2 changes: 1 addition & 1 deletion lib/GRNOC/TSDS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ package GRNOC::TSDS;
use strict;
use warnings;

our $VERSION = '1.5.7';
our $VERSION = '1.5.8';

sub new {
my $caller = shift;
Expand Down

0 comments on commit 461df8b

Please sign in to comment.