RELEASE-NOTES: two more bug fixes
[platform/upstream/c-ares.git] / NEWS
1 Major changes since:
2 * see the CHANGES file
3
4 Major changes in release 1.1.1:
5 * ares should now compile as C++ code (no longer uses reserved word
6   "class").
7 * Added SRV support to adig test program.
8 * Fixed a few error handling bugs in query processing.
9
10 Major changes in release 1.1.0:
11 * Added ares_free_string() function so that memory can be freed in the
12   same layer as it is allocated, a desirable feature in some
13   environments.
14 * A few of the ares_dns.h macros are fixed to use the proper bitwise
15   operator.
16 * Fixed a couple of fenceposts fixed in ares_expand_name()'s
17   bounds-checking.
18 * In process_timeouts(), extract query->next before calling
19   next_server() and possibly freeing the query structure.
20 * Casted arguments to ctype macros casted to unsigned char, since not
21   all char values are valid inputs to those macros according to ANSI.