]> Cypherpunks.ru repositories - pyderasn.git/blob - doc/news.rst
Inherit all errors from ASN1Error class
[pyderasn.git] / doc / news.rst
1 News
2 ====
3
4 .. _release4.4:
5
6 4.4
7 ---
8 * All errors are inherited from ASN1Error class
9
10 .. _release4.3:
11
12 4.3
13 ---
14 * Fix NumericString: space is allowed character
15 * Strict PrintableString sanitizing
16
17 .. _release4.2:
18
19 4.2
20 ---
21 * Removed ``lenindef``, ``ber_encoded`` attributes from the Choice --
22   they must be taken from underlying value, as Choice does not have its
23   own encoding
24 * Do not yield extra EOC PP for Any, having indefinite length encoding
25   and containing autodecoded DEFINED BY value
26
27 .. _release4.1:
28
29 4.1
30 ---
31 * ``bered`` attribute, meaning if object has BER-specific encoding, is
32   renamed to ``ber_encoded``
33 * ``bered`` attribute is replace with property showing if any of
34   underlying values are BER-encoded. If value has length indefinite
35   encoded explicit tag, value, if value contains BER-related encoding,
36   or if it contains other objects that are ``bered``, then it is ``bered``
37
38 .. _release4.0:
39
40 4.0
41 ---
42 * Default value is checked also for Sets, not for Sequences only
43 * **Incompatible** change: defaulted values in Sequence/Set are always
44   strictly checked, unless ``allow_default_values`` context option is
45   set. ``strict_default_existence`` option disappeared
46 * Strict Set/Set Of's values ordering check
47
48 .. _release3.14:
49
50 3.14
51 ----
52 * Additional encoding validness check: explicit tag must contain exactly
53   one object inside. Throw DecodeError otherwise
54 * ``allow_expl_oob`` context and command-line options allow skipping of
55   that check
56
57 .. _release3.13:
58
59 3.13
60 ----
61 * DecodeError's decode paths are separated with ``:``, instead of ``.``,
62   because of colliding with dots in OIDs
63 * Ability to print element decode paths with ``--print-decode-path``
64   command line option (and corresponding keyword argument)
65 * Ability to print tree's branch specified with ``--decode-path-only``
66
67 .. _release3.12:
68
69 3.12
70 ----
71 * Fix possible uncaught TypeError in Py2 with zero bytes inside the value
72 * Fix SequenceOf/SetOf raising BoundsError instead of DecodeError
73
74 .. _release3.11:
75
76 3.11
77 ----
78 * Fix uncaught UTCTime/GeneralizedTime decode error when dealing with
79   non ASCII-encoded values
80
81 .. _release3.10:
82
83 3.10
84 ----
85 * Fix long-standing bug with explicitly tagged objects inside the
86   Choice. If Choice had explicitly tagged value, then its ``.tlvlen``
87   reports the size without taking value's explicit tag in advance
88 * Add ``.fulllen`` and ``.fulloffset`` properties for all objects
89
90 .. _release3.9:
91
92 3.9
93 ---
94 * SEQUENCE's values are printed with field's name. Previously there was
95   the following output::
96
97     AlgorithmIdentifier SEQUENCE[OBJECT IDENTIFIER 1.3.14.3.2.26, [UNIV 5] ANY 0500 OPTIONAL]
98
99   now it is::
100
101     AlgorithmIdentifier SEQUENCE[algorithm: OBJECT IDENTIFIER 1.3.14.3.2.26; parameters: [UNIV 5] ANY 0500 OPTIONAL]
102 * Fixed EOC (Unicode character) repr printing issues under Python2
103
104 .. _release3.8:
105
106 3.8
107 ---
108 BER's EOC is explicitly shown during pprinting. Following notation::
109
110       15-2 [0,0,1576]-4  . content: [0] EXPLICIT [UNIV 16] ANY
111
112 is replaced with::
113
114       15-2∞ [0,0,1576]∞  . content: [0] EXPLICIT [UNIV 16] ANY
115     [...]
116     1587    [1,1,   0]   . content:  BER EOC
117     1589    [1,1,   0]   . content: EXPLICIT BER EOC
118
119 .. _release3.7:
120
121 3.7
122 ---
123 * BER decoding support
124 * BitString's ''H notation support
125 * ``termcolor`` package is included in the tarball
126
127 .. _release3.6:
128
129 3.6
130 ---
131 * Ability to set values during Sequence initialization
132
133 .. _release3.5:
134
135 3.5
136 ---
137 * Fix TagMismatch exception completeness during Choice and Set decoding.
138   Previously we will loose offset and decode_path information about
139   concrete TagMismatched entity
140
141 .. _release3.4:
142
143 3.4
144 ---
145 * Strict NumericString's value sanitation
146 * Invalid encoding in string types will raise ``DecodeError`` exception,
147   instead of ``Unicode*Error``
148 * Fixed DecodePathDefBy workability with Python 2.x
149
150 .. _release3.3:
151
152 3.3
153 ---
154 * Fix nasty BitString decoding bug: it could fail when data follows
155   encoded BitString value. There weren't any problems when BitString is
156   at the end of Sequence
157
158 .. _release3.2:
159
160 3.2
161 ---
162 * Slightly corrected colours, now visible on white background
163
164 .. _release3.1:
165
166 3.1
167 ---
168 * Fix bug related to DecodeError showing with DecodePathDefBy entities
169 * Respect ``NO_COLOR`` environment variable
170
171 .. _release3.0:
172
173 3.0
174 ---
175 * :py:func:`pyderasn.decode_path_defby` is replaced with
176   :py:class:`pyderasn.DecodePathDefBy`
177 * Ability to turn colourized terminal output by calling
178   ``pprint(..., with_colours=True)``. You will need
179   `termcolor package <https://pypi.org/project/termcolor/>`__
180
181 .. _release2.1:
182
183 2.1
184 ---
185 * Fixed invalid offset calculation when dealing with DEFINED BY objects
186   having explicit tags
187
188 .. _release2.0:
189
190 2.0
191 ---
192 * BIT STRINGs can also be :ref:`DEFINED BY <definedby>`
193 * Decoding process can be governed with optional :ref:`ctx <ctx>`
194   keyword argument to ``decode()`` method
195 * :ref:`defines_by_path <defines_by_path_ctx>` option is now
196   :ref:`decode context <ctx>` option, not a keyword argument
197 * Ability to do ``strict validation``
198   of defaulted values met in sequence, raising an exception
199
200 .. _release1.6:
201
202 1.6
203 ---
204 Ability to skip specified number of bytes (``--skip``) in command line
205 utility.
206
207 .. _release1.5:
208
209 1.5
210 ---
211 * Generic decoder's scheme and pretty printer
212   (:py:func:`pyderasn.generic_decoder`) can be used in libraries
213 * Ability to specify :ref:`defines_by_path <defines_by_path_ctx>`
214   during command line invocation
215
216 .. _release1.4:
217
218 1.4
219 ---
220 Ability to automatically decode :ref:`DEFINED BY <definedby>` fields
221 inside SEQUENCEs.
222
223 .. _release1.3:
224
225 1.3
226 ---
227 Removed ``__lt__``/``__eq__`` from base class, as pylint likes it.
228
229 .. _release1.2:
230
231 1.2
232 ---
233 Full rich comparison operators added.
234
235
236 .. _release1.1:
237
238 1.1
239 ---
240 Trivial README addition.
241
242 .. _release1.0:
243
244 1.0
245 ---
246 Initial release.