[svn] commit: r1770 - in /branches/bind10-20100421-release: NEWS README configure.ac src/bin/Makefile.am

BIND 10 source code commits bind10-changes at lists.isc.org
Wed Apr 21 03:31:30 UTC 2010


Author: jreed
Date: Wed Apr 21 03:31:29 2010
New Revision: 1770

Log:
Increase version.

Disable build and tar of bin/host

Update README (will use some of this text for emailed
announcement).

Add release notes to NEWS. Hopefully that is fine there.

Modified:
    branches/bind10-20100421-release/NEWS
    branches/bind10-20100421-release/README
    branches/bind10-20100421-release/configure.ac
    branches/bind10-20100421-release/src/bin/Makefile.am

Modified: branches/bind10-20100421-release/NEWS
==============================================================================
--- branches/bind10-20100421-release/NEWS (original)
+++ branches/bind10-20100421-release/NEWS Wed Apr 21 03:31:29 2010
@@ -1,0 +1,83 @@
+bind10-devel-20100421 released on April 21, 2010
+
+FEATURES:
+
+ - Use PACKAGE_STRING (name + version) from config.h instead of
+   hard-coded value in CH TXT version.bind replies (Trac #114, r1749)
+
+ - Renamed msgq to b10-msgq (Trac #25, r1747, r1748)
+
+ - Supported case-sensitive name compression in MessageRenderer (r1704)
+
+ - Support a simple name with possible compression (r1701)
+
+ - Removed print_message and print_settings configuration commands
+   from Xfrin (Trac #136, r1682)
+
+ - Changed zone loader/updater so trailing dot is not required (r1681)
+
+ - b10-xfrout for AXFR-out support added (r1629, r1630)
+
+ - New API for inserting zone data to sqlite3 database for AXFR in
+   (r1612, r16133)
+
+FIXES:
+
+ - More code review, miscellaneous cleanups, style guidelines,
+   and new and improved unit tests added.
+
+ - Manual page cleanups and improvements.
+
+ - Enable Python unit tests for "make check" (r1762)
+
+ - Fix msgq CC test so it can find its module (r1751)
+
+ - Add missing copyright license statements to various source files
+   (r1750)
+
+ - Make log message more readable when xfrin failed (r1697)
+
+ - Keep stderr for child processes if -v is specified (r1690, r1698)
+
+ - Allow bind10 boss to pass environment variables from parent (r1689)
+
+ - Xfrin warn if bind10_dns load failed (r1688)
+
+ - Use sqlite3_ds.load() in xfrin module and catch Sqlite3DSError
+   explicitly (r1684)
+
+ - Change shutdown to actually SIGKILL properly (r1675)
+
+ - Don't ignore other RRs than SOA even if the second SOA is found
+   (r1674)
+
+ - Fix tests and testdata so can be used from a read-only source
+   directory.
+
+ - Make sure python tests scripts are included in tarball (r1648)
+
+ - Improve python detection for configure (r1622)
+
+ - Automake the python binding of libdns (r1617)
+
+ - Fix log errors which may cause xfrin module to crash (r1613)
+
+ - NSEC RDATA fixes for buffer overrun lookups, incorrect boundary
+   checks, spec-non-conformant behaviors (r1611)
+
+ - Remove a re-raise of an exception that should only have been
+   included in an error answer on the cc channel (r1601)
+
+ - Removed unnecessary sleep() from ccsession.cc (r1528)
+
+OPERATIONAL NOTES:
+
+ - Xfrin and Xfrout modules only work when build is configured
+   with boost, boost-python, and python _sqlite3 support. Build
+   details are documented in the BIND 10 Guide.
+
+ - The configure --with-boostlib option changed to --with-boost-lib
+
+---------------
+
+bind10-devel-20100319 released on March 19, 2010

Modified: branches/bind10-20100421-release/README
==============================================================================
--- branches/bind10-20100421-release/README (original)
+++ branches/bind10-20100421-release/README Wed Apr 21 03:31:29 2010
@@ -8,14 +8,13 @@
 BIND10-devel is new development leading up to the production
 BIND 10 release. It contains prototype code and experimental
 interfaces. Nevertheless it is ready to use now for testing the
-new BIND 10 infrastructure ideas. The Year 1 (Y1) deliverable of
-the five year plan is described here:
-
-        http://bind10.isc.org/wiki/Year1Deliverable
-
-This release includes the bind10 master process, msgq message bus,
-b10-auth authoritative DNS server, b10-cmdctl remote control daemon,
-b10-cfgmgr configuration manager, and a new libdns library.
+new BIND 10 infrastructure ideas.
+
+This release includes the bind10 master process, b10-msgq message
+bus, b10-auth authoritative DNS server (with SQLite3 backend),
+b10-cmdctl remote control daemon, b10-cfgmgr configuration manager,
+b10-xfrin AXFR inbound service, b10-xfrout outgoing AXFR service,
+and a new libdns library.
 
 Documentation is included and also available via the BIND 10
 website at http://bind10.isc.org/
@@ -30,7 +29,8 @@
         https://lists.isc.org/mailman/listinfo/bind10-users
         https://lists.isc.org/mailman/listinfo/bind10-dev
 
-Bugs may be reported as tickets via the developers website:
+Bugs may be reported as tickets via the developers website
+(after logging into Trac):
 
         http://bind10.isc.org/
 

Modified: branches/bind10-20100421-release/configure.ac
==============================================================================
--- branches/bind10-20100421-release/configure.ac (original)
+++ branches/bind10-20100421-release/configure.ac Wed Apr 21 03:31:29 2010
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ([2.59])
-AC_INIT(bind10-devel, 20100318, bind10-bugs at isc.org)
+AC_INIT(bind10-devel, 20100421, bind10-bugs at isc.org)
 AC_CONFIG_SRCDIR(README)
 AM_INIT_AUTOMAKE
 AC_CONFIG_HEADERS([config.h])
@@ -367,7 +367,6 @@
                  src/bin/bindctl/Makefile
                  src/bin/bindctl/tests/Makefile
                  src/bin/cfgmgr/Makefile
-                 src/bin/host/Makefile
                  src/bin/loadzone/Makefile
                  src/bin/msgq/Makefile
                  src/bin/msgq/tests/Makefile

Modified: branches/bind10-20100421-release/src/bin/Makefile.am
==============================================================================
--- branches/bind10-20100421-release/src/bin/Makefile.am (original)
+++ branches/bind10-20100421-release/src/bin/Makefile.am Wed Apr 21 03:31:29 2010
@@ -1,1 +1,1 @@
-SUBDIRS = bind10 bindctl cfgmgr loadzone msgq host cmdctl auth xfrin xfrout usermgr
+SUBDIRS = bind10 bindctl cfgmgr loadzone msgq cmdctl auth xfrin xfrout usermgr




More information about the bind10-changes mailing list