blob: 95a2eeea2742b06a2e8645634509c27326b4ee07 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001Major changes since:
2* see the CHANGES file
3
4Major 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
10Major 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.