Skip to content

Commit

Permalink
Prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Doyle committed Mar 18, 2020
1 parent eb1a99a commit 98ce418
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## GRNOC TSDS Services 1.6.5 -- Mon Mar 16 2020

### Features:

* Support '=' character in where clause's, such as `where x like "="`
* Added 'day' as a support target for the 'align' option in aggregate
* Added support for nested unwind operations, such as extracting an array
of elements inside of an arrayed element.

### Bugs:

* Parent metadata elements should no longer be indexed. These fields
are never directly accessed in TSDS and are taking up space / index slots
in Mongo for no reason.
* Fixed case where != applied to a numeric datafield would generate an
incorrect query.
* Fixed case where when aggregating data, a bucket of all null datapoints
would return 0 in the case of sum'ing. Now returns null.
* Fixed issue with get_meta_field_values not respecting the offset parameter


## GRNOC TSDS Services 1.6.4 -- Thu Mar 26 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.6.4
Version: 1.6.5
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.6.4';
our $VERSION = '1.6.5';

sub new {
my $caller = shift;
Expand Down

0 comments on commit 98ce418

Please sign in to comment.