Skip to content

0.7.0

Compare
Choose a tag to compare
@bednar bednar released this 12 Aug 09:25
· 23 commits to main since this release

Migration Notice

  • InfluxDBClient constructor with connection options has new option authScheme with null default value:
- public InfluxDBClient(string host, string token, string? organization = null, string? database = null);
+ public InfluxDBClient(string host, string token, string? organization = null, string? database = null, string? authScheme = null)

This new option is used for Edge (OSS) authentication.

Features

  1. #101: Add standard user-agent header to all calls.
  2. #111: Add InfluxDB Edge (OSS) authentication support.

Bug Fixes

  1. #110: InfluxDB Edge (OSS) error handling.