Releases: influxdata/influxdb-client-js
Releases · influxdata/influxdb-client-js
v1.7.0
Features
- #238: Respect context path in client's url option.
- #240: Add helpers to let users choose how to deserialize dateTime:RFC3339 query response data type.
- #248: Change default InfluxDB URL to http://localhost:8086 .
- #250: Simplify precision for WriteApi retrieval.
- #253: Allow to simply receive the whole query response as a string.
- #257: Regenerate APIs from swagger.
Breaking Changes
- #258: Convert FluxTableColumn and FluxTableMetaData to interface.
This change is unlikely to cause any harm, since the clients are expected to use only FluxTableColumn/FluxTableMetaData
fields or methods that didn't change. See #258 for details
and backward compatibility notes.
Bug Fixes
- #237: Fixed line splitter of query results that might have produced wrong results for query responses with quoted data.
- #242: Repair escaping of backslash in line protocol string field.
- #246: Throw error on attempt to write points using a closed WriteApi instance.
- #252: Repair nesting of flux expressions.
- #259: Finish query when cancelled by the user.
1.6.0
Features
- #219: Sanitize arrays in parameterized flux queries.
- #226: Improve retry strategy.
- #231: Regenerate APIs from swagger.
- #233: Unify default retry strategy settings across all InfluxDB v2 clients.
- #234: Upgrade dependencies.
Breaking Changes
- #227: Change default number serializers to return null when no value is found.
This change affects the output oftableMeta.toObject(row)
, see #227 for details and backward compatibility notes.
Documentation
- #215: Add createBucket.js example.
- #218: Add default documentation to body property in generated APIs.
- #220: Generate API constructor with InfluxDB parameter.
- #222: Improve and validate code documentation.
- #224: Generate API documentation for gh-pages.
- #224: Include doc generation into CI and release process.
- #229: Add writeAdvanced.js example.
1.5.0
1.4.0
Features
- #186: Allow to create parameterized queries using flux tagged template.
- #191: Enhance API generator, regenerate APIs from swagger.
- #196: Remove influxql option from Query API.
- #200: Enhance Query API with collectRows and collectLines.
- #201: Allow to supply listener for write failures.
- #203: Regenerate APIs from swagger.