Releases: InfluxCommunity/influxdb3-csharp
Releases · InfluxCommunity/influxdb3-csharp
1.0.0
Features
- #132: Respect iox::column_type::field metadata when
mapping query results into values.- iox::column_type::field::integer: => Long
- iox::column_type::field::uinteger: => Long
- iox::column_type::field::float: => Double
- iox::column_type::field::string: => String
- iox::column_type::field::boolean: => Boolean
0.8.0
0.7.0
Migration Notice
InfluxDBClient
constructor with connection options has new optionauthScheme
withnull
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
- #101: Add standard
user-agent
header to all calls. - #111: Add InfluxDB Edge (OSS) authentication support.
Bug Fixes
- #110: InfluxDB Edge (OSS) error handling.