You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2023/04/25 09:09:06 UTC

[couchdb] branch rel-main created (now f50c0b02b)

This is an automated email from the ASF dual-hosted git repository.

jan pushed a change to branch rel-main
in repository https://gitbox.apache.org/repos/asf/couchdb.git


      at f50c0b02b doc: fix relnotes

This branch includes the following new commits:

     new 10ccf85c9 3.3.2 Release notes
     new 760c3a4d4 3.2.3 Release notes
     new f50c0b02b doc: fix relnotes

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[couchdb] 01/03: 3.3.2 Release notes

Posted by ja...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jan pushed a commit to branch rel-main
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 10ccf85c93d5d5efd9cdce0da86c1cec558a5586
Author: Nick Vatamaniuc <va...@gmail.com>
AuthorDate: Sat Apr 15 14:48:45 2023 -0400

    3.3.2 Release notes
---
 src/docs/src/whatsnew/3.3.rst | 49 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)

diff --git a/src/docs/src/whatsnew/3.3.rst b/src/docs/src/whatsnew/3.3.rst
index 1ce953ede..1acff91cd 100644
--- a/src/docs/src/whatsnew/3.3.rst
+++ b/src/docs/src/whatsnew/3.3.rst
@@ -20,6 +20,55 @@
     :depth: 1
     :local:
 
+.. _release/3.3.2:
+
+Version 3.3.2
+=============
+
+Features and Enhancements
+-------------------------
+
+* :ghissue:`4529`: In Javascript process manager, use a database tag in
+  addition to a ddoc ID to quickly find processes. This should improve
+  performance.
+
+* :ghissue:`4509`, :ghissue:`4405`: Make remsh work with quoted cookie values.
+
+* :ghissue:`4473`: Avoid re-compiling filter view functions. This could speed
+  up Javascript filter functions.
+
+* :ghissue:`4412`: Remove Javascript json2 script and the try/except clause
+  around seal.
+
+* :ghissue:`4513`: Allow configurable timeouts for ``_view`` and ``_search``.
+  Search timeouts can be specified as ``[fabric] search_timeout`` and
+  ``[fabric] search_permsg``. View per-message timeout can be configured as
+  ``[fabric] view_permsg_timeout``.
+
+* :ghissue:`4438`: Proxy auth can now use one of the configured hash algorithms
+  from chttpd_auth/hash_algorithms to decode authentication tokens.
+
+* :ghissue:`4370`: Ensure design docs are uploaded individually when
+  replicating with ``_bulk_get``. This restores previous behavior before
+  version 3.3.0.
+
+* :ghissue:`4416`: Allow ``_local`` doc writes to the replicator dbs.
+  Previously this issue prevented replicating the replicator db itself, since
+  checkpointing was not working properly.
+
+* :ghissue:`4363`: Fix replication ``_scheduler/docs`` ``"total_rows"`` value.
+
+* :ghissue:`4380`: Be more defensive about SpiderMonkey location. An error
+  should be emitted early if the Spidermonkey library cannot be found.
+
+* :ghissue:`4388`: Bump recon to 2.5.3. See the `changelog
+  <https://ferd.github.io/recon/changelog.html#2-5-3>`_ for more details.
+
+* :ghissue:`4476`, :ghissue:`4515`, :ghissue:`4490`, :ghissue:`4350`,
+  :ghissue:`4379`: Various documentation cleanups and fixes.
+
+* Fix for `CVE-2023-26268 <https://docs.couchdb.org/en/stable/cve/2023-26268.html>`_.
+
 .. _release/3.3.1:
 
 Version 3.3.1


[couchdb] 03/03: doc: fix relnotes

Posted by ja...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jan pushed a commit to branch rel-main
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit f50c0b02b834e3ac9d601ef638f6f8292e242bf9
Author: Jan Lehnardt <ja...@apache.org>
AuthorDate: Tue Apr 25 11:08:52 2023 +0200

    doc: fix relnotes
---
 src/docs/src/whatsnew/3.2.rst | 2 +-
 src/docs/src/whatsnew/3.3.rst | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/docs/src/whatsnew/3.2.rst b/src/docs/src/whatsnew/3.2.rst
index fd391aca0..7250341ee 100644
--- a/src/docs/src/whatsnew/3.2.rst
+++ b/src/docs/src/whatsnew/3.2.rst
@@ -34,7 +34,7 @@ Features and Enhancements
 
 * :ghissue:`4509`, :ghissue:`4405`: Make remsh work with quoted cookie values.
 
-* Fix for `CVE-2023-26268 <https://docs.couchdb.org/en/stable/cve/2023-26268.html>`_.
+* Fix for `CVE-2023-26268 <https://docs.couchdb.org/en/latest/cve/2023-26268.html>`_.
 
 .. _release/3.2.2:
 
diff --git a/src/docs/src/whatsnew/3.3.rst b/src/docs/src/whatsnew/3.3.rst
index 1acff91cd..d67a2e29c 100644
--- a/src/docs/src/whatsnew/3.3.rst
+++ b/src/docs/src/whatsnew/3.3.rst
@@ -67,7 +67,7 @@ Features and Enhancements
 * :ghissue:`4476`, :ghissue:`4515`, :ghissue:`4490`, :ghissue:`4350`,
   :ghissue:`4379`: Various documentation cleanups and fixes.
 
-* Fix for `CVE-2023-26268 <https://docs.couchdb.org/en/stable/cve/2023-26268.html>`_.
+* Fix for `CVE-2023-26268 <https://docs.couchdb.org/en/latest/cve/2023-26268.html>`_.
 
 .. _release/3.3.1:
 


[couchdb] 02/03: 3.2.3 Release notes

Posted by ja...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jan pushed a commit to branch rel-main
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 760c3a4d4d98697e2824f81efcdab56904c5a267
Author: Nick Vatamaniuc <va...@gmail.com>
AuthorDate: Sat Apr 15 14:46:27 2023 -0400

    3.2.3 Release notes
---
 src/docs/src/whatsnew/3.2.rst | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/src/docs/src/whatsnew/3.2.rst b/src/docs/src/whatsnew/3.2.rst
index 76b901bf3..fd391aca0 100644
--- a/src/docs/src/whatsnew/3.2.rst
+++ b/src/docs/src/whatsnew/3.2.rst
@@ -20,6 +20,22 @@
     :depth: 1
     :local:
 
+.. _release/3.2.3:
+
+Version 3.2.3
+=============
+
+Features and Enhancements
+-------------------------
+
+* :ghissue:`4529`: In Javascript process manager, use a database tag in
+  addition to a ddoc ID to quickly find processes. This should improve
+  performance.
+
+* :ghissue:`4509`, :ghissue:`4405`: Make remsh work with quoted cookie values.
+
+* Fix for `CVE-2023-26268 <https://docs.couchdb.org/en/stable/cve/2023-26268.html>`_.
+
 .. _release/3.2.2:
 
 Version 3.2.2