You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+51-1Lines changed: 51 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,57 @@
1
1
# Change Log
2
2
3
-
##0.13.0 [unreleased]
3
+
# 0.17.0 [unreleased]
4
4
5
+
### CI
6
+
7
+
1.[#164](https://github.com/InfluxCommunity/influxdb3-python/pull/164): Fix pipelines not downloading the correct python images.
8
+
9
+
## 0.16.0 [2025-09-15]
10
+
11
+
### Features
12
+
13
+
1.[#158](https://github.com/InfluxCommunity/influxdb3-python/pull/158) Improved parameters for setting timeouts
14
+
-`InfluxDB3Client()` constructor now directly specifies
15
+
-`write_timeout` - timeout in milliseconds to be used when writing data.
16
+
-`query_timeout` - timeout in milliseconds to be used when querying data.
17
+
- Timeouts can be specifically overridden in direct method calls.
18
+
-`client.write()` now propagates the argument `_request_timeout` as an `int` in milliseconds on the call stack
19
+
even in batching mode.
20
+
-`client.query()` now propagates the argument `timeout` as a `float` in seconds on the call stack.
21
+
22
+
### CI
23
+
24
+
1.[#153](https://github.com/InfluxCommunity/influxdb3-python/pull/153) Add tests for arm64 CircleCI.
25
+
26
+
## 0.15.0 [2025-08-12]
27
+
28
+
### Features
29
+
30
+
1.[#146](https://github.com/InfluxCommunity/influxdb3-python/pull/146): Add function to get InfluxDB version.
31
+
2.[#149](https://github.com/InfluxCommunity/influxdb3-python/pull/149): Run integration tests against a locally started InfluxDB 3 Core server.
32
+
33
+
## 0.14.0 [2025-06-18]
34
+
35
+
### Features
36
+
37
+
1.[#141](https://github.com/InfluxCommunity/influxdb3-python/pull/141) Move "setuptools" package to build dependency.
38
+
2.[#142](https://github.com/InfluxCommunity/influxdb3-python/pull/142): Support fast writes without waiting for WAL
39
+
persistence:
40
+
- New write option (`WriteOptions.no_sync`) added: `True` value means faster write but without the confirmation that
41
+
the data was persisted. Default value: `False`.
42
+
-**Supported by self-managed InfluxDB 3 Core and Enterprise servers only!**
43
+
- Also configurable via environment variable (`INFLUX_WRITE_NO_SYNC`).
44
+
- Long precision string values added from v3 HTTP API: `"nanosecond"`, `"microsecond"`, `"millisecond"`,
45
+
`"second"` ( in addition to the existing `"ns"`, `"us"`, `"ms"`, `"s"`).
46
+
3.[#145](https://github.com/InfluxCommunity/influxdb3-python/pull/145): Improve the document wording for README.md
47
+
48
+
## 0.13.0 [2025-05-20]
49
+
50
+
### Features
51
+
52
+
1.[#130](https://github.com/InfluxCommunity/influxdb3-python/pull/130): Remove org parameters from the example code because It is not mandatory in Influxdb3
53
+
2.[#139](https://github.com/InfluxCommunity/influxdb3-python/pull/139): Supports environment variables with the same name as other clients
54
+
3.[#140](https://github.com/InfluxCommunity/influxdb3-python/pull/140): Query api will throw `InfluxdbClientQueryError` when receiving `ArrowException` from gRPC servers
0 commit comments