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