Return-Path: Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: (qmail 14377 invoked from network); 1 Feb 2010 21:31:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 1 Feb 2010 21:31:20 -0000 Received: (qmail 65309 invoked by uid 500); 1 Feb 2010 21:31:19 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 65241 invoked by uid 500); 1 Feb 2010 21:31:19 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 65232 invoked by uid 99); 1 Feb 2010 21:31:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Feb 2010 21:31:19 +0000 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; Mon, 01 Feb 2010 21:31:17 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A5DF223889ED; Mon, 1 Feb 2010 21:30:56 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r905417 - in /couchdb/trunk: CHANGES NEWS Date: Mon, 01 Feb 2010 21:30:56 -0000 To: commits@couchdb.apache.org From: jan@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100201213056.A5DF223889ED@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jan Date: Mon Feb 1 21:30:55 2010 New Revision: 905417 URL: http://svn.apache.org/viewvc?rev=905417&view=rev Log: update NEWS and CHANGES Modified: couchdb/trunk/CHANGES couchdb/trunk/NEWS Modified: couchdb/trunk/CHANGES URL: http://svn.apache.org/viewvc/couchdb/trunk/CHANGES?rev=905417&r1=905416&r2=905417&view=diff ============================================================================== --- couchdb/trunk/CHANGES (original) +++ couchdb/trunk/CHANGES Mon Feb 1 21:30:55 2010 @@ -6,6 +6,10 @@ This version has not been released yet. +HTTP Interface + + * Provide Content-MD5 header support for attachments. + Build and System Integration * Added support for building a Windows installer as part of 'make dist'. @@ -18,10 +22,12 @@ * Improved view index build time by reducing ICU collation callouts. * Improved view information objects. * Bug fix for partial updates during view builds. + * Move query server to a design-doc based protocol. Replication * Added option to implicitly create replication target databases. + * Avoid leaking file descriptors on automatic replication restarts. Storage System @@ -35,6 +41,15 @@ Futon * Added a button for view compaction. + * JSON strings are now displayed as-is in the document view, without the escaping of + new-lines and quotes. That dramatically improves readability of multi-line + strings. + * Same goes for editing of JSON string values. When a change to a field value is + submitted, and the value is not valid JSON it is assumed to be a string. This + improves editing of multi-line strings a lot. + * Hitting tab in textareas no longer moves focus to the next form field, but simply + inserts a tab character at the current caret position. + * Fixed some font declarations. Version 0.10.1 -------------- Modified: couchdb/trunk/NEWS URL: http://svn.apache.org/viewvc/couchdb/trunk/NEWS?rev=905417&r1=905416&r2=905417&view=diff ============================================================================== --- couchdb/trunk/NEWS (original) +++ couchdb/trunk/NEWS Mon Feb 1 21:30:55 2010 @@ -30,6 +30,9 @@ * Fixed query parameter handling in OAuth'd replication. * Fixed a bug preventing mixing languages with lists and views. * Avoid OS process leaks in lists. + * Avoid leaking file descriptors on automatic replication restarts. + * Various improvements to the Futon UI. + * Provide Content-MD5 header support for attachments. Version 0.10.1 --------------