Skip to content

Releases: RedisTimeSeries/redistimeseries-go

Version 1.4.4

17 Mar 14:37
e062674
Compare
Choose a tag to compare

Features

  • Add in IncrByAutoTs() and DecrByAutoTs functions @maguec (#88)

Version 1.4.3

23 Nov 15:44
8a44943
Compare
Choose a tag to compare

This is a maintenance release for redistimeseries-go version 1.4.
Update urgency: Low

Features

  • Added DeleteSerie() API that is equivalent to calling vanilla redis DEL serie. (#86)

Thanks to: @LeonOnRoad for the contributing!

Version 1.4.2

17 Sep 21:01
75731c0
Compare
Choose a tag to compare

Highlight

This release follows the General Availability release for RedisTimeSeries 1.4 and the ability to back-fill time series!
This client version contains the changes and examples around back-filling and out-of-order inserts.

🚀Features

  • Added support for DUPLICATE_POLICY / ON_DUPLICATE keywords on TS.CREATE and TS.ADD (#84)
  • Added support for DUPLICATE_POLICY in `TS.INFO response (#84)
  • Added support for CHUNK_SIZE on TS.CREATE (#80)

Bug Fixes

  • Fixed example tests due to OOO changes (#82)

1.4.1

30 Aug 13:38
eafbc6b
Compare
Choose a tag to compare

This is a maintenance release for redistimeseries-go version 1.4.
Update urgency: Medium

Maintenance details:

  • Switched from gopkg to go.mod (#74)
  • Fixed negative test on client.DeleteRule() (#77)
  • Fixed chunkSize addition to TS.INFO ( backwards compatible ) (#78)

1.4.0

23 Jul 16:13
87b8303
Compare
Choose a tag to compare

Added features

  • Added support for TS.REVRANGE and TS.MREVRANGE ( #70 )
  • Extended client examples on MultiAdd, Range, ReverseRange, and MultiReverseRange ( #70 , #71 )

1.3.0

21 Jul 10:37
6397d02
Compare
Choose a tag to compare

Added features

  • Added support for TS.QUERYINDEX, TS.ALTER, TS.INCRBY/TS.DECRBY TS.MADD (#60)
  • Added support for NewClientFromPool and Close methods. includes example (#62)
  • Added support for TS.MGET with options. (#67)
  • Added example usages of RangeWithOptions, MultiRangeWithOptions, and MultiGetWithOptions (#69)

Thanks to: @dengliming for the contributing!

1.2.1

04 May 08:54
60a81d2
Compare
Choose a tag to compare

Fix wrong float number parsing

1.2.0

27 Jan 16:07
3775204
Compare
Choose a tag to compare
  • Extended CreateOptions and added DefaultCreateOptions for TS.CREATE
  • Added MultiRangeOptions and DefaultMultiRangeOptions for TS.MRANGE
  • Extended Key Info with Labels Info from TS.INFO
  • Enable Adding with Auto Timestamp, supporting TS.ADD * ... behaviour
  • Support for TS.GET and TS.MGET commands
  • Overall extended support for optional arguments on API Commands
  • Deprecated CreateKey in favor of CreateKeyWithOptions to fully support TS.CREATE
  • Deprecated AddWithRetention in favor of AddWithOptions to fully support TS.ADD
  • Deprecated AggMultiRange (which forced aggregation usage) in favor of MultiRangeWithOptions to fully support TS.MRANGE

0.3.0

04 Aug 08:33
1ad07aa
Compare
Choose a tag to compare
  • Add labels support
  • New AddWithRetention function

0.2.0

24 Jun 07:19
9f83c93
Compare
Choose a tag to compare

move to millisec from seconds.
see: RedisTimeSeries/RedisTimeSeries#145