ChangeLog 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. 58. [bug] jinmei
  2. Worked around an interaction issue between ASIO and standard C++
  3. library headers. Without this ASIO didn't work: sometimes the
  4. application crashes, sometimes it blocked in the ASIO module.
  5. (Trac #248, svn r2187, r2190)
  6. 57. [func] jinmei
  7. lib/datasrc: used a simpler version of Name::split (change 31) for
  8. better readability. No behavior change. (Trac #200, svn r2159)
  9. 56. [func]* jinmei
  10. lib/dns: renamed the library name to libdns++ to avoid confusion
  11. with the same name of library of BIND 9.
  12. (Trac #190, svn r2153)
  13. 55. [bug] shane
  14. bin/xfrout: xfrout exception on Ctrl-C now no longer generates
  15. exception for 'Interrupted system call'
  16. (Track #136, svn r2147)
  17. 54. [bug] zhanglikun
  18. bin/xfrout: Enable b10-xfrout can be launched in source
  19. code tree.
  20. (Trac #224, svn r2103)
  21. 53. [bug] zhanglikun
  22. bin/bindctl: Generate a unique session ID by using
  23. socket.gethostname() instead of socket.gethostbyname(),
  24. since the latter one could make bindctl stall if its own
  25. host name can't be resolved.
  26. (Trac #228, svn r2096)
  27. 52. [func] zhanglikun
  28. bin/xfrout: When xfrout is launched, check whether the
  29. socket file is being used by one running xfrout process,
  30. if it is, exit from python. If the file isn't a socket file
  31. or nobody is listening, it will be removed. If it can't
  32. be removed, exit from python.
  33. (Trac #151, svn r2091)
  34. bind10-devel-20100602 released on June 2, 2010
  35. 51. [build] jelte
  36. lib/python: Add bind10_config.py module for paths and
  37. possibly other configure-time variables. Allow some components
  38. to find spec files in build tree when ran from source.
  39. (Trac #223)
  40. 50. [bug] zhanglikun
  41. bin/xfrin: a regression in xfrin: it can't communicate with
  42. a remote server. (Trac #218, svn r2038)
  43. 49. [func]* jelte
  44. Use unix domain sockets for msgq. (Trac #183, svn r2009)
  45. 48. [func] jelte
  46. bin/auth: Use asio's io_service for the msgq handling.
  47. (svn r2007)
  48. 47. [func] zhanglikun
  49. bin/cmdctl: Add value/type check for commands sent to
  50. cmdctl. (Trac #201, svn r1959)
  51. 46. [func] zhanglikun
  52. lib/cc: Fix real type data encoding/decoding. (Trac #193,
  53. svn r1959)
  54. 45. [func] zhanglikun
  55. bin/bind10: Pass verbose option to more modules. (Trac
  56. #205, svn r1957)
  57. 44. [build] jreed
  58. Install headers for libdns and libexception. (Trac #68,
  59. svn r1941)
  60. 43. [func] jelte
  61. lib/cc: Message queuing on cc channel. (Trac #58, svn r1870)
  62. 42. [func] jelte
  63. lib/python/isc/config: Make temporary file with python
  64. tempfile module instead of manual with fixed name. (Trac
  65. #184, svn r1859)
  66. 41. [func] jelte
  67. Module descriptions in spec files. (Trac #90, svn r1856)
  68. 40. [build] jreed
  69. Report detected features and configure settings at end of
  70. configure output. (svn r1836)
  71. 39. [func]* each
  72. Renamed libauth to libdatasrc.
  73. 38. [bug] zhanglikun
  74. Send command 'shutdown' to Xfrin and Xfrout when boss receive SIGINT.
  75. Remove unused socket file when Xfrout process exits. Make sure Xfrout
  76. exit by itself when it receives SIGINT, instead of being killed by the
  77. signal SIGTERM or SIGKILL sent from boss.
  78. (Trac #135, #151, #134, svn r1797)
  79. 37. [build] jinmei
  80. Check for the availability of python-config. (Trac #159,
  81. svn r1794)
  82. 36. [func] shane
  83. bin/bind10: Miscellaneous code cleanups and improvements.
  84. (Trac #40, svn r2012)
  85. 35. [bug] jinmei
  86. bin/bindctl: fixed a bug that it didn't accept IPv6 addresses as
  87. command arguments. (Trac #219, svn r2022)
  88. 34. [bug] jinmei
  89. bin/xfrin: fixed several small bugs with many additional unit
  90. tests. Fixes include: IPv6 transport support, resource leak,
  91. and non IN class support. (Trac #185, svn r2000)
  92. 33. [bug] each
  93. bin/auth: output now prepended with "[b10-auth]" (Trac
  94. #109, svn r1985)
  95. 32. [func]* each
  96. bin/auth: removed custom query-processing code, changed
  97. boost::asio code to use plain asio instead, and added asio
  98. headers to the source tree. This allows building without
  99. using an external boost library. (Trac #163, svn r1983)
  100. 31. [func] jinmei
  101. lib/dns: added a separate signature for Name::split() as a
  102. convenient wrapper for common usage. (Trac #49, svn r1903)
  103. 30. [bug] jinmei
  104. lib/dns: parameter validation of Name::split() was not sufficient,
  105. and invalid parameters could cause integer overflow and make the
  106. library crash. (Trac #177, svn r1806)
  107. bind10-devel-20100421 released on April 21, 2010
  108. 29. [build]
  109. Enable Python unit tests for "make check". (svn r1762)
  110. 28. [bug]
  111. Fix msgq CC test so it can find its module. (svn r1751)
  112. 27. [build]
  113. Add missing copyright license statements to various source
  114. files. (svn r1750)
  115. 26. [func]
  116. Use PACKAGE_STRING (name + version) from config.h instead
  117. of hard-coded value in CH TXT version.bind replies (Trac
  118. #114, svn r1749)
  119. 25. [func]*
  120. Renamed msgq to b10-msgq. (Trac #25, svn r1747, r1748)
  121. 24. [func]
  122. Support case-sensitive name compression in MessageRenderer.
  123. (Trac #142, svn r1704)
  124. 23. [func]
  125. Support a simple name with possible compression. (svn r1701)
  126. 22. [func]
  127. b10-xfrout for AXFR-out support added. (svn r1629, r1630)
  128. 21. [bug]
  129. Make log message more readable when xfrin failed. (svn
  130. r1697)
  131. 20. [bug]
  132. Keep stderr for child processes if -v is specified. (svn
  133. r1690, r1698)
  134. 19. [bug]
  135. Allow bind10 boss to pass environment variables from parent.
  136. (svn r1689)
  137. 18. [bug]
  138. Xfrin warn if bind10_dns load failed. (svn r1688)
  139. 17. [bug]
  140. Use sqlite3_ds.load() in xfrin module and catch Sqlite3DSError
  141. explicitly. (svn r1684)
  142. 16. [func]*
  143. Removed print_message and print_settings configuration
  144. commands from Xfrin. (Trac #136, svn r1682)
  145. 15. [func]*
  146. Changed zone loader/updater so trailing dot is not required.
  147. (svn r1681)
  148. 14. [bug]
  149. Change shutdown to actually SIGKILL properly. (svn r1675)
  150. 13. [bug]
  151. Don't ignore other RRs than SOA even if the second SOA is
  152. found. (svn r1674)
  153. 12. [build]
  154. Fix tests and testdata so can be used from a read-only
  155. source directory.
  156. 11. [build]
  157. Make sure python tests scripts are included in tarball.
  158. (svn r1648)
  159. 10. [build]
  160. Improve python detection for configure. (svn r1622)
  161. 9. [build]
  162. Automake the python binding of libdns. (svn r1617)
  163. 8. [bug]
  164. Fix log errors which may cause xfrin module to crash. (svn
  165. r1613)
  166. 7. [func]
  167. New API for inserting zone data to sqlite3 database for
  168. AXFR-in. (svn r1612, r1613)
  169. 6. [bug]
  170. More code review, miscellaneous cleanups, style guidelines,
  171. and new and improved unit tests added.
  172. 5. [doc]
  173. Manual page cleanups and improvements.
  174. 4. [bug]
  175. NSEC RDATA fixes for buffer overrun lookups, incorrect
  176. boundary checks, spec-non-conformant behaviors. (svn r1611)
  177. 3. [bug]
  178. Remove a re-raise of an exception that should only have
  179. been included in an error answer on the cc channel. (svn
  180. r1601)
  181. 2. [bug]
  182. Removed unnecessary sleep() from ccsession.cc. (svn r1528)
  183. 1. [build]*
  184. The configure --with-boostlib option changed to --with-boost-lib.
  185. bind10-devel-20100319 released on March 19, 2010
  186. For complete code revision history, see http://bind10.isc.org/browser
  187. Specific subversion changesets can be accessed at:
  188. http://bind10.isc.org/changeset/rrrr
  189. Trac tickets can be accessed at: https://bind10.isc.org/ticket/nnn
  190. LEGEND
  191. [bug] general bug fix. This is generally a backward compatible change,
  192. unless it's deemed to be impossible or very hard to keep
  193. compatibility to fix the bug.
  194. [build] compilation and installation infrastructure change.
  195. [doc] update to documentation. This shouldn't change run time behavior.
  196. [func] new feature. In some cases this may be a backward incompatible
  197. change, which would require a bump of major version.
  198. [security] security hole fix. This is no different than a general bug fix
  199. except that it will be handled as confidential and will cause
  200. security patch releases.
  201. *: Backward incompatible or operational change.