0.7.0
Migration Notice
InfluxDBClientconstructor with connection options has new optionauthSchemewithnulldefault 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
- #101: Add standard 
user-agentheader to all calls. - #111: Add InfluxDB Edge (OSS) authentication support.
 
Bug Fixes
- #110: InfluxDB Edge (OSS) error handling.