8000 Releases · InfluxCommunity/influxdb3-python · GitHub
[go: up one dir, main page]

Skip to content

Releases: InfluxCommunity/influxdb3-python

v0.14.0

18 Jun 12:45
Compare
Choose a tag to compare

Features

  1. #141 Move "setuptools" package to build dependency.
  2. #142: Support fast writes without waiting for WAL
    persistence:
    • New write option (WriteOptions.no_sync) added: True value means faster write but without the confirmation that
      the data was persisted. Default value: False.
    • Supported by self-managed InfluxDB 3 Core and Enterprise servers only!
    • Also configurable via environment variable (INFLUX_WRITE_NO_SYNC).
    • Long precision string values added from v3 HTTP API: "nanosecond", "microsecond", "millisecond",
      "second" ( in addition to the existing "ns", "us", "ms", "s").
  3. #145: Improve the document wording for README.md

v0.13.0

20 May 14:33
Compare
Choose a tag to compare

Features

  1. #130: Remove org parameters from the example code because It is not mandatory in Influxdb3
  2. #139: Supports environment variables with the same name like other clients

v0.12.0

26 Mar 09:39
Compare
Choose a tag to compare

Features

  1. #123: Introduces query_async() method. From this release the client now has a query_async() method that takes advantage of asyncio's event loop to run query calls in their own executor.

For example:

    table = await client.query_async(query)

Bug Fixes

  1. #121: Fix use of arguments verify_ssl and ssl_ca_cert in QueryApi.

0.11.0

27 Feb 13:08
Compare
Choose a tag to compare

Bug Fixes

  1. #119: Fix use of proxy argument in client and query_api to use in channel solution for GRPC proxy.

0.10.0

27 Nov 08:17
Compare
Choose a tag to compare

0.10.0 [2024-11-27]

Bug Fixes

  1. #113: Fix import error of PolarsDataframeSerializer in batching mode

What's Changed

New Contributors

Full Changelog: v0.9.0...v0.10.0

0.9.0

13 Sep 08:04
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.8.0...v0.9.0

0.8.0

12 Aug 09:49
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.7.0...v0.8.0

0.7.0

11 Jul 10:54
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.6.1...v0.7.0

0.6.1

25 Jun 08:57
Compare
Choose a tag to compare

What's Changed

  • fix: missing module declaration by @bednar in #98

Full Changelog: v0.6.0...v0.6.1

0.6.0

24 Jun 09:22
Compare
Choose a tag to compare 641B

What's Changed

  • feat: update user-agent and improve transport selection in queryClient by @karel-rehor in #92
  • feat: use build-in Python parsing feature for python >= 3.11 by @bednar in #89
  • refactor: to timezone specific datetime helpers to avoid use deprecated functions by @bednar in #86
  • chore: refactor init and extract Query API by @alespour in #93

New Contributors

Full Changelog: v0.5.0...v0.6.0

0