14
0
forked from pool/python-pysnmp

Accepting request 664286 from home:mnhauke

- Update to version 4.4.8
  * Fixed Pythonized MIB load (in the source form) - made sure to
    turn it into a code object prior to its execution
- Update to version 4.4.7
  * Exposed ASN.1 `Null` type through `rfc1902` module for
    convenience.
  * Use `compile()` before `exec`'ing MIB modules to attach filename
    to the stack frames (ultimately shown in traceback/debugger)
  * Fixed hlapi/v3arch transport target caching to ensure transport
    targets are different even if just timeout/retries options differ
  * Fixed hlapi LCD configurator to include `contextName`. Prior to
    this fix sending SNMPv3 TRAP with non-default `contextName` would
    fail.
  * Fixed possible duplicate key occurrence in the `OrderedDict`
    following a race condition
  * Fixed undefined name references in `inet_pton`/`inet_ntop`
    substitute routines for IPv6 in `TRANSPORT-ADDRESS-MIB.py`

OBS-URL: https://build.opensuse.org/request/show/664286
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pysnmp?expand=0&rev=37
This commit is contained in:
Tomáš Chvátal
2019-01-10 08:37:26 +00:00
committed by Git OBS Bridge
parent 43b85b6942
commit aaeb196608
4 changed files with 28 additions and 6 deletions

View File

@@ -1,3 +1,25 @@
-------------------------------------------------------------------
Thu Jan 10 08:22:22 UTC 2019 - mardnh@gmx.de
- Update to version 4.4.8
* Fixed Pythonized MIB load (in the source form) - made sure to
turn it into a code object prior to its execution
- Update to version 4.4.7
* Exposed ASN.1 `Null` type through `rfc1902` module for
convenience.
* Use `compile()` before `exec`'ing MIB modules to attach filename
to the stack frames (ultimately shown in traceback/debugger)
* Fixed hlapi/v3arch transport target caching to ensure transport
targets are different even if just timeout/retries options differ
* Fixed hlapi LCD configurator to include `contextName`. Prior to
this fix sending SNMPv3 TRAP with non-default `contextName` would
fail.
* Fixed possible duplicate key occurrence in the `OrderedDict`
following a race condition
* Fixed undefined name references in `inet_pton`/`inet_ntop`
substitute routines for IPv6 in `TRANSPORT-ADDRESS-MIB.py`
-------------------------------------------------------------------
Tue Dec 4 12:52:53 UTC 2018 - Matej Cepl <mcepl@suse.com>