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