Releases: influxdata/influxdb-client-python
Releases · influxdata/influxdb-client-python
1.38.0
1.37.0
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
andResourceOwner
classes no longer supportsoauth_id
fieldTask
class no longer supportstype
fieldScriptUpdateRequest
class no longer supportsname
fieldUsersService.get_flags
operation is moved toConfigService
Features
- #586: Add
config_name
key argument forfrom_config_file
function to allow loading a specific configuration from a config file
API
- #588: Use the latest InfluxDB API definitions for generated APIs
Bug Fixes
v1.36.1
v1.36.0
v1.35.0
1.35.0 [2022-12-01]
Features
- #528: Add
BucketSchemasService
to manage explicit bucket schemas to enforce column names, tags, fields, and data types for your data
Bug Fixes
- #526: Creating client instance from static configuration
- #531: HTTP request return type for Management API [async/await]
- #534: Use
HTTResponse.headers
to clear deprecation warning [urllib3]
CI
- #523: Add Python 3.11 to CI builds
v1.34.0
Breaking Changes
- #509: Rename
key_file
tocert_key_file
inside the central configuration class
Features
- #510: Allow to use client's optional configs for initialization from file or environment properties
- #509: MTLS support for the InfluxDB Python client
Bug Fixes
v1.33.0
1.32.0
Bug Fixes
- #483: Querying data if the
debug
is enabled - #477: Parsing date fails due to thread race
- #486: Serializing DataFrames with columns starting with digits
- #491: Creating
Tasks
withimport
statements
Dependencies
- #472: Update
RxPY
to4.0.4