Fix cvs2cl parameters.
[libidn.git] / NEWS
blobc47b8221c8548a4f9cf95b8be26ef4765dd2e597
1 Libidn NEWS -- History of user-visible changes.                 -*- outline -*-
2 Copyright (C) 2002, 2003 Simon Josefsson
3 See the end for copying conditions.
5 * Version 0.2.3 (released 2003-08-26)
7 ** Example 4 was the same as example 3, now changed to demo ToUnicode.
9 ** Documentation improvements.
11 ** Prototype cleanups.
12 The proper enum types (Stringprep_rc, Idna_rc, etc) are now used in
13 several places where plain int where used before.  String lengths are
14 handled by (s)size_t instead of int.
16 ** API and ABI is backwards compatible with the previous version.
18 * Version 0.2.2 (released 2003-08-13)
20 ** Fixed problem with strings longer than 4GB in punycode functions.
21 The punycode code cannot handle strings longer than 4GB.  The code now
22 return PUNYCODE_BAD_INPUT on too long input, instead of failing in an
23 unknown way.
25 ** The "idn --idna-to-unicode" command now output locale encoded strings.
27 ** Build fixes, bug fixes.
29 ** API and ABI is backwards compatible with the previous version.
31 * Version 0.2.1 (released 2003-07-04)
33 ** Don't reject zero-length trailing labels as in, e.g., "www.example.org.".
34 The IDNA RFC is not clear on this topic, zero-length labels in general
35 are forbidden by the ToASCII algorithm in section 4.1 step 8, but the
36 terminology section define, inside a parenthesis, that the zero-length
37 root label is in fact not considered a label at all in IDNA.
39 ** Bug fixes.
41 ** API and ABI is backwards compatible with the previous version.
43 * Version 0.2.0 (released 2003-06-19)
45 ** Unicode code point data is now uint32_t, defined in "idn-int.h".
46 A header file "idn-int.h" is generated and installed to make sure the
47 "uint32_t" data type is available on all platforms.  The reason for
48 this change is that on 64-bit platforms, the application was required
49 to convert 32 bit integers (which is how Unicode code points are
50 typically represented) into 64 bit integers before calling libidn
51 functions.
53 ** New idna_*() functions have improved flags handling.
54 The allowunassigned and usestd3asciirules parameters were collapsed
55 into a flags parameter, that can take on the IDNA_ALLOW_UNASSIGNED and
56 IDNA_USE_STD3_ASCII_RULES values.  This allows for easier extensions
57 to support, e.g., Unicode 4.0 or RFC 952 ASCII rules checking.  Note
58 that the old entry points are unmodified (in this regard), and new
59 entry points with this modification were added.
61 ** The manual was moved into a separate directory doc/.
63 ** Bugfixes.
65 ** API and ABI is not backwards compatible.
66 In punycode.h and stringprep.h the "unsigned long" data type was
67 changed into "uint32_t", which cause a API and ABI missmatch.  For
68 idna.h, the old entry points that used "unsigned long" still exist,
69 and new entry points that uses "uint32_t" was added.  To update your
70 application, you probably only need to change "unsigned long" to
71 "uint32_t".  As a result of these changes, the shared object version
72 has been increased.
74 * Version 0.1.15 (released 2003-06-07)
76 ** Bugfixes.
78 ** API and ABI is backwards compatible with the previous version.
80 * Version 0.1.14 (released 2003-05-10)
82 ** Experimental documentation generation in contrib/doxygen/.
83 Simply invoke "doxygen" in that directory and it should build the
84 documentation.
86 ** Lisp API bug fixes.
88 ** API and ABI is backwards compatible with the previous version.
90 * Version 0.1.13 (released 2003-03-13)
92 ** Unfinished Java *.class files implementing the libidn API.
93 See the contrib/java/ directory.  It is implemented using the Java
94 Native Interface, and light initial testing indicate interoperability
95 between GCJ, IBM's JDK and Sun's JDK.
97 ** Building is now silent when gengetopt is not present.
99 ** Bug fixes.
101 ** API and ABI is backwards compatible with the previous version.
103 * Version 0.1.12 (released 2003-03-06)
105 ** Building libidn doesn't require gengetopt.
106 Warnings are still printed though.  Gengetopt will be replaced by argp
107 eventually.
109 ** Command line tool "idn" supports stringprep too.
111 ** New stringprep API entry point: stringprep_profile().
112 It takes a name of the stringprep profile as an argument instead of
113 the stringprep table structure.
115 ** stringprep_*.h are deprecated and will be removed in the future.
116 All symbols have been moved to stringprep.h.  The reasons are that (1)
117 the files typically only defined one CPP macro and exported one symbol
118 definition, which is wasteful as it generates too much work in the
119 manual, and (2) using one header file for all profiles allows easier
120 access to all stringprep profiles during runtime.  Note that the files
121 are still installed, but they only #include stringprep.h now, for
122 backwards compatibility.
124 ** GNU Libc add-on build instructions updated to GNU Libc 2.3.2.
126 ** SASLprep stringprep profile added.
128 ** An online interface to libidn written in PHP added to contrib/web/.
130 ** API and ABI is backwards compatible with the previous version.
132 * Version 0.1.11 (released 2003-02-26)
134 ** Command line application "idn" is included.
135 A simple wrapper around the library that allows you to invoke punycode
136 encoding/decoding and IDNA ToASCII/ToUnicode on the command line.
138 ** Emacs Lisp interface for punycode and IDNA included.
139 See punycode.el and idna.el.
141 ** API and ABI is backwards compatible with the previous version.
143 * Version 0.1.10 (released 2003-02-21)
145 ** idna_*_to_ace() and idna_*ace_to_*() are deprecated in favor of
146 ** idna_to_ascii_from_*() and idna_to_unicode_*_from_*() respectively.
147 The reason was that the old interfaces did not accept the
148 AllowUnassigned and UseSTD3ASCIIRules flags.  Note that the old
149 functions are not removed, but will be in the future.
151 ** IPS iSCSI stringprep profile added.
153 ** A new contrib/ directory added.
154 Currently it contains a Python interface to Libidn, contributed by
155 Stephane Bortzmeyer.
157 ** idna.h and punycode.h are now installed by "make install".
159 ** API and ABI is backwards compatible with the previous version.
161 * Version 0.1.9 (released 2003-02-20)
163 ** SASL ANONYMOUS "plain" stringprep profile added.
165 ** XMPP nodeprep profile fixed.
167 ** API and ABI is backwards compatible with the previous version.
168 For future releases, the NEWS entry will specifically mention whether
169 the C header API or library ABI backwards compatibility is affected.
171 * Version 0.1.8 (released 2003-02-14)
173 ** Portability fixes.
174 This includes not building the API Reference Manual with GTK-DOC by
175 default, if you want it use configure parameter --enable-gtk-doc after
176 making sure your gtkdoc-mkdb accept the --tmpl-dir parameter.
178 ** The type for string length variables is now (s)size_t.
179 Unfortunately this means binary shared library binary backwards
180 compatible is lost.
182 ** New nameprep test vectors.
184 * Version 0.1.7 (released 2003-02-12)
186 ** Uses official IDNA ACE prefix.
188 * Version 0.1.6 (released 2003-02-11)
190 ** Uses tentative IDNA ACE prefix.
192 ** Added XMPP Node/Resource Identifiers stringprep profiles.
194 ** Fixed prohibited character checks for bidi.
196 * Version 0.1.5 (released 2003-01-28)
198 ** The library can now be built as part of GNU Libc.
199 This is experimental and only tested against GNU Libc version 2.3.1.
200 See the libc/ directory, and libc/README in particular.
202 ** Bug fixes.
204 * Version 0.1.4 (released 2003-01-15)
206 ** Documentation fixes.
208 ** Portability fixes.
210 ** Bug fixes.
212 * Version 0.1.3 (released 2003-01-15)
214 ** Added texinfo manual.
216 * Version 0.1.2 (released 2003-01-08)
218 ** Added high-level IDNA API.
220 ** Added example3.c and example4.c demonstrating the high-level IDNA API.
222 * Version 0.1.1 (released 2003-01-08)
224 ** Added documentation using GTK-DOC.
226 ** The obsolete stringprep_utf8_to_ucs4_fast API entry point was removed.
227 By accident it was never removed in 0.1.0.
229 * Version 0.1.0 (released 2003-01-05)
231 ** Official GNU project.
233 ** Renamed from libstringprep to libidn.
235 ** Supports punycode and IDNA.  Caveat emptor: I don't use it myself.
237 ** Uses "unsigned long" for Unicode code points instead of "long".
238 Long is guaranteed to be at least 32 bits by C standards so it is
239 always sufficiently large, no need to use uint32_t and the like.
241 ** The obsolete stringprep_utf8_to_ucs4_fast API entry point was removed.
243 * Version 0.0.8 (released 2002-12-13)
245 ** Portability fixes (now works under Cygwin on Windows 2000).
247 ** Bug fixes.
249 * Version 0.0.7 (released 2002-12-09)
251 ** Apply all tables to entire strings, not just first hit.
253 ** Fix bidi infloop.
255 * Version 0.0.5 (released 2002-12-07)
257 ** Fix prohibited characters handling.
259 ** Fix bidi.
261 ** Renamed type (struct) stringprep_table_element to Stringprep_table_element.
263 ** Renamed type stringprep_profile to Stringprep_profile.
265 ** Renamed type (struct) stringprep_table to Stringprep_table.
267 ** Added more self-tests.
269 * Version 0.0.4 (released 2002-12-06)
271 ** Add unassigned code point handling, including self test cases.
273 ** Portability fixes.
275 * Version 0.0.3 (released 2002-11-30)
277 ** Exported utility function `stringprep_utf8_to_unichar', complementary
278 to existing `stringprep_unichar_to_utf8'.
280 ** Renamed `stringprep_utf8_to_ucs4_fast' to `stringprep_utf8_to_ucs4' to
281 clean up API. The old entry point is maintained for binary backwards
282 compatibility though.
284 ** The distribution is from now on signed using GnuPG.
286 ** Bug fixes.
288 * Version 0.0.2 (released 2002-11-07)
290 ** NFKC self test.
292 ** Bug fixes.
294 * Version 0.0.1 (released 2002-11-06)
296 ** Add utility functions stringprep_locale_charset(), stringprep_convert() 
297 and stringprep_locale_to_utf8 () that can be used to convert text from
298 system's locale into UTF-8, which should be done before invoking
299 stringprep().  The functions requires iconv() in the operating system.
301 ** An example program (example.c) that illustrates how libstringprep can be
302 used is included.
304 ** The pkg-config --libs output should now include necessary -R options.
306 * Version 0.0.0 (released 2002-11-05)
308 ** Initial release
310 ----------------------------------------------------------------------
311 Copying and distribution of this file, with or without modification,
312 are permitted in any medium without royalty provided the copyright
313 notice and this notice are preserved.