Releases: akarneliuk/pygnmi
Releases · akarneliuk/pygnmi
v0.7.1
- Added new argument
skip_verify
togNMIclient
, which removes a need to set theoverride
argument manually. However, the latter one still stays for the backward compatibility. - Changed default values for arguments
username
andpassword
fromNone
to""
, as with token-based authentication they don't need to be specified. - Added new argument
target
togNMIclient.get()
,gNMIclient.set()
, andgNMIclient.subscribe2()
methods. If provided, it addstarget
key toPath()
perGNMI Specification 2.2.2.1 <https://github.com/openconfig/reference/blob/master/rpc/gnmi/gnmi-specification.md#2221-path-target>
v0.7.0
- Added authentication with Token using
Authorization: Bearer TOKEN
, whereTOKEN
is a variable provided asgNMIclient(token=TOKEN)
key (needed for Arista CVP). - Added functionality to change
GRPC_SSL_CIPHER_SUITES
dynamically toHIGH
value (needed for Nokia SR OS).
v0.6.9
- Adding new documentation for mutual TLS feature.
v0.6.8
- Minor bug-fixing.
v0.6.7
- Added new
show_diff
key togNMIclient
object (supported valuesprint
andget
). When applied, it shows the changes happened to all keys following XPath from all arguments toSet()
RPC at the network devices. It is so fair tailored to OpenConfig YANG modules as it uses some architectural principles of OpenConfig YANG module to re-construct XPath. - Added an optional timeout to
connect()
method. - Minor bug-fixing.
v0.6.6
- Minor bug-fixing.
v0.6.5
- Implemented
prefix
andtimestamp
inSetResponse
message. - Implemented
alias
andatomic
inNotification
message. - Minor bug-fixing.
v0.6.4a
- Minor modifications of
pygnmcli
.
v0.6.4
- Minor bug-fixing.
v0.6.3
- Implemented
prefix
key in theUpdate
message. - Added possibility to provide password in STDIN rather than key.
- Minor bug-fixing.