Return-Path: Delivered-To: apmail-incubator-couchdb-commits-archive@locus.apache.org Received: (qmail 75534 invoked from network); 25 Jul 2008 16:14:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 Jul 2008 16:14:08 -0000 Received: (qmail 56621 invoked by uid 500); 25 Jul 2008 16:14:08 -0000 Delivered-To: apmail-incubator-couchdb-commits-archive@incubator.apache.org Received: (qmail 56594 invoked by uid 500); 25 Jul 2008 16:14:08 -0000 Mailing-List: contact couchdb-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: couchdb-dev@incubator.apache.org Delivered-To: mailing list couchdb-commits@incubator.apache.org Received: (qmail 56585 invoked by uid 99); 25 Jul 2008 16:14:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Jul 2008 09:14:08 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Jul 2008 16:13:22 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 91E432388989; Fri, 25 Jul 2008 09:13:43 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r679850 - in /incubator/couchdb/trunk: CHANGES NEWS Date: Fri, 25 Jul 2008 16:13:43 -0000 To: couchdb-commits@incubator.apache.org From: cmlenz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080725161344.91E432388989@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: cmlenz Date: Fri Jul 25 09:13:43 2008 New Revision: 679850 URL: http://svn.apache.org/viewvc?rev=679850&view=rev Log: Update NEWS and CHANGES for 0.8.1 release. Modified: incubator/couchdb/trunk/CHANGES incubator/couchdb/trunk/NEWS Modified: incubator/couchdb/trunk/CHANGES URL: http://svn.apache.org/viewvc/incubator/couchdb/trunk/CHANGES?rev=679850&r1=679849&r2=679850&view=diff ============================================================================== --- incubator/couchdb/trunk/CHANGES (original) +++ incubator/couchdb/trunk/CHANGES Fri Jul 25 09:13:43 2008 @@ -4,11 +4,44 @@ Version 0.8.1-incubating ------------------------ +Database Core: + + * Fix for replication problems where the write queues can get backed up if the + writes aren't happening fast enough to keep up with the reads. For a large + replication, this can exhaust memory and crash, or slow down the machine + dramatically. The fix keeps only one document in the write queue at a time. + * Fix for databases sometimes incorrectly reporting that they contain 0 + documents after compaction. + +HTTP Interface: + + * Fix for chunked responses where chunks were always being split into multiple + TCP packets, which caused problems with the test suite under Safari, and in + some other cases. + * Fix for an invalid JSON response body being returned for some kinds of + views. (COUCHDB-84) + * Fix for connections not getting closed after rejecting a chunked request. + (COUCHDB-55) + * CouchDB can now be bound to IPv6 addresses. + * The HTTP Server header now contains the versions of CouchDB and Erlang. + +Javascript View Server: + + * Fix for sealing of nested data structure in documents in the Javascript view + server. + * Improve error handling for undefined values emitted by map functions. + (COUCHDB-83) + Packaging and System Integration: * The `couchdb` script no longer uses `awk` for configuration checks as this was causing portability problems. +Futon Utility Client: + + * The view selector dropdown should now work in Opera and Internet Explorer + even when it includes optgroups for design documents. (COUCHDB-81) + Version 0.8.0-incubating ------------------------ Modified: incubator/couchdb/trunk/NEWS URL: http://svn.apache.org/viewvc/incubator/couchdb/trunk/NEWS?rev=679850&r1=679849&r2=679850&view=diff ============================================================================== --- incubator/couchdb/trunk/NEWS (original) +++ incubator/couchdb/trunk/NEWS Fri Jul 25 09:13:43 2008 @@ -13,7 +13,8 @@ Version 0.8.1-incubating ------------------------ - * Minor fixes for the `couchdb` command. + * Various bug fixes for replication, compaction, the HTTP interface and the + Javascript View Server. Version 0.8.0-incubating ------------------------