Releases: influxdata/influxdb-client-go
Releases · influxdata/influxdb-client-go
v2.3.0
Breaking change
#253 Interface log.Logger
extended with LogLevel() uint
getter.
Features
#241,#248 Synced with InfluxDB 2.0.5 swagger:
- Setup (onboarding) now sends correctly retentionDuration if specified
RetentionRule
used inBucket
now containsShardGroupDurationSeconds
to specify the shard group duration.
Documentation
- #242 Documentation improvements:
- Custom server API example now shows how to create DBRP mapping
- Improved documentation about concurrency
- #251 Fixed Readme.md formatting
Bug fixes
v2.2.3
v2.2.2
v2.2.1
v0.2.0
Features
Adds a write option WithRetrySleepLimit
that imposes a time limit on retry sleeping This limit is enforced for both "come back later" sleeping informed by the write error, and configured "backoff" sleeping configured in the writer library.
This release is based off v0.1.4, the currently in-use release in IDPE and is intended to land there. This release does not include the changes in v0.1.5.
v2.2.0
v2.1.0
Features
- #193 Added authentication using username and password. See
UsersAPI.SignIn()
andUsersAPI.SignOut()
- #204 Synced with InfluxDB 2 RC0 swagger. Added pagination to Organizations API and
After
paging param to Buckets API.
Bug fixes
- #191 Fixed
QueryTableResult.Next()
failed to parse boolean datatype. - #192
Client.Close()
closes idle connections of internally created HTTP client
Documentation
v2.0.1
v2.0.0
Breaking changes
- #173 Removed previously deprecated API.
- #174 Removed orgs labels API cause it has been removed from the server API
- #175 Removed WriteAPI.Close() as it's managed by client
Features
- #165 Allow overriding the http.Client for the http.Service.
- #179 Unifying retry strategy among InfluxDB 2 clients: added exponential backoff.
- #180 Provided public logger API to enable overriding logging. It is also possible to disable logging.
- #181 Exposed HTTP service to allow custom server API calls. Added example.
Bug fixes
- #175 Fixed WriteAPIs management. Keeping a single instance for each org and bucket pair.
Documentation
- #185 DeleteAPI and sample WriteAPIBlocking wrapper for implicit batching
v1.4.0
Breaking changes
- #156 Fixing Go naming and code style violations:
- Introducing new *API interfaces with proper name of types, methods and arguments.
- This also affects the
Client
interface and theOptions
type. - Affected types and methods have been deprecated and they will be removed in the next release.