- #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
1.#118: Simplify getting response headers and status code from InfluxDBApiException
. Includes example runnable through Examples/General
.
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.
- #101: Add standard
user-agent
header to all calls. - #111: Add InfluxDB Edge (OSS) authentication support.
- #110: InfluxDB Edge (OSS) error handling.
- #90: Custom
HTTP/gRPC
headers can be specified globally by config or per request
- #71: Add support for named query parameters
- #80: Use net8.0 as a default target framework in Tests and Examples
- #66: Default Tags for Writes
- #36: Add client creation from connection string and environment variables.
- #52: Add structured query support
- #52: Add downsampling example
- #35: Renamed config types and some options
- initial release of new client version