You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by ns...@apache.org on 2013/04/03 20:36:23 UTC

svn commit: r1738 - in /dev/couchdb/notes/1.3.0/rc.3: apache-couchdb-1.3.0.html apache-couchdb-1.3.0.txt

Author: nslater
Date: Wed Apr  3 18:36:20 2013
New Revision: 1738

Log:
Update 1.3.0 release notes

Added:
    dev/couchdb/notes/1.3.0/rc.3/apache-couchdb-1.3.0.txt
Modified:
    dev/couchdb/notes/1.3.0/rc.3/apache-couchdb-1.3.0.html

Modified: dev/couchdb/notes/1.3.0/rc.3/apache-couchdb-1.3.0.html
==============================================================================
--- dev/couchdb/notes/1.3.0/rc.3/apache-couchdb-1.3.0.html (original)
+++ dev/couchdb/notes/1.3.0/rc.3/apache-couchdb-1.3.0.html Wed Apr  3 18:36:20 2013
@@ -20,7 +20,7 @@
 
 <p><em>This is a feature release.</em></p>
 
-<p>These release notes are based on the <a href="https://git-wip-us.apache.org/repos/asf?p=couchdb.git;a=blob_plain;f=CHANGES;hb=TAG">CHANGES</a> file.</p>
+<p>These release notes are based on the <a href="https://git-wip-us.apache.org/repos/asf?p=couchdb.git;a=blob_plain;f=CHANGES;hb=48879873f5316c6ef1dcc6de91ea2f5b2721efb0">CHANGES</a> file.</p>
 
 <h2>HTTP Interface</h2>
 

Added: dev/couchdb/notes/1.3.0/rc.3/apache-couchdb-1.3.0.txt
==============================================================================
--- dev/couchdb/notes/1.3.0/rc.3/apache-couchdb-1.3.0.txt (added)
+++ dev/couchdb/notes/1.3.0/rc.3/apache-couchdb-1.3.0.txt Wed Apr  3 18:36:20 2013
@@ -0,0 +1,107 @@
+                       Apache CouchDB 1.3.0 Release Notes
+
+   Apache CouchDB 1.3.0 has been released and is available for download.
+
+   CouchDB is a database that completely embraces the web. Store your data
+   with JSON documents. Access your documents with your web browser, via
+   HTTP. Query, combine, and transform your documents with JavaScript.
+   CouchDB works well with modern web and mobile apps. You can even serve web
+   apps directly out of CouchDB. And you can distribute your data, or your
+   apps, efficiently using CouchDB’s incremental replication. CouchDB
+   supports master-master setups with automatic conflict detection.
+
+   Grab your copy here:
+
+     http://couchdb.apache.org/
+
+   Pre-built packages for Windows and OS X are available.
+
+   This is a feature release.
+
+   These release notes are based on the CHANGES file.
+
+HTTP Interface
+
+     * No longer rewrites the X-CouchDB-Requested-Path during recursive calls
+       to the rewriter.
+
+     * Limit recursion depth in the URL rewriter.
+
+       Defaults to a maximum of 100 invocations but is configurable.
+
+     * Fix _session for IE7.
+
+     * Added Server-Sent Events protocol to db changes API.
+
+       See http://www.w3.org/TR/eventsource/ for details.
+
+     * Make password hashing synchronous when using the /_config/admins API.
+
+     * Include user name in show/list ETags.
+
+     * Experimental support for Cross-Origin Resource Sharing (CORS).
+
+       See http://www.w3.org/TR/cors/ for details.
+
+Replicator
+
+     * The replicator will use a new server-wide UUID in checkpoint IDs to
+       improve the chances of an efficient resume.
+
+Storage System
+
+     * Fixed unnecessary conflict when deleting and creating a document in
+       the same batch.
+
+View Server
+
+     * Additional response headers may be varied prior to send().
+
+     * GetRow() is now side-effect free.
+
+Futon
+
+     * Disabled the link to the Futon test suite.
+
+       These tests were causing problems when run from a browser, and are now
+       available via the CLI instead.
+
+     * Added view request duration to Futon.
+
+     * Disable buttons for actions that the user doesn't have permissions to.
+
+Security
+
+     * Passwords are now hashed using the PBKDF2 algorithm with a
+       configurable work factor.
+
+Test Suite
+
+     * Moved the JS test suite to the CLI.
+
+     * Improved tracebacks printed by the JS CLI tests.
+
+     * Improved the reliability of a number of tests.
+
+UUID Algorithms
+
+     * Added the utc_id algorithm.
+
+URL Rewriter & Vhosts
+
+     * Database name is encoded during rewriting (allowing embedded /'s,
+       etc).
+
+     * Reset rewrite counter on new request, avoiding unnecessary request
+       failures due to bogus rewrite limit reports.
+
+Build System
+
+     * C/C++ compiler detection has been improved.
+
+     * Autoconf v2.63 is now required if building from Git checkout directly.
+
+       See DEVELOPERS file for more details.
+
+     * Fixed issue in couchdb script where stopped status returns before
+       process exits.