Skip to content

Commit 7f121a2

Browse files
authored
Par 17310 (#163)
* fix(doc): Fix documentation to keep alive mechanism in queries for `xls` format * chorus(bump version): Bump version to avoid collision with tag belonging to fomer release candidate version
1 parent cdecb11 commit 7f121a2

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,16 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [5.0.4] - 2023-02-13
8+
### Chorus
9+
* Fix documentation (implementation remains the same) for keep-alive mechanism in queries for `xls` format
10+
* Bump version to avoid collision with tag belonging to fomer release candidate version
11+
712
## [5.0.3] - 2023-01-26
813
### Fixed
914
* Ingestion endpoint has an inactivity timeout that when reached closes the connection. `devo-sdk` is aware of such a timeout and restart connection before is reached. New parameter `inactivity_timeout` in class `Sender` to set up it. Its default value is 30 seconds.
1015
* Syntax error when calling `Path.is_file()`
11-
* Documentation related to parameter `key` removal at `devo.sender.lookup.Lookup.send_data_line` in version 5.0.0
12-
16+
* Documentation related to parameter `key` removal at `devo.sender.lookup.Lookup.send_data_line` in version 5.0.0
1317

1418
## [5.0.2] - 2023-01-04
1519
### Fixed

devo/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__description__ = 'Devo Python Library.'
22
__url__ = 'http://www.devo.com'
3-
__version__ = "5.0.3"
3+
__version__ = "5.0.4"
44
__author__ = 'Devo'
55
__author_email__ = 'support@devo.com'
66
__license__ = 'MIT'

docs/api/api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -432,12 +432,12 @@ Client support several modes for supporting this mechanism. The mode is set up i
432432
| json/simple/compact | `DEFAULT_KEEPALIVE_TOKEN` | `b' '` | `b' '` | `b' '` | `b' '` |
433433
| msgpack | `NO_KEEPALIVE_TOKEN` | *Not supported* | *Not supported* | *Not supported* | *Not supported* |
434434
| csv | `DEFAULT_KEEPALIVE_TOKEN` | Mechanism not used | `\n` | `,+\n` <sup>1</sup> | `str` *token* |
435-
| tsv | `DEFAULT_KEEPALIVE_TOKEN` | Mechanism not used | `\n` | `\t+\n` <sup>1</sup> | `str`*token* |
436-
| xls | `DEFAULT_KEEPALIVE_TOKEN` | Mechanism not used | `\n` | *Not supported* <sup>2</sup> | *Not supported* <sup>2</sup> |
435+
| tsv | `DEFAULT_KEEPALIVE_TOKEN` | Mechanism not used | `\n` | `\t+\n` <sup>1</sup> | `str`*token* |
436+
| xls | `NO_KEEPALIVE_TOKEN` | *Not supported* | *Not supported* | *Not supported* <sup>2</sup> | *Not supported* <sup>2</sup> |
437437

438438
<sup>1</sup> the `csv` and `tsv` token contains as many separator chars (`,` or `\t`) as columns/fields the response has minus 1, followed by `\n` (new line char)
439439

440-
<sup>2</sup> `xls` does support `EMPTY_EVENT_KEEPALIVE_TOKEN` by inserting empty lines in Excel file. As the Client can not *clean* these lines, the mode was not supported.
440+
<sup>2</sup> `xls` does support `EMPTY_EVENT_KEEPALIVE_TOKEN` by inserting empty lines in Excel file. As the Client can not *clean* these lines, the mode was not supported in this implementation.
441441

442442
## CLI USAGE
443443

0 commit comments

Comments
 (0)