Skip to content

Releases: influxdata/influxdb-client-python

1.46.0

13 Sep 07:01
Compare
Choose a tag to compare

Bug Fixes

  1. #667: Missing py.typed in distribution package

Examples:

  1. #664: Multiprocessing example uses new source of data
  2. #665: Shows how to leverage header fields in errors returned on write.

1.45.0

12 Aug 08:20
Compare
Choose a tag to compare

1.45.0 [2024-08-12]

Bug Fixes

  1. #652: Refactor to timezone specific datetime helpers to avoid use deprecated functions
  2. #663: Accept HTTP 201 response to write request

1.44.0

24 Jun 09:52
Compare
Choose a tag to compare

Features

  1. #657: Prefer datetime.fromisoformat over dateutil.parse in Python 3.11+
  2. #658: Add find_buckets_iter function that allow iterate through all pages of buckets.

1.43.0

17 May 09:34
Compare
Choose a tag to compare

Bug Fixes

  1. #655: Replace deprecated urllib calls HTTPResponse.getheaders() and HTTPResponse.getheader().

Others

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

1.42.0

17 Apr 06:10
Compare
Choose a tag to compare

Bug Fixes

  1. #648: Fix DataFrame serialization with NaN values

1.41.0

01 Mar 08:30
Compare
Choose a tag to compare

Features

  1. #643: Add a support for Python 3.12

Bug Fixes

  1. #636: Handle missing data in data frames
  2. #638, #642: Refactor DataFrame operations to avoid chained assignment and resolve FutureWarning in pandas, ensuring compatibility with pandas 3.0.
  3. #641: Correctly dispose ThreadPoolScheduler in WriteApi

Documentation

  1. #639: Use Markdown for README

1.40.0

30 Jan 07:52
Compare
Choose a tag to compare

Features

  1. #625: Make class Point equatable

Bug Fixes

  1. #562: Use ThreadPoolScheduler for WriteApi's batch subject instead of TimeoutScheduler to prevent creating unnecessary threads repeatedly
  2. #631: Logging HTTP requests without query parameters

Documentation

  1. #635: Fix render README.rst at GitHub

1.39.0

05 Dec 07:52
Compare
Choose a tag to compare

Features

  1. #616: Add find_tasks_iter function that allow iterate through all pages of tasks.

1.38.0

02 Oct 09:53
Compare
Choose a tag to compare

Bug Fixes

  1. #601: Use HTTResponse.headers to clear deprecation warning [urllib3]
  2. #610: Use iloc to clear deprecation warning

Documentation

  1. #566: Fix Sphinx documentation build and add support .readthedocs.yml V2 configuration file

1.37.0

28 Jul 05:35
Compare
Choose a tag to compare

Breaking Changes

This release disables using of the HTTP proxy environment variables HTTP_PROXY and HTTPS_PROXY for the asynchronous HTTP client.
The proxy environment variables must be explicitly enabled in the client's configuration:

from influxdb_client.client.influxdb_client_async import InfluxDBClientAsync

async with InfluxDBClientAsync(url="http://localhost:8086", token="my-token", org="my-org",
                               client_session_kwargs={'trust_env': True}) as client:
    pass

This release introduces a support for new version of InfluxDB API definitions with following breaking changes:

  • User, UserResponse, ResourceMember and ResourceOwner classes no longer supports oauth_id field
  • Task class no longer supports type field
  • ScriptUpdateRequest class no longer supports name field
  • UsersService.get_flags operation is moved to ConfigService

Features

  1. #586: Add config_name key argument for from_config_file function to allow loading a specific configuration from a config file

API

  1. #588: Use the latest InfluxDB API definitions for generated APIs

Bug Fixes

  1. #583: Async HTTP client doesn't always use HTTP_PROXY/HTTPS_PROXY environment variables. [async/await]
  2. #584: Parsing empty query result value as numpy.NaN
  3. #595: The Config-Encoding: identity header will no longer be set by the write_api calls to a remote server