Skip to content

Releases: influxdata/influxdb-client-go

v1.3.0

19 Jun 12:39
Compare
Choose a tag to compare

Features

  1. #131 Labels API
  2. #136 Possibility to specify default tags

Bug fixes

  1. #132 Handle unsupported write type as string instead of generating panic
  2. #134 FluxQueryResult: support reordering of annotations

v1.2.0

15 May 12:26
Compare
Choose a tag to compare

Breaking Changes

  • #107 Renamed InfluxDBClient interface to Client, so the full name influxdb2.Client suits better to Go naming conventions
  • #125 WriteApi,WriteApiBlocking,QueryApi interfaces and related objects like Point, FluxTableMetadata, FluxTableColumn, FluxRecord, moved to the api ( and api/write, api/query) packages
    to provide consistent interface

Features

  1. #120 Health check API
  2. #122 Delete API
  3. #124 Buckets API

Bug fixes

  1. #108 Fix default retry interval doc
  2. #110 Allowing empty (nil) values in query result

Documentation

  • #112 Clarify how to use client with InfluxDB 1.8+

v1.1.0

24 Apr 17:50
Compare
Choose a tag to compare

Features

  1. #96 Authorizations API
  2. #99 Organizations API and Users API
  3. #100 HTTP request timeout made configurable

Docs

  1. #101 Added examples to API docs

v1.0.0

01 Apr 16:03
Compare
Choose a tag to compare

1.0.0 [2020-04-01]

Core

  • initial release of new client version

Apis

  • initial release of new client version

v0.1.5

07 Feb 21:38
63ee8da
Compare
Choose a tag to compare
Merge pull request #76 from influxdata/feat/makereqpublic

feat: make write request public

v0.1.4

31 Oct 15:54
0d1c625
Compare
Choose a tag to compare
  • #64 : fix to ensure line-protocol writes to API support uint64

v0.1.3

21 Oct 15:35
50e51c7
Compare
Choose a tag to compare

Features:

  • (#61) Support for writers.WithContext() used to inject a context.Context on buffer flushes.

Bug Fixes:

  • (#56) QueryCSV now respects Content-Encoding=gzip and handle appropriately.

Testing:

  • (#61) Improvement to query made during e2e test.

Documentation:

  • (#62) GH code highlighting in docs

v0.1.2

18 Oct 14:35
5c62df9
Compare
Choose a tag to compare
  • Fix ordering of arguments bucket and organization in writer.BucketWriter

v0.1.1

10 Oct 19:56
48ca925
Compare
Choose a tag to compare
  • Fix which ensures *writer.PointWriter.Close() does a final call to Flush() before returning.

v0.1.0

19 Sep 14:41
Compare
Choose a tag to compare

This release contains:

  • Query CSV (un)marshalling
  • End to end tests
  • New writer package containing a number of useful metric writer types which decorate influxdb.Client
  • A number of bug fixes