Skip to content

Latest commit

 

History

History
105 lines (72 loc) · 5.38 KB

CHANGELOG.md

File metadata and controls

105 lines (72 loc) · 5.38 KB

1.7.0 [unreleased]

Features

  1. #79: Added support for writing Pandas DataFrame
  2. #92: Optimize serializing Pandas DataFrame for writing

Bug Fixes

  1. #85: Fixed a possibility to generate empty write batch
  2. #86: BREAKING CHANGE: Fixed parameters in delete api - now delete api accepts also bucket name and org name instead of only ids

1.6.0 [2020-04-17]

Documentation

  1. #75: Updated docs to clarify how to use an org parameter
  2. #84: Clarify how to use a client with InfluxDB 1.8

Bug Fixes

  1. #72: Optimize serializing data into Pandas DataFrame

1.5.0 [2020-03-13]

Features

  1. #59: Set User-Agent to influxdb-client-python/VERSION for all requests

Bug Fixes

  1. #61: Correctly parse CSV where multiple results include multiple tables
  2. #66: Correctly close connection pool manager at exit
  3. #69: InfluxDBClient and WriteApi could serialized by pickle (python3.7 or higher)

1.4.0 [2020-02-14]

Features

  1. #52: Initialize client library from config file and environmental properties

CI

  1. #54: Add Python 3.7 and 3.8 to CI builds

Bug Fixes

  1. #56: Fix default tags for write batching, added new test
  2. #58: Source distribution also contains: requirements.txt, extra-requirements.txt and test-requirements.txt

1.3.0 [2020-01-17]

Features

  1. #50: Implemented default tags

API

  1. #47: Updated swagger to latest version

CI

  1. #49: Added beta release to continuous integration

Bug Fixes

  1. #48: InfluxDBClient default org is used by WriteAPI

1.2.0 [2019-12-06]

Features

  1. #44: Optimized serialization into LineProtocol, Clarified how to use client for import large amount of data

API

  1. #42: Updated swagger to latest version

Bug Fixes

  1. #45: Pandas is a optional dependency and has to installed separably

1.1.0 [2019-11-19]

Features

  1. #29: Added support for serialise response into Pandas DataFrame

1.0.0 [2019-11-11]

Features

  1. #24: Added possibility to write dictionary-style object
  2. #27: Added possibility to write bytes type of data
  3. #30: Added support for streaming a query response
  4. #35: FluxRecord supports dictionary-style access
  5. #31: Added support for delete metrics

API

  1. #28: Updated swagger to latest version

Bug Fixes

  1. #19: Removed strict checking of enum values

Documentation

  1. #22: Documented how to connect to InfluxCloud

0.0.2 [2019-09-26]

Features

  1. #2: The write client is able to write data in batches (configuration: batch_size, flush_interval, jitter_interval, retry_interval)
  2. #5: Added support for gzip compression of query response and write body

API

  1. #10: Updated swagger to latest version

Bug Fixes

  1. #3: The management API correctly supports inheritance defined in Influx API
  2. #7: Drop NaN and infinity values from fields when writing to InfluxDB

CI

  1. #11: Switch CI to CircleCI
  2. #12: CI generate code coverage report on CircleCI