14
0
forked from pool/python-pysnmp

Accepting request 518732 from home:tbechtold:branches:devel:languages:python

- update to 4.3.9:
  - Deprecated UsmUserData initializaton parameters removed
  - Adapted to pyasn1 API changes introduced by release 0.3.1
  - Fix to a crash happening on inbound SNMP message having non-initialized
    fields
  - Fix to (persistent SNMP engine ID) file writing on Windows
  - Security fix to the bug introduced in 4.3.6: msgAuthoritativeEngineTime
    stopped changing over time and was returning the same timestamp (process
    start time). This fix makes it growing as it should.
  * Fixed import error in legacy NotificationOriginator implementation
  - More instrumentation hooks added addressing security failures
    auditing needs.
  - SNMP table indices correlation implemented within SMI framework.
    The opaque InetAddress type implemented. INET-ADDRESS-MIB included
    into the distribution.
  - SNMP table indices resolution logic made more robust against
    malformed indices.
  - Fixes to *lexicographicMode* option documentation to make it
    unambiguous.
  - The `ErrorIndication` object is now derived from `Exception` so
    that it could be raised in exceptions.
  - The `errorIndication` values produced by various parts of
    SNMP engine unified to be `ErrorIndication` instances. This fixes
    an issue with Twisted.
  - Embedded MIB modules rebuilt with the latest pysmi adding previously
    missing attributes like `status`, `description` etc.
  - Fixed potential SNMP engine crash on handling incoming message
    at unsupported security level
  - The getNext() and getBulk() calls of Twisted interface.
    now support ignoreNonIncreasingOid option.

OBS-URL: https://build.opensuse.org/request/show/518732
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pysnmp?expand=0&rev=24
This commit is contained in:
Thomas Bechtold
2017-08-25 12:12:41 +00:00
committed by Git OBS Bridge
parent 55b47a1b94
commit f3233d0b8f
4 changed files with 102 additions and 25 deletions

View File

@@ -1,3 +1,79 @@
-------------------------------------------------------------------
Fri Aug 25 11:52:26 UTC 2017 - tbechtold@suse.com
- update to 4.3.9:
- Deprecated UsmUserData initializaton parameters removed
- Adapted to pyasn1 API changes introduced by release 0.3.1
- Fix to a crash happening on inbound SNMP message having non-initialized
fields
- Fix to (persistent SNMP engine ID) file writing on Windows
- Security fix to the bug introduced in 4.3.6: msgAuthoritativeEngineTime
stopped changing over time and was returning the same timestamp (process
start time). This fix makes it growing as it should.
* Fixed import error in legacy NotificationOriginator implementation
- More instrumentation hooks added addressing security failures
auditing needs.
- SNMP table indices correlation implemented within SMI framework.
The opaque InetAddress type implemented. INET-ADDRESS-MIB included
into the distribution.
- SNMP table indices resolution logic made more robust against
malformed indices.
- Fixes to *lexicographicMode* option documentation to make it
unambiguous.
- The `ErrorIndication` object is now derived from `Exception` so
that it could be raised in exceptions.
- The `errorIndication` values produced by various parts of
SNMP engine unified to be `ErrorIndication` instances. This fixes
an issue with Twisted.
- Embedded MIB modules rebuilt with the latest pysmi adding previously
missing attributes like `status`, `description` etc.
- Fixed potential SNMP engine crash on handling incoming message
at unsupported security level
- The getNext() and getBulk() calls of Twisted interface.
now support ignoreNonIncreasingOid option.
- TextualConvention is now a new-style class.
- Fix to accidentally reset error-status when building confirmed class
SNMPv1 PDU.
- Fix to possible infinite recursion in TextualConvention.prettyIn().
- Fixed crash when attempting to report unsupported request/notification
PDU back to sender.
- Fix to low-level SNMP API example to accommodate changed pyasn1
SEQUENCE supporting iterator protocol.
- The pyasn1 version dependency bumped (0.2.3), SEQUENCE/SEQUENCE OF
API calls adjusted to accommodate changed pyasn1 API (in part
of .setComponentBy*() kw flags).
- Fixed crash on SNMP engine's invalid message counter increment.
- Switched from now unmaintained PyCrypto to PyCryptodome.
- Switched to new-style classes.
- NotificationType now allows additional var-binds specified as
MIB objects. A side effect of this change is that additional
var-binds can only be added prior to .resolveMibObjects() is
run.
- Non-standard (but apparently used by many vendors) Reeder AES192/256
key localization algorithm implemented and set as default for
usmAesCfb192Protocol and usmAesCfb256Protocol identifiers.
Original and more standard implementation can still be used
with the usmAesBlumenthalCfb192Protocol and
usmAesBlumenthalCfb192Protocol IDs respectively.
- TextualConvention.prettyOut() improved to produce prettier and
more SMI-compliant output.
- TextualConvention.prettyIn() implemented to handle DISPLAY-HINT
based value parsing.
- Fix to NotificationType to make additional var-binds overriding
MIB objects implicitly included through NOTIFICATION-TYPE OBJECTS.
- Fix to SNMP engine boots counter persistence on Python 3.
- Fix to Pythonized MIBs loading when only .pyc files are
present (e.g. py2exe/cx_freeze environments).
- Fix broken 3DES key localization and encryption procedures.
- Updated IP address for demo.snmplabs.com in examples.
- Missing index added to bundled RFC1213::atEntry MIB table.
- Twisted integration made Python3 compatible.
- Accommodated ASN.1 SEQUENCE iteration rules change in upcoming pyasn1
version.
- Author's email changed, copyright extended to 2017.
- convert to singlespec
- Adjust Requires and BuildRequires according to setup.py
-------------------------------------------------------------------
Sun Jul 31 19:14:02 UTC 2016 - mardnh@gmx.de