Update gnulib files.
[libtasn1.git] / NEWS
blob10f638eb7a66da6f2c704d50b60ec03c1b182311
1 Version 1.5 (unreleased)
2 - Update gnulib files.
4 Version 1.4 (released 2008-04-21)
5 - Update gnulib files.
6 - Replace uses of alloca with malloc.
8 Version 1.3 (released 2008-02-01)
9 - Handle 'INTEGER { ... } (a..b)' regression.
10   Revert parts of earlier fix.  asn1Parser can now again parse src/pkix.asn1.
11   The ASN1.c file was generated using Bison 2.3.
12 - Move examples from src/ to new directory examples/.
13 - Duplicate copy of divergated pkix.asn removed.
14 - Merge unnecessary lib/defines.h into lib/int.h.
15 - Configure no longer tries to use gcc -pipe.
16 - Update gnulib files.
17 - Fix mem leak in self-test.
19 Version 1.2 (released 2007-12-10)
20 - Update gnulib files.
22 Version 1.1 (released 2007-08-31)
23 - Fix bug that made asn1_check_version believe that 1.0 is older than 0.3.10.
25 Version 1.0 (released 2007-08-31)
26 - The self-tests, command line tools and build infrastructure have
27   been re-licensed from GPLv2 to GPLv3.
28 - Doc fixes.
29 - Update gnulib files.
31 Version 0.3.10 (released 2007-05-25)
32 - Update gnulib files.
34 Version 0.3.9 (released 2007-03-02)
35 - In generated code, config.h is pulled in if HAVE_CONFIG_H.
36 - Development changes: changed from CVS to GIT as an experiment.
37   I push my changes to <http://repo.or.cz/w/libtasn1.git>.
38 - Autoconf 2.61 and automake 1.10 is required.
40 Version 0.3.8 (released 2006-11-16)
41 - Fix reading of binary files in asn1Decoding, for Windows.
43 Version 0.3.7 (released 2006-10-19)
44 - When asn1_der_coding encoded a TYPE_NULL and the output buffer is
45   NULL, it would not increment the counter properly, so the size of
46   the required buffer would be off by one.  Fixed.  Reported by
47   Stephen Wrobleski <steve@localtoast.org>.
48 - Fix configure to respect user-definable flags.  Reported by "Diego
49   'Flameeyes' Pettenò" <flameeyes@gentoo.org>.
50 - The --help and --version outputs from the tools have been improved.
52 Version 0.3.6 (released 2006-08-13)
53 - Fix man pages to use \- instead of - for negative signs (as in "-1").
54 - Add -I's when building in src/, so that unistd.h etc is found on
55   systems that doesn't have them.
56 - Valgrind isn't used for cross-compilation by default, and there is
57   also --disable-valgrind-tests to unconditionally disable it.
58 - Valgrind is invoked without parameters, put things you like into
59   ~/.valgrindrc instead.
61 Version 0.3.5 (released 2006-06-27)
62 - Fix asn1_octet_der to handle writes of zero-length buffers, before
63   it did not write the ASN.1 length for a zero-length buffer.  This caused
64   ASN.1 encodings to be incorrect on 64-bit platforms.
65 - Add self test that attempt to trigger the above bug.
66 - Fix test of -Wno-pointer-sign.
67 - Improve cross-compilation to MinGW by using AC_LIBTOOL_WIN32_DLL.
69 Version 0.3.4 (released 2006-05-10)
70 - Really fix encodings.
71 - Add new self test, tests/Test_encoding.c.
72 - Self tests are ran under valgrind, if it is available.
73 - We test for the -Wno-pointer-sign parameter before using it.
75 Version 0.3.3 (released 2006-05-07)
76 - Add some 'const' to prototypes.
77 - Remove some 'unsigned' keywords.
78 - Corrected asn1_der_coding() bug introduced when it became reentrant.
79   Now it produces correct encodings.
81 Version 0.3.2
82 - Corrected bug in asn1_der_coding() which overwrited some
83   data in the original structure.
84 - The asn1Parser, asn1Coding and asn1Decoding programs are now installed.
86 Version 0.3.1
87 - Support constant size bit strings, as in 'BIT STRING (SIZE(42))'.
88   Reported by Cyril Holweck <cyril.holweck@q-free.com>.
89 - Add two more APIs required by GnuTLS.
90 - New public APIs:
91   asn1_find_node function
92   asn1_copy_node
94 Version 0.3.0
95 - Export DER utility functions, mostly so that GnuTLS can avoid using
96   libtasn1 internals.
97 - The _asn1* symbols are not exported in the shared library file (when
98   using GNU ld).
99 - The library can now be built using Visual Studio, and the project
100   files are included in windows/.
101 - New public APIs:
102   asn1_get_tag_der
103   asn1_octet_der
104   asn1_get_octet_der
105   asn1_bit_der
106   asn1_get_bit_der
107   asn1_get_length_der
108   asn1_length_der
110 Version 0.2.18
111 - Fix out-of-bounds access in DER decoding, reported by Evgeny Legerov.
112 - Add 'const' keyword to some prototypes, thanks to Frediano ZIGLIO.
113 - Fixed typo in src/Makefile.am to make it build with objdir != srcdir,
114   thanks to Bernard Leak.
115 - Update of gnulib files.
116 - Typo fixes in comments, e.g. finish libasn1 to libtasn1 renaming,
117   use LGPL boiler plate on some files in lib/.
119 Version 0.2.17
120 - Fixed typo to make it build.
122 Version 0.2.16
123 - Version script added again.
125 Version 0.2.15
126 - Gnulib is used to implement memmove if your system does not have it.
127 - Simplified assert/error handling slightly.
129 Version 0.2.14
130 - Some build fixes.
131 - Pkg-config script 'libtasn1.pc' added.
132 - Postal address to FSF in license updated.
134 Version 0.2.13
135 - Version number in libtasn1.h updated properly.
137 Version 0.2.12
138 - Manual converted to Texinfo format.
139 - Manual in GTK-DOC and DevHelp formats added.
140 - Man pages for all functions added.
141 - Various internal cleanups.
143 Version 0.2.11
144 - Added the self test with "make check" target
145 - Added management of ANY type with null length
146 - Corrected some writes to invalid data.
148 Version 0.2.10
149 - Added scripts to assist in libtasn1 version detection
150   from configure scripts.
151 - Corrected a DER decoding bug which was reported
152   by Max Vozeler <max@hinterhof.net>.
154 Version 0.2.9
155 - Accept negative numbers as range in INTEGER declarations
157 Version 0.2.8
158 - Add asn1_delete_element function
160 Version 0.2.7
161 - Added versioned symbols.
163 Version 0.2.6
164 - ASN.1 parser accepts these kinds of integer definitions:
165   "INTEGER (5 | 10)" and
166   "INTEGER (5)"
167 - Comments start at "--" and finish at the "end of line" or
168   with another "--". 
170 Version 0.2.5
171 - Bug fix in ordering procedure for SET OF and SEQUENCE OF
172   types coding.
173 - Manage structured format (BER encoding) in
174   asn1_der_decoding, asn1_decoding_element and 
175   asn1_der_decoding_startEnd for OCTET STRING type.
176 - Manage SEQUENCE and SET empty structure. 
177 - Manage "indefinite length method" in asn1_der_decoding,
178   asn1_decoding_element and asn1_der_decoding_startEnd 
179   for the following types:
180   SEQUENCE, SEQUENCE OF, SET, and SET OF.
181 - Bug fix in asn1_read_value with NULL parameter in case
182   of BIT STRING
184 Version 0.2.4
185 - Bug fix in asn1_der_coding with NULL parameter
186 - Manage DEFAULT option with OBJECT IDENTIFIER
188 Version 0.2.3
189 - Chenge asn1_find_structure_from_oid prototype
190 - Chenge asn1_find_structure_from_oid prototype
191 - Add ASN1_MEM_ALLOC_ERROR return value
193 Version 0.2.2
194 - Add vector length check in asn1_der_coding function
195 - Add vector length check in asn1_der_coding function
196 - Add vector length check in asn1_read_value function
197 - Add asn1_check_version function
199 Version 0.2.1
200 - Add asn1_find_structure_from_oid function
201 - Add asn1_read_tag function
203 Version 0.2.0
204 - Support for other platforms
205 - Change asn1_create_element function interface (dest_name not needed any more)
206 - Change OBJECT IDENTIFIER syntax: numbers must be separated by dot in 
207   asn1_write_element and asn1_read_element functions (e.g. "1.2.3.4")
209 Version 0.1.2
210 - Added GeneralString type
211 - Fixed a DER encoding bug when nested tags are used
213 Version 0.1.1
214 - Renamed to libtasn1
215 - Functions which return a string for error description
216   now accept a NULL argument.
217 - License is now GNU Lesser GPL
219 Version 0.1.0
220 - Initial release