ChangeLog 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. 71. [func] each
  2. Add "-a" (address) option to bind10 to specify an address for
  3. the auth server to listen on.
  4. 70. [func] each
  5. Added a hot-spot cache to libdatasrc to speed up access to
  6. repeatedly-queried data and reduce the number of queries to
  7. the underlying database; this should substantially improve
  8. performance. Also added a "-n" ("no cache") option to
  9. bind10 and b10-auth to disable the cache if needed.
  10. (Trac #192, svn r2383)
  11. bind10-devel-20100701 released on July 1, 2010
  12. 69. [func]* jelte
  13. Added python wrappers for libdns++ (isc::dns), and libxfr. This
  14. removes the dependency on Boost.Python. The wrappers don't
  15. completely implement all functionality, but the high-level API
  16. is wrapped, and current modules use it now.
  17. (Trac #181, svn r2361)
  18. 68. [func] zhanglikun
  19. Add options -c(--certificate-chain) to bindctl. Override class
  20. HTTPSConnection to support server certificate validation.
  21. Add support to cmdctl.spec file, now there are three configurable
  22. items for cmdctl: 'key_file', 'cert_file' and 'accounts_file',
  23. all of them can be changed in runtime.
  24. (Trac #127, svn r2357)
  25. 67. [func] zhanglikun
  26. Make bindctl's command parser only do minimal check.
  27. Parameter value can be a sequence of non-space characters,
  28. or a string surrounded by quotation marks (these marks can
  29. be a part of the value string in escaped form). Make error
  30. message be more friendly. (If there is some error in
  31. parameter's value, the parameter name will be provided).
  32. Refactor function login_to_cmdctl() in class BindCmdInterpreter:
  33. avoid using Exception to catch all exceptions.
  34. (Trac #220, svn r2356)
  35. 66. [bug] each
  36. Check for duplicate RRsets before inserting data into a message
  37. section; this, among other things, will prevent multiple copies
  38. of the same CNAME from showing up when there's a loop. (Trac #69,
  39. svn r2350)
  40. 65. [func] shentingting
  41. Various loadzone improvements: allow optional comment for
  42. $TTL, allow optional origin and comment for $INCLUDE, allow
  43. optional comment for $ORIGIN, support BIND9 extension of
  44. time units for TTLs, and fix bug to not use class as part
  45. of label name when records don't have a label but do have
  46. a class. Added verbose options to exactly what is happening
  47. with loadzone. Added loadzone test suite of different file
  48. formats to load.
  49. (Trac #197, #199, #244, #161, #198, #174, #175, svn r2340)
  50. 64. [func] jerry
  51. Added python logging framework. It is for testing and
  52. experimenting with logging ideas. Currently, it supports
  53. three channels (file, syslog and stderr) and five levels
  54. (debug, info, warning, error and critical).
  55. (Trac #176, svn r2338)
  56. 63. [func] shane
  57. Added initial support for setuid(), using the "-u" flag. This will
  58. be replaced in the future, but for now provides a reasonable
  59. starting point.
  60. (Trac #180, svn r2330)
  61. 62. [func] jelte
  62. bin/xfrin: Use the database_file as configured in Auth to transfers
  63. bin/xfrout: Use the database_file as configured in Auth to transfers
  64. 61. [bug] jelte
  65. bin/auth: Enable b10-auth to be launched in source tree
  66. (i.e. use a zone database file relative to that)
  67. 60. [build] jinmei
  68. Supported SunStudio C++ compiler. Note: gtest still doesn't work.
  69. (Trac #251, svn r2310)
  70. 59. [bug] jinmei
  71. lib/datasrc,bin/auth: The authoritative server could return a
  72. SERVFAIL with a partial answer if it finds a data source broken
  73. while looking for an answer. This can happen, for example, if a
  74. zone that doesn't have an NS RR is configured and loaded as a
  75. sqlite3 data source. (Trac #249, r2286)
  76. 58. [bug] jinmei
  77. Worked around an interaction issue between ASIO and standard C++
  78. library headers. Without this ASIO didn't work: sometimes the
  79. application crashes, sometimes it blocked in the ASIO module.
  80. (Trac #248, svn r2187, r2190)
  81. 57. [func] jinmei
  82. lib/datasrc: used a simpler version of Name::split (change 31) for
  83. better readability. No behavior change. (Trac #200, svn r2159)
  84. 56. [func]* jinmei
  85. lib/dns: renamed the library name to libdns++ to avoid confusion
  86. with the same name of library of BIND 9.
  87. (Trac #190, svn r2153)
  88. 55. [bug] shane
  89. bin/xfrout: xfrout exception on Ctrl-C now no longer generates
  90. exception for 'Interrupted system call'
  91. (Track #136, svn r2147)
  92. 54. [bug] zhanglikun
  93. bin/xfrout: Enable b10-xfrout can be launched in source
  94. code tree.
  95. (Trac #224, svn r2103)
  96. 53. [bug] zhanglikun
  97. bin/bindctl: Generate a unique session ID by using
  98. socket.gethostname() instead of socket.gethostbyname(),
  99. since the latter one could make bindctl stall if its own
  100. host name can't be resolved.
  101. (Trac #228, svn r2096)
  102. 52. [func] zhanglikun
  103. bin/xfrout: When xfrout is launched, check whether the
  104. socket file is being used by one running xfrout process,
  105. if it is, exit from python. If the file isn't a socket file
  106. or nobody is listening, it will be removed. If it can't
  107. be removed, exit from python.
  108. (Trac #151, svn r2091)
  109. bind10-devel-20100602 released on June 2, 2010
  110. 51. [build] jelte
  111. lib/python: Add bind10_config.py module for paths and
  112. possibly other configure-time variables. Allow some components
  113. to find spec files in build tree when ran from source.
  114. (Trac #223)
  115. 50. [bug] zhanglikun
  116. bin/xfrin: a regression in xfrin: it can't communicate with
  117. a remote server. (Trac #218, svn r2038)
  118. 49. [func]* jelte
  119. Use unix domain sockets for msgq. (Trac #183, svn r2009)
  120. 48. [func] jelte
  121. bin/auth: Use asio's io_service for the msgq handling.
  122. (svn r2007)
  123. 47. [func] zhanglikun
  124. bin/cmdctl: Add value/type check for commands sent to
  125. cmdctl. (Trac #201, svn r1959)
  126. 46. [func] zhanglikun
  127. lib/cc: Fix real type data encoding/decoding. (Trac #193,
  128. svn r1959)
  129. 45. [func] zhanglikun
  130. bin/bind10: Pass verbose option to more modules. (Trac
  131. #205, svn r1957)
  132. 44. [build] jreed
  133. Install headers for libdns and libexception. (Trac #68,
  134. svn r1941)
  135. 43. [func] jelte
  136. lib/cc: Message queuing on cc channel. (Trac #58, svn r1870)
  137. 42. [func] jelte
  138. lib/python/isc/config: Make temporary file with python
  139. tempfile module instead of manual with fixed name. (Trac
  140. #184, svn r1859)
  141. 41. [func] jelte
  142. Module descriptions in spec files. (Trac #90, svn r1856)
  143. 40. [build] jreed
  144. Report detected features and configure settings at end of
  145. configure output. (svn r1836)
  146. 39. [func]* each
  147. Renamed libauth to libdatasrc.
  148. 38. [bug] zhanglikun
  149. Send command 'shutdown' to Xfrin and Xfrout when boss receive SIGINT.
  150. Remove unused socket file when Xfrout process exits. Make sure Xfrout
  151. exit by itself when it receives SIGINT, instead of being killed by the
  152. signal SIGTERM or SIGKILL sent from boss.
  153. (Trac #135, #151, #134, svn r1797)
  154. 37. [build] jinmei
  155. Check for the availability of python-config. (Trac #159,
  156. svn r1794)
  157. 36. [func] shane
  158. bin/bind10: Miscellaneous code cleanups and improvements.
  159. (Trac #40, svn r2012)
  160. 35. [bug] jinmei
  161. bin/bindctl: fixed a bug that it didn't accept IPv6 addresses as
  162. command arguments. (Trac #219, svn r2022)
  163. 34. [bug] jinmei
  164. bin/xfrin: fixed several small bugs with many additional unit
  165. tests. Fixes include: IPv6 transport support, resource leak,
  166. and non IN class support. (Trac #185, svn r2000)
  167. 33. [bug] each
  168. bin/auth: output now prepended with "[b10-auth]" (Trac
  169. #109, svn r1985)
  170. 32. [func]* each
  171. bin/auth: removed custom query-processing code, changed
  172. boost::asio code to use plain asio instead, and added asio
  173. headers to the source tree. This allows building without
  174. using an external boost library. (Trac #163, svn r1983)
  175. 31. [func] jinmei
  176. lib/dns: added a separate signature for Name::split() as a
  177. convenient wrapper for common usage. (Trac #49, svn r1903)
  178. 30. [bug] jinmei
  179. lib/dns: parameter validation of Name::split() was not sufficient,
  180. and invalid parameters could cause integer overflow and make the
  181. library crash. (Trac #177, svn r1806)
  182. bind10-devel-20100421 released on April 21, 2010
  183. 29. [build]
  184. Enable Python unit tests for "make check". (svn r1762)
  185. 28. [bug]
  186. Fix msgq CC test so it can find its module. (svn r1751)
  187. 27. [build]
  188. Add missing copyright license statements to various source
  189. files. (svn r1750)
  190. 26. [func]
  191. Use PACKAGE_STRING (name + version) from config.h instead
  192. of hard-coded value in CH TXT version.bind replies (Trac
  193. #114, svn r1749)
  194. 25. [func]*
  195. Renamed msgq to b10-msgq. (Trac #25, svn r1747, r1748)
  196. 24. [func]
  197. Support case-sensitive name compression in MessageRenderer.
  198. (Trac #142, svn r1704)
  199. 23. [func]
  200. Support a simple name with possible compression. (svn r1701)
  201. 22. [func]
  202. b10-xfrout for AXFR-out support added. (svn r1629, r1630)
  203. 21. [bug]
  204. Make log message more readable when xfrin failed. (svn
  205. r1697)
  206. 20. [bug]
  207. Keep stderr for child processes if -v is specified. (svn
  208. r1690, r1698)
  209. 19. [bug]
  210. Allow bind10 boss to pass environment variables from parent.
  211. (svn r1689)
  212. 18. [bug]
  213. Xfrin warn if bind10_dns load failed. (svn r1688)
  214. 17. [bug]
  215. Use sqlite3_ds.load() in xfrin module and catch Sqlite3DSError
  216. explicitly. (svn r1684)
  217. 16. [func]*
  218. Removed print_message and print_settings configuration
  219. commands from Xfrin. (Trac #136, svn r1682)
  220. 15. [func]*
  221. Changed zone loader/updater so trailing dot is not required.
  222. (svn r1681)
  223. 14. [bug]
  224. Change shutdown to actually SIGKILL properly. (svn r1675)
  225. 13. [bug]
  226. Don't ignore other RRs than SOA even if the second SOA is
  227. found. (svn r1674)
  228. 12. [build]
  229. Fix tests and testdata so can be used from a read-only
  230. source directory.
  231. 11. [build]
  232. Make sure python tests scripts are included in tarball.
  233. (svn r1648)
  234. 10. [build]
  235. Improve python detection for configure. (svn r1622)
  236. 9. [build]
  237. Automake the python binding of libdns. (svn r1617)
  238. 8. [bug]
  239. Fix log errors which may cause xfrin module to crash. (svn
  240. r1613)
  241. 7. [func]
  242. New API for inserting zone data to sqlite3 database for
  243. AXFR-in. (svn r1612, r1613)
  244. 6. [bug]
  245. More code review, miscellaneous cleanups, style guidelines,
  246. and new and improved unit tests added.
  247. 5. [doc]
  248. Manual page cleanups and improvements.
  249. 4. [bug]
  250. NSEC RDATA fixes for buffer overrun lookups, incorrect
  251. boundary checks, spec-non-conformant behaviors. (svn r1611)
  252. 3. [bug]
  253. Remove a re-raise of an exception that should only have
  254. been included in an error answer on the cc channel. (svn
  255. r1601)
  256. 2. [bug]
  257. Removed unnecessary sleep() from ccsession.cc. (svn r1528)
  258. 1. [build]*
  259. The configure --with-boostlib option changed to --with-boost-lib.
  260. bind10-devel-20100319 released on March 19, 2010
  261. For complete code revision history, see http://bind10.isc.org/browser
  262. Specific subversion changesets can be accessed at:
  263. http://bind10.isc.org/changeset/rrrr
  264. Trac tickets can be accessed at: https://bind10.isc.org/ticket/nnn
  265. LEGEND
  266. [bug] general bug fix. This is generally a backward compatible change,
  267. unless it's deemed to be impossible or very hard to keep
  268. compatibility to fix the bug.
  269. [build] compilation and installation infrastructure change.
  270. [doc] update to documentation. This shouldn't change run time behavior.
  271. [func] new feature. In some cases this may be a backward incompatible
  272. change, which would require a bump of major version.
  273. [security] security hole fix. This is no different than a general bug fix
  274. except that it will be handled as confidential and will cause
  275. security patch releases.
  276. *: Backward incompatible or operational change.