pysnmp-sky/CHANGES.txt

43 lines
1.7 KiB
Plaintext
Raw Normal View History

2005-06-28 23:39:11 +02:00
Revision 4.1.1a
---------------
2005-03-01 16:38:24 +01:00
2005-06-28 23:39:11 +02:00
- UNSTABLE ALPHA RELEASE.
- SNMPv3 code first published
- SNMP engine and applications implemented on library level
- Major re-design towards SNMPv3-style API.
2005-03-01 16:38:24 +01:00
2005-06-28 23:39:11 +02:00
Release 4.0.2a
--------------
2005-03-01 16:38:24 +01:00
2005-06-28 23:39:11 +02:00
- Adopted to slightly changed asyncore API (as shipped with python 2,4)
2004-11-18 10:47:50 +01:00
2005-06-28 23:39:11 +02:00
Release 4.0.1a
--------------
2004-11-18 10:47:50 +01:00
- Minor bug/typo fixes, mostly in example/ scripts.
2005-06-28 23:39:11 +02:00
Release 4.0.0a
--------------
2004-11-15 14:23:55 +01:00
- UNSTABLE EARLY ALPHA RELEASE.
2004-11-08 21:03:59 +01:00
- Major re-design and re-implementation.
2004-11-15 14:11:44 +01:00
- Rudimental API versioning implemented to let incompatible package
branches to co-exist within the same Python installation.
2004-11-08 21:03:59 +01:00
- SMI framework designed and implemented. This framework provides
1) various access to MIB data 2) a way to implement custom MIB
instrumentation objects. There's also a tool for building SMI classes
from libsmi(3) output (smidump -f python).
- ASN.1 subtyping machinery implemented. Now dynamic ASN.1 instances
subtyping and quering becomes available. Previously, this has been done
through Python classes inheritance what proved to be a wrong concept.
- ASN.1 codecs framework re-designed and re-implemented aimed at a more
consistent design and better performance. Highlights include abstract
codec interface and serialized data caching (at encoder).
2004-11-08 21:03:59 +01:00
- Asn1Item constraints machinery re-implemented based on Mike C. Fletcher's
design and code. Now various constrains are implemented as stand-alone
objects serving interested Asn1Object derivatives through some abstract
protocol (that's probably the Decorator design pattern).
2004-11-08 21:03:59 +01:00
- ASN.1 tagging facility re-implemented along the client-server design
pattern. Besides this seems to be a more appropriate design, it allows
an easier way for dynamic subtyping.