We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 33571d0 + 7500944 commit 5b51bdbCopy full SHA for 5b51bdb
CHANGELOG.md
@@ -1,11 +1,14 @@
1
# Changelog
2
-## 3.x.x [in progress]
+## 3.7.1 [in progress]
3
### Documentation
4
- [#134](https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino/pull/134):
5
- 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
9
+### Fixes
10
+ - [#137](https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino/pull/137) - Fixed parsing Flux response with unexpected annotations
11
+
12
## 3.7.0 [2020-12-24]
13
### Features
14
- [#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)
src/query/FluxParser.cpp
@@ -196,7 +196,9 @@ bool FluxQueryResult::next() {
196
}
197
parsingState = ParsingStateNameRow;
198
goto readRow;
199
- }
+ } else {
200
+ goto readRow;
201
+ }
202
return true;
203
204
test/server/server.js
@@ -230,6 +230,8 @@ app.post(prefix + '/api/v2/delete', (req,res) => {
230
231
var queryRes = {
232
"singleTable":`#datatype,string,long,dateTime:RFC3339,dateTime:RFC3339,dateTime:RFC3339,double,string,string,string,string
233
+#group,false,false,true,true,false,false,true,true,true,true
234
+#default,_result,,,,,,,,,
235
,result,table,_start,_stop,_time,_value,_field,_measurement,a,b
236
,,0,2020-02-17T22:19:49.747562847Z,2020-02-18T22:19:49.747562847Z,2020-02-18T10:34:08.135814545Z,1.4,f,test,1,adsfasdf
237
,,1,2020-02-17T22:19:49.747562847Z,2020-02-18T22:19:49.747562847Z,2020-02-18T22:08:44.850214724Z,6.6,f,test,3,adsfasdf
0 commit comments