Skip to content

Latest commit

 

History

History
78 lines (43 loc) · 2.49 KB

CHANGELOG.md

File metadata and controls

78 lines (43 loc) · 2.49 KB

0.9.0 [unreleased]

0.8.0 [2024-09-13]

Features

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

0.7.0 [2024-08-12]

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.

0.6.0 [2024-04-16]

Features

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

0.5.0 [2024-03-01]

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 [2023-12-08]

Features

  1. #66: Default Tags for Writes

0.3.0 [2023-10-02]

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 [2023-08-11]

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

0.1.0 [2023-06-09]

  • initial release of new client version