Skip to content
This repository was archived by the owner on Aug 5, 2023. It is now read-only.

Releases: gusutabopb/aioinflux

aioinflux v0.9.0

11 Jul 02:41
Compare
Choose a tag to compare

Added

  • Add support for custom path to InfluxDB (#24)
  • Add support for Decimal serialization (812c1a8, 100d931)
  • Add chunk count on chunked response debugging message (b9e85ad)

Changed

aioinflux v0.8.0

10 May 07:28
Compare
Choose a tag to compare

This is version is backwards compatible with v0.7.x

Added

  • Add dataframe support for chunked queries (e3c2a0b)

aioinflux v0.7.1

11 Apr 01:45
Compare
Choose a tag to compare

This is version is backwards compatible with v0.7.0

Fixed

  • Don't cache error responses (be7b87c)

Docs

  • Minor wording changes

Internal

  • Minor internal changes

aioinflux v0.7.0

11 Apr 01:43
Compare
Choose a tag to compare

This is version is mostly backwards compatible with v0.6.x
(w/ the exception of query patterns functionality)

Added

  • Redis-based caching functionality. See the
    docs for details.
  • Timeout functionality (#21 by @SuminAndrew)

Changed

  • Move ClientSession creation logic outside __init__.
    It is now easier to used advanced aiohttp.ClientSession options.
    See the docs for details.

Removed

  • Query patterns functionality

Internal

  • Refactor test suite
  • Various other internal changes

aioinflux v0.6.1

01 Feb 03:15
Compare
Choose a tag to compare

This is version is backwards compatible with v0.6.0

Fixed

  • Type annotation error in Python 3.6 (febfe47)
  • Suppress The object should be created from async function warning from aiohttp 3.5 (da950e9)

aioinflux v0.6.0

01 Feb 02:53
Compare
Choose a tag to compare

Added

  • Support serializing NaN integers in pandas 0.24+ (See blog post) (1c55217)
  • Support for using namedtuple with iterpoints (be93c53)

Changed

  • [BREAKING] Changed signature of parser argument of iterpoints from (x, meta) to (*x, meta) (bd93c53)

Removed

  • [BREAKING] Removed iterable mode and InfluxDBResult / InfluxDBChunkedResult.
    Use iterpoints instead. (592c5ed)
  • Deprecated set_query_pattern (1d36b07)

Docs

aioinflux v0.5.1

24 Jan 02:03
Compare
Choose a tag to compare

This is version is backwards compatible with v0.5.0

Fixed

  • Fix type annotations
  • Fix internal API inconsistencies

Docs

  • Complete API section
  • Add proper Sphinx links
  • Update/fix various sections

aioinflux v0.5.0

24 Jan 02:02
Compare
Choose a tag to compare

Changed

  • [BREAKING] Removed DataPoint functionality in favor of simpler and more flexible @lineprotocol decorator. See the docs for details.

Docs

  • Added detailed @lineprotocol usage

aioinflux v0.4.1

22 Nov 04:00
Compare
Choose a tag to compare

Fixed

  • Fixed bug when doing multi-statement queries when using dataframe mode

Docs

  • Added note regarding handling of multi-statement/multi-series queries when using dataframe mode

aioinflux v0.4.0

22 Oct 11:18
Compare
Choose a tag to compare

Added

  • Added ability to write datapoint objects. See the
    docs for details.
  • Added bytes output format. This is to facilitate the addition of a caching layer on top of InfluxDB. (cb4e3d1)

Changed

  • Change write method signature to match the /write endpoint docs
    • Allow writing to non-default retention policy (#14)
    • (precision is not fully implemented yet)
  • Renamed raw output format to json. Most users should be unaffected by this. (cb4e3d1)

Fixed

  • Improved docs

Internal

  • Refactored serialization/parsing functionality into a subpackage
  • Fix test warnings (2e42d50)