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
- Added untrusted connection (skipping certificate validation) info to Readme
6
+
-`SecureWrite` and `SecureBatchWrite` demos enhanced with example about using untrusted connection
7
+
- Various fixes of typos
8
+
2
9
## 3.7.0 [2020-12-24]
3
10
### Features
4
11
-[#125](https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino/pull/124) - Added credentials to the InfluxDB 1.x validation endpoint (/ping). To leverage this, [enable ping authentication](https://docs.influxdata.com/influxdb/v1.8/administration/config/#ping-auth-enabled-false)
@@ -40,7 +47,7 @@
40
47
41
48
## 3.4.0 [2020-10-02]
42
49
### Features
43
-
-[#89](https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino/pull/89) - ESP8266 only - Added Max Fragment Length Negotiation for TLS communicaton to reduce memory allocation. If server supports MFLN, it saves ~10kB. Standalone InfluxDB OSS server doesn't support MFLN, Cloud yes. To leverage MFLN for standalone OSS, a reverse proxy needs to be used.
50
+
-[#89](https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino/pull/89) - ESP8266 only - Added Max Fragment Length Negotiation for TLS communication to reduce memory allocation. If server supports MFLN, it saves ~10kB. Standalone InfluxDB OSS server doesn't support MFLN, Cloud yes. To leverage MFLN for standalone OSS, a reverse proxy needs to be used.
44
51
-[#91](https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino/pull/91) - Improved API for settings of write and HTTP options:
45
52
- Introduced `WriteOptions` to wrap the write related options (write precision, batch-size, etc). It offers fluent style API allowing to change only the required options. `InfluxDBClient` has overloaded `setWriteOptions(const WriteOptions& writeOptions)` method.
46
53
- Introduced `HTTPOptions` to wrap the HTTP related options (e.g. reusing connection). It offers fluent style API allowing to change only the required options. `InfluxDBClient` has `setHTTPOptions(const HTTPOptions& httpOptions)` method.
@@ -62,7 +69,7 @@
62
69
-[NEW] Added possibility skip server certification validation (`setInsecure()` method)
63
70
-[NEW] Added possibility to query flux on secured InfluxDB 1.8 using V1 approach
64
71
-[NEW]`validateConnection()` can be used also for the [forward compatibility](https://docs.influxdata.com/influxdb/latest/tools/api/#influxdb-2-0-api-compatibility-endpoints) connection to InfluxDB 1.8
65
-
-[FIX] More precice default timestamp generating, up to microseconds
72
+
-[FIX] More precise default timestamp generating, up to microseconds
66
73
-[FIX] Debug compilation error
67
74
-[FIX] SecureBatchWrite compile error
68
75
@@ -91,6 +98,6 @@
91
98
## Version 3.0.0 (2020-02-11)
92
99
- New API with similar keywords as other official InfluxDB clients
93
100
- Richer set of data types for fields and timestamp methods
94
-
- Advanced features, such as implicit batching, automatic retrying on server backpressure and connection failure, along with secured communication over TLS supported for both devices and authentication
101
+
- Advanced features, such as implicit batching, automatic retrying on server back-pressure and connection failure, along with secured communication over TLS supported for both devices and authentication
Copy file name to clipboardExpand all lines: examples/QueryAggregated/QueryAggregated.ino
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
/**
2
2
* QueryAggregated Example code for InfluxDBClient library for Arduino.
3
3
*
4
-
* This example demonstrates querying basic aggreagated statistic parameters of WiFi signal level measured and stored in BasicWrite and SecureWrite examples.
4
+
* This example demonstrates querying basic aggregated statistic parameters of WiFi signal level measured and stored in BasicWrite and SecureWrite examples.
5
5
*
6
6
* Demonstrates connection to any InfluxDB instance accesible via:
0 commit comments