Skip to content

Latest commit

 

History

History
86 lines (48 loc) · 3 KB

CHANGELOG.md

File metadata and controls

86 lines (48 loc) · 3 KB

Change Log

0.10.0 [unreleased]

0.9.0 [2024-09-13]

Features

  1. #108: Better expose access to response headers in InfluxDBError. Example handle_http_error added.
  2. #112: Update batching examples, add integration tests of batching.

Bug Fixes

  1. #107: Missing py.typed in distribution package
  2. #111: Reduce log level of disposal of batch processor to DEBUG

0.8.0 [2024-08-12]

Features

  1. #101: Add support for InfluxDB Edge (OSS) authentication

Bug Fixes

  1. #100: InfluxDB Edge (OSS) error handling
  2. #105: Importing Polars serialization module

0.7.0 [2024-07-11]

Bug Fixes

  1. #95: Polars is optional dependency
  2. #99: Skip infinite values during serialization to line protocol

0.6.1 [2024-06-25]

Bug Fixes

  1. #98: Missing declaration for query module

0.6.0 [2024-06-24]

Features

  1. #89: Use datetime.fromisoformat over dateutil.parse in Python 3.11+
  2. #92: Update user-agent header value to influxdb3-python/{VERSION} and add it to queries as well.

Bug Fixes

  1. #86: Refactor to timezone specific datetime helpers to avoid use deprecated functions

0.5.0 [2024-05-17]

Features

  1. #88: Add support for named query parameters:
    from influxdb_client_3 import InfluxDBClient3
    
    with InfluxDBClient3(host="https://us-east-1-1.aws.cloud2.influxdata.com",
                         token="my-token",
                         database="my-database") as client:
    
         table = client.query("select * from cpu where host=$host", query_parameters={"host": "server01"})
    
         print(table.to_pandas())

Bug Fixes

  1. #87: Fix examples to use write_options instead of the object name WriteOptions

Others

  1. #84: Enable packaging type information - py.typed

0.4.0 [2024-04-17]

Bugfix

  1. #77: Support using pandas nullable types

Others

  1. #80: Integrate code style check into CI