Skip to content

Commit 3a0f53b

Browse files
authored
Merge pull request #167 from akarneliuk/0.8.14
0.8.15
2 parents 0d8bd96 + 7fb0e82 commit 3a0f53b

File tree

8 files changed

+552
-11
lines changed

8 files changed

+552
-11
lines changed

README.rst

+18-8
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Sample code example:
2929
if __name__ == '__main__':
3030
with gNMIclient(target=host, username='admin', password='admin', insecure=True) as gc:
3131
result = gc.get(path=['openconfig-interfaces:interfaces', 'openconfig-acl:acl'])
32-
32+
3333
print(result)
3434
3535
Also integration with Nornir is supported (`refer to examples <examples/nornir>`_).
@@ -86,24 +86,34 @@ Contributors
8686
Dev Log
8787
=======
8888

89+
Release **0.8.15**:
90+
91+
- IPv6 support: `Issue 166 <https://github.com/akarneliuk/pygnmi/pull/166>`_.
92+
- Double support: `Issue 165 <https://github.com/akarneliuk/pygnmi/pull/165>`_.
93+
8994
Release **0.8.14**:
95+
9096
- Number of minor bug fixes and improvements.
9197
- Adding support of `prefix` to `pygnmicli`.
92-
- `Adding error propagation from child thread to main thread <https://github.com/akarneliuk/pygnmi/pull/142>`
93-
- `Changes to u_val <https://github.com/akarneliuk/pygnmi/pull/144>`
94-
- `Adding Master Arbitration support for Set <https://github.com/akarneliuk/pygnmi/pull/146>`
95-
- `Adding bytes_val and leaflist_val with string_val parsing <https://github.com/akarneliuk/pygnmi/pull/151>`
98+
- `Adding error propagation from child thread to main thread <https://github.com/akarneliuk/pygnmi/pull/142>`_
99+
- `Changes to u_val <https://github.com/akarneliuk/pygnmi/pull/144>`_
100+
- `Adding Master Arbitration support for Set <https://github.com/akarneliuk/pygnmi/pull/146>`_
101+
- `Adding bytes_val and leaflist_val with string_val parsing <https://github.com/akarneliuk/pygnmi/pull/151>`_
96102

97103
Release **0.8.13**:
104+
98105
- Number of minor bug fixes and improvements.
99106

100107
Release **0.8.12**:
108+
101109
- Fixed operation of `no_qos_marking` flag for `pygnmicli`.
102110

103111
Release **0.8.11**:
112+
104113
- Previous release introduced break for telemetry in `Juniper` due to inconsistency of communicated encoudings in `Capabilities()` and what is really supported in `Subscribe()`.
105114

106115
Release **0.8.10**:
116+
107117
- Automatic detection of supported encoding and using it where applicable (e.g., in `subscribe2` method).
108118
- Possibility to remove `qos` from `Subscribe` for platforms, which doesn't support it (e.g., `Juniper`).
109119

@@ -257,7 +267,7 @@ Release **0.5.1**:
257267
- Fixed regexp warnings.
258268
- Changed the logging functionality.
259269
- Enabled Unix domain socket.
260-
- Added ``close()``
270+
- Added ``close()``
261271
- Many thanks for all contributors to make this release happen.
262272

263273
Release **0.5.0**:
@@ -438,7 +448,7 @@ Release **0.1.0**:
438448

439449
(c)2020-2022, karneliuk.com
440450

441-
.. |version| image:: https://img.shields.io/static/v1?label=latest&message=v0.8.14&color=success
451+
.. |version| image:: https://img.shields.io/static/v1?label=latest&message=v0.8.15&color=success
442452
.. _version: https://pypi.org/project/pygnmi/
443453
.. |tag| image:: https://img.shields.io/static/v1?label=status&message=stable&color=success
444454
.. _tag: https://pypi.org/project/pygnmi/
@@ -447,4 +457,4 @@ Release **0.1.0**:
447457
.. |project| image:: https://img.shields.io/badge/akarneliuk%2Fpygnmi-blueviolet.svg?logo=github&color=success
448458
.. _project: https://github.com/akarneliuk/pygnmi/
449459
.. |coverage| image:: https://img.shields.io/static/v1?label=coverage&message=68%&color=yellow
450-
.. _coverage: https://github.com/nedbat/coveragepy
460+
.. _coverage: https://github.com/nedbat/coveragepy

0 commit comments

Comments
 (0)