]> Cypherpunks.ru repositories - pyderasn.git/blob - doc/news.rst
copy/pickle friendly Obj
[pyderasn.git] / doc / news.rst
1 News
2 ====
3
4 .. _release6.0:
5
6 6.0
7 ---
8 * ``.copy()`` method removed: ``copy.copy()`` is preferred way to copy
9   objects now
10 * Copies made previously with ``.copy()`` lacked ``.defined`` field,
11   now they are not
12 * All objects are friendly to ``pickle`` libraries
13
14 .. _release5.6:
15
16 5.6
17 ---
18 * Convenient ``.decod()`` method, that raises if tail is not empty
19 * Control characters (like newlines) of text fields in pprinted output
20   are escaped
21 * Ability to allow asterisk and ampersand characters
22   (``allow_asterisk``, ``allow_ampersand`` kwargs) in
23   ``PrintableString``, that unfortunately could be met
24   in X.509 certificates
25
26 .. _release5.5:
27
28 5.5
29 ---
30 * PEP-396 compatible module's ``__version__``
31
32 .. _release5.4:
33
34 5.4
35 ---
36 * Do not shadow underlying ``DecodeError`` during decoding of optional
37   sequence's field
38
39 .. _release5.3:
40
41 5.3
42 ---
43 * Forbid any later GNU GPL version autousage (project's licence now is
44   GNU LGPLv3 only)
45 * Fix ``defines_by_path`` context option usage example
46
47 .. _release5.2:
48
49 5.2
50 ---
51 * Fix fallbacked ``colored()`` function workability,
52   if no ``termcolor`` is installed
53
54 .. _release5.1:
55
56 5.1
57 ---
58 * Fix empty ``--oids`` workability
59
60 .. _release5.0:
61
62 5.0
63 ---
64 * Ability to specify multiple OID mappings for pprinted output
65   (``oids`` keyword argument is renamed to ``oid_maps``)
66
67 .. _release4.9:
68
69 4.9
70 ---
71 * Minor decode speed improvements
72 * Much faster UTCTime/GeneralizedTime decoders
73 * Stricter UTCTime/GeneralizedTime DER encoding check: trailing zeroes
74   are forbidden
75 * Valid DER encoding of GeneralizedTime with microseconds: no trailing
76   zeroes appended
77
78 .. _release4.7:
79
80 4.7
81 ---
82 * ObjectIdentifier has ``ber_encoded`` set to True, if non-normalized
83   arc encoding is met
84 * Preserve BER-related attributes during ``copy()``
85
86 .. _release4.6:
87
88 4.6
89 ---
90 * Added `COMPLI <https://github.com/YuryStrozhevsky/asn1-test-suite>`__
91   ASN.1:2008 test suite. PyDERASN passes it (except for REAL values),
92   but it is more strict sometimes and aimed to be compliant with X.690-201508
93 * Check for arc values normalization in ObjectIdentifier.
94   Forbid non-normalized in DER encoding
95
96 .. _release4.5:
97
98 4.5
99 ---
100 * ``ctx`` parameter can be safely used in .decode() and won't be muted
101 * PP nametuple contains reference to the ASN1Obj itself
102 * ``colonize_hex`` function useful for pretty printing
103 * Integer values are also pretty printed in hexadecimal form
104
105 .. _release4.4:
106
107 4.4
108 ---
109 * All errors are inherited from ASN1Error class
110 * NumericString/PrintableString has ``allowable_chars`` property holding
111   all allowed characters
112
113 .. _release4.3:
114
115 4.3
116 ---
117 * Fix NumericString: space is allowed character
118 * Strict PrintableString sanitizing
119
120 .. _release4.2:
121
122 4.2
123 ---
124 * Removed ``lenindef``, ``ber_encoded`` attributes from the Choice --
125   they must be taken from underlying value, as Choice does not have its
126   own encoding
127 * Do not yield extra EOC PP for Any, having indefinite length encoding
128   and containing autodecoded DEFINED BY value
129
130 .. _release4.1:
131
132 4.1
133 ---
134 * ``bered`` attribute, meaning if object has BER-specific encoding, is
135   renamed to ``ber_encoded``
136 * ``bered`` attribute is replace with property showing if any of
137   underlying values are BER-encoded. If value has length indefinite
138   encoded explicit tag, value, if value contains BER-related encoding,
139   or if it contains other objects that are ``bered``, then it is ``bered``
140
141 .. _release4.0:
142
143 4.0
144 ---
145 * Default value is checked also for Sets, not for Sequences only
146 * **Incompatible** change: defaulted values in Sequence/Set are always
147   strictly checked, unless ``allow_default_values`` context option is
148   set. ``strict_default_existence`` option disappeared
149 * Strict Set/Set Of's values ordering check
150
151 .. _release3.14:
152
153 3.14
154 ----
155 * Additional encoding validness check: explicit tag must contain exactly
156   one object inside. Throw DecodeError otherwise
157 * ``allow_expl_oob`` context and command-line options allow skipping of
158   that check
159
160 .. _release3.13:
161
162 3.13
163 ----
164 * DecodeError's decode paths are separated with ``:``, instead of ``.``,
165   because of colliding with dots in OIDs
166 * Ability to print element decode paths with ``--print-decode-path``
167   command line option (and corresponding keyword argument)
168 * Ability to print tree's branch specified with ``--decode-path-only``
169
170 .. _release3.12:
171
172 3.12
173 ----
174 * Fix possible uncaught TypeError in Py2 with zero bytes inside the value
175 * Fix SequenceOf/SetOf raising BoundsError instead of DecodeError
176
177 .. _release3.11:
178
179 3.11
180 ----
181 * Fix uncaught UTCTime/GeneralizedTime decode error when dealing with
182   non ASCII-encoded values
183
184 .. _release3.10:
185
186 3.10
187 ----
188 * Fix long-standing bug with explicitly tagged objects inside the
189   Choice. If Choice had explicitly tagged value, then its ``.tlvlen``
190   reports the size without taking value's explicit tag in advance
191 * Add ``.fulllen`` and ``.fulloffset`` properties for all objects
192
193 .. _release3.9:
194
195 3.9
196 ---
197 * SEQUENCE's values are printed with field's name. Previously there was
198   the following output::
199
200     AlgorithmIdentifier SEQUENCE[OBJECT IDENTIFIER 1.3.14.3.2.26, [UNIV 5] ANY 0500 OPTIONAL]
201
202   now it is::
203
204     AlgorithmIdentifier SEQUENCE[algorithm: OBJECT IDENTIFIER 1.3.14.3.2.26; parameters: [UNIV 5] ANY 0500 OPTIONAL]
205 * Fixed EOC (Unicode character) repr printing issues under Python2
206
207 .. _release3.8:
208
209 3.8
210 ---
211 BER's EOC is explicitly shown during pprinting. Following notation::
212
213       15-2 [0,0,1576]-4  . content: [0] EXPLICIT [UNIV 16] ANY
214
215 is replaced with::
216
217       15-2∞ [0,0,1576]∞  . content: [0] EXPLICIT [UNIV 16] ANY
218     [...]
219     1587    [1,1,   0]   . content:  BER EOC
220     1589    [1,1,   0]   . content: EXPLICIT BER EOC
221
222 .. _release3.7:
223
224 3.7
225 ---
226 * BER decoding support
227 * BitString's ''H notation support
228 * ``termcolor`` package is included in the tarball
229
230 .. _release3.6:
231
232 3.6
233 ---
234 * Ability to set values during Sequence initialization
235
236 .. _release3.5:
237
238 3.5
239 ---
240 * Fix TagMismatch exception completeness during Choice and Set decoding.
241   Previously we will loose offset and decode_path information about
242   concrete TagMismatched entity
243
244 .. _release3.4:
245
246 3.4
247 ---
248 * Strict NumericString's value sanitation
249 * Invalid encoding in string types will raise ``DecodeError`` exception,
250   instead of ``Unicode*Error``
251 * Fixed DecodePathDefBy workability with Python 2.x
252
253 .. _release3.3:
254
255 3.3
256 ---
257 * Fix nasty BitString decoding bug: it could fail when data follows
258   encoded BitString value. There weren't any problems when BitString is
259   at the end of Sequence
260
261 .. _release3.2:
262
263 3.2
264 ---
265 * Slightly corrected colours, now visible on white background
266
267 .. _release3.1:
268
269 3.1
270 ---
271 * Fix bug related to DecodeError showing with DecodePathDefBy entities
272 * Respect ``NO_COLOR`` environment variable
273
274 .. _release3.0:
275
276 3.0
277 ---
278 * :py:func:`pyderasn.decode_path_defby` is replaced with
279   :py:class:`pyderasn.DecodePathDefBy`
280 * Ability to turn colourized terminal output by calling
281   ``pprint(..., with_colours=True)``. You will need
282   `termcolor package <https://pypi.org/project/termcolor/>`__
283
284 .. _release2.1:
285
286 2.1
287 ---
288 * Fixed invalid offset calculation when dealing with DEFINED BY objects
289   having explicit tags
290
291 .. _release2.0:
292
293 2.0
294 ---
295 * BIT STRINGs can also be :ref:`DEFINED BY <definedby>`
296 * Decoding process can be governed with optional :ref:`ctx <ctx>`
297   keyword argument to ``decode()`` method
298 * :ref:`defines_by_path <defines_by_path_ctx>` option is now
299   :ref:`decode context <ctx>` option, not a keyword argument
300 * Ability to do ``strict validation``
301   of defaulted values met in sequence, raising an exception
302
303 .. _release1.6:
304
305 1.6
306 ---
307 Ability to skip specified number of bytes (``--skip``) in command line
308 utility.
309
310 .. _release1.5:
311
312 1.5
313 ---
314 * Generic decoder's scheme and pretty printer
315   (:py:func:`pyderasn.generic_decoder`) can be used in libraries
316 * Ability to specify :ref:`defines_by_path <defines_by_path_ctx>`
317   during command line invocation
318
319 .. _release1.4:
320
321 1.4
322 ---
323 Ability to automatically decode :ref:`DEFINED BY <definedby>` fields
324 inside SEQUENCEs.
325
326 .. _release1.3:
327
328 1.3
329 ---
330 Removed ``__lt__``/``__eq__`` from base class, as pylint likes it.
331
332 .. _release1.2:
333
334 1.2
335 ---
336 Full rich comparison operators added.
337
338
339 .. _release1.1:
340
341 1.1
342 ---
343 Trivial README addition.
344
345 .. _release1.0:
346
347 1.0
348 ---
349 Initial release.