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