This repository was archived by the owner on Aug 5, 2023. It is now read-only.
Releases: gusutabopb/aioinflux
Releases · gusutabopb/aioinflux
aioinflux v0.9.0
aioinflux v0.8.0
This is version is backwards compatible with v0.7.x
Added
- Add dataframe support for chunked queries (e3c2a0b)
aioinflux v0.7.1
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
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 advancedaiohttp.ClientSession
options.
See the docs for details.
Removed
- Query patterns functionality
Internal
- Refactor test suite
- Various other internal changes
aioinflux v0.6.1
aioinflux v0.6.0
Added
- Support serializing NaN integers in pandas 0.24+ (See blog post) (1c55217)
- Support for using
namedtuple
withiterpoints
(be93c53)
Changed
- [BREAKING] Changed signature of
parser
argument ofiterpoints
from(x, meta)
to(*x, meta)
(bd93c53)
Removed
- [BREAKING] Removed iterable mode and
InfluxDBResult
/InfluxDBChunkedResult
.
Useiterpoints
instead. (592c5ed) - Deprecated
set_query_pattern
(1d36b07)
Docs
aioinflux v0.5.1
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
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
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
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 tojson
. Most users should be unaffected by this. (cb4e3d1)
Fixed
- Improved docs
Internal
- Refactored serialization/parsing functionality into a subpackage
- Fix test warnings (2e42d50)