Releases: influxdata/influxdb-client-go
Releases · influxdata/influxdb-client-go
v1.3.0
Features
- #131 Labels API
- #136 Possibility to specify default tags
Bug fixes
- #132 Handle unsupported write type as string instead of generating panic
- #134 FluxQueryResult: support reordering of annotations
v1.2.0
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
- #120 Health check API
- #122 Delete API
- #124 Buckets API
Bug fixes
- #108 Fix default retry interval doc
- #110 Allowing empty (nil) values in query result
Documentation
- #112 Clarify how to use client with InfluxDB 1.8+
v1.1.0
Features
- #96 Authorizations API
- #99 Organizations API and Users API
- #100 HTTP request timeout made configurable
Docs
- #101 Added examples to API docs
v1.0.0
1.0.0 [2020-04-01]
Core
- initial release of new client version
Apis
- initial release of new client version
v0.1.5
Merge pull request #76 from influxdata/feat/makereqpublic
feat: make write request public
v0.1.4
- #64 : fix to ensure line-protocol writes to API support uint64
v0.1.3
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
- Fix ordering of arguments
bucket
and organization
in writer.BucketWriter
v0.1.1
- Fix which ensures
*writer.PointWriter.Close()
does a final call to Flush()
before returning.
v0.1.0
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