Add.
[libidn.git] / NEWS
blob057407894492fe5fabe08e5537ae5e128b2f08d6
1 Libidn NEWS -- History of user-visible changes.                 -*- outline -*-
2 Copyright (C) 2002, 2003, 2004 Simon Josefsson
3 See the end for copying conditions.
5 * Version 0.4.0 (unreleased)
7 ** Support for TLD restrictions on IDN strings, contributed by Thomas Jacob.
8 Many TLDs restrict the set of characters that can be used, from the
9 full Unicode 3.2 range that is normally available.  This contribution
10 make it possible for you to test strings for TLD conformance locally.
11 The code can be disabled by --disable-tld.  If enabled (the default),
12 the new API "tld.h" is installed which can be used to check a string
13 for conformance to TLD specific rules.  This add a new self test, and
14 updates to the manual.  People responsible for maintaining TLD tables
15 are hereby encouraged to contribute them (under reasonable licensing
16 terms) for inclusion in future versions of Libidn.  Be warned that the
17 API for TLD checking may change throughout the 0.4.x series as we get
18 feedback on it.
20 ** API and ABI is backwards compatible with the previous version.
21 stringprep_kerberos5: DEPRECATED.
22 Tld_table_element:
23 Tld_table:
24 Tld_rc: ADD.  New data types.
25 tld_get_4:
26 tld_get_4z:
27 tld_get_z: ADD.  New functions to extract TLD from string.
28 tld_get_table:
29 tld_default_table: ADD.  New functions to get TLD table from TLD name.
30 tld_check_4t:
31 tld_check_4tz: ADD.  New function to provide core TLD operations.
32 tld_check_4:
33 tld_check_4z:
34 tld_check_8z:
35 tld_check_lz: ADD.  New functions that combine all TLD operations in one call.
37 * Version 0.3.7 (released 2004-01-22)
39 ** The command line parameter '--' idiom is documented.
41 ** The iSCSI stringprep profile now recognized as "iSCSI".
42 The earlier name "ISCSIprep" is still recognized, for backwards
43 compatibility.
45 ** DocBook manuals no longer included (the tools are too unstable).
47 ** API and ABI is backwards compatible with the previous version.
49 * Version 0.3.6 (released 2004-01-06)
51 ** The manual now contain a troubleshooting section for the command line tool.
53 ** The PHP interface pass the string directly on the command line.
55 ** The macro that create 'idn-int.h' has been updated to latest version.
57 ** API and ABI is backwards compatible with the previous version.
59 * Version 0.3.5 (released 2003-12-15)
61 ** The program 'idn' accepts input strings directly on the command line.
63 ** The program 'idn' defaults to --idna-to-ascii if no parameter is given.
65 ** The program 'idn' now print user instructions before waiting for input.
67 ** DocBook HTML output not included any longer.
68 The reason is that the filenames generated by docbook2html appear to
69 be rather random, so it is difficult to maintain the Makefile.am rules
70 for them.
72 ** Autoconf 2.59, automake 1.8 and libtool from CVS is used.
74 ** API and ABI is backwards compatible with the previous version.
75 IDNA_CONTAINS_NON_LDH: ADD.  Same integer value as IDNA_CONTAINS_LDH.
76 IDNA_CONTAINS_LDH: DEPRECATED.  LDH (letter-digits-hyphens) characters
77                 are not an error, but non-LDH characters are, when
78                 IDNA_USE_STD3_ASCII_RULES is used.  The logic of the
79                 mnemonic name of this error constant was reversed.
81 * Version 0.3.4 (released 2003-11-09)
83 ** DocBook manuals in XML, PDF, PostScript, ASCII and HTML formats included.
85 * Version 0.3.3 (released 2003-10-18)
87 ** Fixed list of Stringprep profiles in 'idn --help' and 'idn.php'.
89 ** Fixed debug information in 'idn'.
91 ** Internal improvements.
92 Leads to reduced heap memory usage.  Simplified inter-dependency among
93 files in lib/* to make it easier to copy them into your project.
95 ** Debugging stringprep profile 'generic' removed.
97 ** Punycode implementation updated to rfc3492bis-00.
99 ** API and ABI is backwards compatible with the previous version.
100 stringprep_4i: NEW.
101 stringprep_4zi: NEW.
102 stringprep: CHANGED. 'profile' is marked as 'const'.
103 stringprep_profile: CHANGED. 'profile' is marked as 'const'.
104 stringprep_generic: REMOVED. Never meant for public use.
106 * Version 0.3.2 (released 2003-10-07)
108 ** SASL ANONYMOUS stringprep profile "trace" added.
109 It is equivalent to the already supported "plain" SASL ANONYMOUS
110 stringprep profile, except for the name.
112 ** API and ABI is backwards compatible with the previous version.
113 The 'in' parameter to stringprep_profile was changed from 'char*' to
114 'const char*'.
116 * Version 0.3.1 (released 2003-10-02)
118 ** Fixed handling of implicit and explicit zero-length root labels in ToASCII.
120 ** Fixed support for Hangul Syllables during Unicode NFKC normalization.
122 ** Fixed Unicode NFKC normalization of (some) BMP code points.
123 This was done by syncing the NFKC code with latest GLIB, and may have
124 fixed other bugs in the earlier versions of the updated functions.
126 ** Added more IDNA test vectors.
128 ** Emacs Lisp IDNA implementation now set the UseSTD3ASCIIRules flag.
129 This is the appropriate setting for mail-related uses of IDNA.
131 ** API and ABI is backwards compatible with the previous version.
133 * Version 0.3.0 (released 2003-09-23)
135 ** Ported to Mac OS X.
137 ** Gnulib code removed, we now assume a C89 compatible environment.
139 ** Building libidn as a libc add-on now works again.
141 ** Man pages for all public API functions are included.
143 ** Fixed bug in SASLprep profile.
145 ** API and ABI is NOT backwards compatible with the previous version.
146 All previously labeled (since 0.1.x) obsolete functions have been dropped.
147 The use of 'enum' types instead of 'int' added in 0.2.3 reverted, it
148 confused documentation generators and wasn't all that common practice.
150 * Version 0.2.3 (released 2003-08-26)
152 ** Example 4 was the same as example 3, now changed to demo ToUnicode.
154 ** Documentation improvements.
156 ** Prototype cleanups.
157 The proper enum types (Stringprep_rc, Idna_rc, etc) are now used in
158 several places where plain int where used before.  String lengths are
159 handled by (s)size_t instead of int.
161 ** API and ABI is backwards compatible with the previous version.
163 * Version 0.2.2 (released 2003-08-13)
165 ** Fixed problem with strings longer than 4GB in punycode functions.
166 The punycode code cannot handle strings longer than 4GB.  The code now
167 return PUNYCODE_BAD_INPUT on too long input, instead of failing in an
168 unknown way.
170 ** The "idn --idna-to-unicode" command now output locale encoded strings.
172 ** Build fixes, bug fixes.
174 ** API and ABI is backwards compatible with the previous version.
176 * Version 0.2.1 (released 2003-07-04)
178 ** Don't reject zero-length trailing labels as in, e.g., "www.example.org.".
179 The IDNA RFC is not clear on this topic, zero-length labels in general
180 are forbidden by the ToASCII algorithm in section 4.1 step 8, but the
181 terminology section define, inside a parenthesis, that the zero-length
182 root label is in fact not considered a label at all in IDNA.
184 ** Bug fixes.
186 ** API and ABI is backwards compatible with the previous version.
188 * Version 0.2.0 (released 2003-06-19)
190 ** Unicode code point data is now uint32_t, defined in "idn-int.h".
191 A header file "idn-int.h" is generated and installed to make sure the
192 "uint32_t" data type is available on all platforms.  The reason for
193 this change is that on 64-bit platforms, the application was required
194 to convert 32 bit integers (which is how Unicode code points are
195 typically represented) into 64 bit integers before calling libidn
196 functions.
198 ** New idna_*() functions have improved flags handling.
199 The allowunassigned and usestd3asciirules parameters were collapsed
200 into a flags parameter, that can take on the IDNA_ALLOW_UNASSIGNED and
201 IDNA_USE_STD3_ASCII_RULES values.  This allows for easier extensions
202 to support, e.g., Unicode 4.0 or RFC 952 ASCII rules checking.  Note
203 that the old entry points are unmodified (in this regard), and new
204 entry points with this modification were added.
206 ** The manual was moved into a separate directory doc/.
208 ** Bugfixes.
210 ** API and ABI is not backwards compatible.
211 In punycode.h and stringprep.h the "unsigned long" data type was
212 changed into "uint32_t", which cause a API and ABI missmatch.  For
213 idna.h, the old entry points that used "unsigned long" still exist,
214 and new entry points that uses "uint32_t" was added.  To update your
215 application, you probably only need to change "unsigned long" to
216 "uint32_t".  As a result of these changes, the shared object version
217 has been increased.
219 * Version 0.1.15 (released 2003-06-07)
221 ** Bugfixes.
223 ** API and ABI is backwards compatible with the previous version.
225 * Version 0.1.14 (released 2003-05-10)
227 ** Experimental documentation generation in contrib/doxygen/.
228 Simply invoke "doxygen" in that directory and it should build the
229 documentation.
231 ** Lisp API bug fixes.
233 ** API and ABI is backwards compatible with the previous version.
235 * Version 0.1.13 (released 2003-03-13)
237 ** Unfinished Java *.class files implementing the libidn API.
238 See the contrib/java/ directory.  It is implemented using the Java
239 Native Interface, and light initial testing indicate interoperability
240 between GCJ, IBM's JDK and Sun's JDK.
242 ** Building is now silent when gengetopt is not present.
244 ** Bug fixes.
246 ** API and ABI is backwards compatible with the previous version.
248 * Version 0.1.12 (released 2003-03-06)
250 ** Building libidn doesn't require gengetopt.
251 Warnings are still printed though.  Gengetopt will be replaced by argp
252 eventually.
254 ** Command line tool "idn" supports stringprep too.
256 ** New stringprep API entry point: stringprep_profile().
257 It takes a name of the stringprep profile as an argument instead of
258 the stringprep table structure.
260 ** stringprep_*.h are deprecated and will be removed in the future.
261 All symbols have been moved to stringprep.h.  The reasons are that (1)
262 the files typically only defined one CPP macro and exported one symbol
263 definition, which is wasteful as it generates too much work in the
264 manual, and (2) using one header file for all profiles allows easier
265 access to all stringprep profiles during runtime.  Note that the files
266 are still installed, but they only #include stringprep.h now, for
267 backwards compatibility.
269 ** GNU Libc add-on build instructions updated to GNU Libc 2.3.2.
271 ** SASLprep stringprep profile added.
273 ** An online interface to libidn written in PHP added to contrib/web/.
275 ** API and ABI is backwards compatible with the previous version.
277 * Version 0.1.11 (released 2003-02-26)
279 ** Command line application "idn" is included.
280 A simple wrapper around the library that allows you to invoke punycode
281 encoding/decoding and IDNA ToASCII/ToUnicode on the command line.
283 ** Emacs Lisp interface for punycode and IDNA included.
284 See punycode.el and idna.el.
286 ** API and ABI is backwards compatible with the previous version.
288 * Version 0.1.10 (released 2003-02-21)
290 ** idna_*_to_ace() and idna_*ace_to_*() are deprecated in favor of
291 ** idna_to_ascii_from_*() and idna_to_unicode_*_from_*() respectively.
292 The reason was that the old interfaces did not accept the
293 AllowUnassigned and UseSTD3ASCIIRules flags.  Note that the old
294 functions are not removed, but will be in the future.
296 ** IPS iSCSI stringprep profile added.
298 ** A new contrib/ directory added.
299 Currently it contains a Python interface to Libidn, contributed by
300 Stephane Bortzmeyer.
302 ** idna.h and punycode.h are now installed by "make install".
304 ** API and ABI is backwards compatible with the previous version.
306 * Version 0.1.9 (released 2003-02-20)
308 ** SASL ANONYMOUS "plain" stringprep profile added.
310 ** XMPP nodeprep profile fixed.
312 ** API and ABI is backwards compatible with the previous version.
313 For future releases, the NEWS entry will specifically mention whether
314 the C header API or library ABI backwards compatibility is affected.
316 * Version 0.1.8 (released 2003-02-14)
318 ** Portability fixes.
319 This includes not building the API Reference Manual with GTK-DOC by
320 default, if you want it use configure parameter --enable-gtk-doc after
321 making sure your gtkdoc-mkdb accept the --tmpl-dir parameter.
323 ** The type for string length variables is now (s)size_t.
324 Unfortunately this means binary shared library binary backwards
325 compatible is lost.
327 ** New nameprep test vectors.
329 * Version 0.1.7 (released 2003-02-12)
331 ** Uses official IDNA ACE prefix.
333 * Version 0.1.6 (released 2003-02-11)
335 ** Uses tentative IDNA ACE prefix.
337 ** Added XMPP Node/Resource Identifiers stringprep profiles.
339 ** Fixed prohibited character checks for bidi.
341 * Version 0.1.5 (released 2003-01-28)
343 ** The library can now be built as part of GNU Libc.
344 This is experimental and only tested against GNU Libc version 2.3.1.
345 See the libc/ directory, and libc/README in particular.
347 ** Bug fixes.
349 * Version 0.1.4 (released 2003-01-15)
351 ** Documentation fixes.
353 ** Portability fixes.
355 ** Bug fixes.
357 * Version 0.1.3 (released 2003-01-15)
359 ** Added texinfo manual.
361 * Version 0.1.2 (released 2003-01-08)
363 ** Added high-level IDNA API.
365 ** Added example3.c and example4.c demonstrating the high-level IDNA API.
367 * Version 0.1.1 (released 2003-01-08)
369 ** Added documentation using GTK-DOC.
371 ** The obsolete stringprep_utf8_to_ucs4_fast API entry point was removed.
372 By accident it was never removed in 0.1.0.
374 * Version 0.1.0 (released 2003-01-05)
376 ** Official GNU project.
378 ** Renamed from libstringprep to libidn.
380 ** Supports punycode and IDNA.  Caveat emptor: I don't use it myself.
382 ** Uses "unsigned long" for Unicode code points instead of "long".
383 Long is guaranteed to be at least 32 bits by C standards so it is
384 always sufficiently large, no need to use uint32_t and the like.
386 ** The obsolete stringprep_utf8_to_ucs4_fast API entry point was removed.
388 * Version 0.0.8 (released 2002-12-13)
390 ** Portability fixes (now works under Cygwin on Windows 2000).
392 ** Bug fixes.
394 * Version 0.0.7 (released 2002-12-09)
396 ** Apply all tables to entire strings, not just first hit.
398 ** Fix bidi infloop.
400 * Version 0.0.5 (released 2002-12-07)
402 ** Fix prohibited characters handling.
404 ** Fix bidi.
406 ** Renamed type (struct) stringprep_table_element to Stringprep_table_element.
408 ** Renamed type stringprep_profile to Stringprep_profile.
410 ** Renamed type (struct) stringprep_table to Stringprep_table.
412 ** Added more self-tests.
414 * Version 0.0.4 (released 2002-12-06)
416 ** Add unassigned code point handling, including self test cases.
418 ** Portability fixes.
420 * Version 0.0.3 (released 2002-11-30)
422 ** Exported utility function `stringprep_utf8_to_unichar', complementary
423 to existing `stringprep_unichar_to_utf8'.
425 ** Renamed `stringprep_utf8_to_ucs4_fast' to `stringprep_utf8_to_ucs4' to
426 clean up API. The old entry point is maintained for binary backwards
427 compatibility though.
429 ** The distribution is from now on signed using GnuPG.
431 ** Bug fixes.
433 * Version 0.0.2 (released 2002-11-07)
435 ** NFKC self test.
437 ** Bug fixes.
439 * Version 0.0.1 (released 2002-11-06)
441 ** Add utility functions stringprep_locale_charset(), stringprep_convert() 
442 and stringprep_locale_to_utf8 () that can be used to convert text from
443 system's locale into UTF-8, which should be done before invoking
444 stringprep().  The functions requires iconv() in the operating system.
446 ** An example program (example.c) that illustrates how libstringprep can be
447 used is included.
449 ** The pkg-config --libs output should now include necessary -R options.
451 * Version 0.0.0 (released 2002-11-05)
453 ** Initial release
455 ----------------------------------------------------------------------
456 Copying and distribution of this file, with or without modification,
457 are permitted in any medium without royalty provided the copyright
458 notice and this notice are preserved.