Releases: akarneliuk/pygnmi
Releases · akarneliuk/pygnmi
v0.8.15
v0.8.14
- Number of minor bug fixes and improvements.
- Adding support of
prefixtopygnmicli. Adding error propagation from child thread to main thread <https://github.com/akarneliuk/pygnmi/pull/142>Changes to u_val <https://github.com/akarneliuk/pygnmi/pull/144>Adding Master Arbitration support for Set <https://github.com/akarneliuk/pygnmi/pull/146>Adding bytes_val and leaflist_val with string_val parsing <https://github.com/akarneliuk/pygnmi/pull/151>
v0.8.13
Minor improvements and upgrades
v0.8.12
- Fixed operation of
no_qos_markingflag forpygnmicli.
v0.8.11
- Previous release introduced break for telemetry in
Juniperdue to inconsistency of communicated encoudings inCapabilities()and what is really supported inSubscribe().
v0.8.10
- Automatic detection of supported encoding and using it where applicable (e.g., in
subscribe2method). - Possibility to remove
qosfromSubscribefor platforms, which doesn't support it (e.g.,Juniper).
v0.8.9
- Default value for
encodingeverywhere is set toNone. - Method
capabilities()now is called as part ofconnect()to collect supported encoding as part of session establishing. - If
encodingis not specified by user, then it is auto-set based on the list collected viacapabilites()withjsonhaving the first priority follwed byjson_ietf.
v0.8.8
- Added new argument
-e / --encodingtopygnmiclito specify the encoding, which overrides the default one. Fix forIssue 58 <https://github.com/akarneliuk/pygnmi/issues/58>_. - Fixed minor bug with encoding handling inside
get()andsubscribe2()methods. - Simplified the code.
v0.8.7
- Fixed bug, when returned
json_valorjson_ietf_valis not processed correctly if the value is empty string. Fix forIssue 58 <https://github.com/akarneliuk/pygnmi/issues/58>_.
v0.8.6
- Fixed minor issue with establishing
insecurechannel. - Fixed bug with inabillity to specify
prefixin Subscribe messages forsubscribe2()method. - Important: It is recommended to use method
subscribe2()instead ofsubscribe()for building telemetry collectors withpygnmias this method is further developed and throroughle tested. The methodsubscribe()will be deprecated in future releases. - Functionality
qosis now properly supported insubscribe2()method.