Skip to content

Releases: InfluxCommunity/influxdb3-csharp

1.2.0

22 May 07:40
Compare
Choose a tag to compare

Features

  1. #155: Allows setting grpc options.
  2. #157: Fix: always clone DefaultOptions to keep it
    immutable.

1.1.0

26 Mar 08:52
Compare
Choose a tag to compare

Features

  1. #153: Add custom SSL root certificate support.
    • New configuration items:
      • SslRootsFilePath
      • DisableCertificateRevocationListCheck
    • Disclaimer: Using custom SSL root certificate configurations is recommended for development and testing
      purposes
      only. For production deployments, ensure custom certificates are added to the operating system's trusted
      certificate store.

1.0.0

22 Jan 13:30
Compare
Choose a tag to compare

Features

  1. #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

13 Sep 07:16
Compare
Choose a tag to compare

Features

1.#118: Simplify getting response headers and status code from InfluxDBApiException. Includes example runnable through Examples/General.

0.7.0

12 Aug 09:25
Compare
Choose a tag to compare

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.

v0.6.0

16 Apr 19:17
Compare
Choose a tag to compare

Features

  1. #90: Custom HTTP/gRPC headers can be specified globally by config or per request

0.5.0

01 Mar 09:29
Compare
Choose a tag to compare

Features

  1. #71: Add support for named query parameters

Others

  1. #80: Use net8.0 as a default target framework in Tests and Examples

0.4.0

08 Dec 07:55
Compare
Choose a tag to compare

Features

  1. #66: Default Tags for Writes

0.3.0

02 Oct 04:51
Compare
Choose a tag to compare

Features

  1. #36: Add client creation from connection string
    and environment variables.
  2. #52: Add structured query support

Docs

  1. #52: Add downsampling example

0.2.0

11 Aug 10:46
Compare
Choose a tag to compare

Features

  1. #33: Add GZIP support
  2. #34: Add HTTP proxy and custom HTTP headers support

Breaking Changes

  1. #35: Renamed config types and some options