You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2023/06/14 15:58:50 UTC

[couchdb] branch qjs updated (7f3bb8acd -> 19b941236)

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

vatamane pushed a change to branch qjs
in repository https://gitbox.apache.org/repos/asf/couchdb.git


    omit 7f3bb8acd Add QuickJS as a Javascript engine option
     add 8b6b3e9b3 Fix typo POST -> PUT
     add 0fa9a07f0 Add extra assert in flaky couch_file test
     add e996fa07b Fix prometheus to survive mem3_sync termination
     add 416c1cd8d TLS: add `{verify, verify_peer}` to enable verification
     add eb6a74d56 mango: revisit test database recreation logic
     add 604526f5f Add optional logging of security issues when replicating (#4625)
     add bb1216593 clarify default quorum calculation
     add 38b00c900 Merge pull request #4636 from apache/clarify-quorum
     add 19b941236 Add QuickJS as a Javascript engine option

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (7f3bb8acd)
            \
             N -- N -- N   refs/heads/qjs (19b941236)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .gitignore                                         |   2 -
 Makefile                                           |   2 +-
 configure                                          |  27 ---
 dev/remsh-tls                                      |   8 +-
 dev/run                                            |  36 +++-
 rel/overlay/bin/remsh                              |   2 +-
 rel/overlay/etc/default.ini                        |   6 +
 src/couch/test/eunit/couch_file_tests.erl          |   3 +-
 src/couch_dist/.gitignore                          |   4 +
 src/couch_dist/README.md                           | 162 ++++++++++++++++
 src/couch_dist/certs/certs                         |  11 ++
 src/couch_dist/certs/certs.exs                     | 209 +++++++++++++++++++++
 src/couch_dist/certs/parse_cert.escript            |   8 +
 src/couch_dist/gen_certs                           |  43 +++++
 .../src/couch_prometheus_server.erl                |  14 +-
 .../test/eunit/couch_prometheus_e2e_tests.erl      |  16 +-
 src/couch_replicator/src/couch_replicator.erl      |   1 +
 .../src/couch_replicator_doc_processor.erl         |   1 +
 .../src/couch_replicator_scheduler_job.erl         |  16 +-
 .../src/couch_replicator_utils.erl                 | 108 ++++++++++-
 src/docs/src/api/ddoc/render.rst                   |   2 +-
 src/docs/src/cluster/sharding.rst                  |   9 +-
 src/docs/src/cluster/tls_erlang_distribution.rst   |  53 ++++--
 src/docs/src/config/replicator.rst                 |  38 +++-
 src/mango/test/mango.py                            |  26 ++-
 25 files changed, 731 insertions(+), 76 deletions(-)
 create mode 100644 src/couch_dist/.gitignore
 create mode 100644 src/couch_dist/README.md
 create mode 100755 src/couch_dist/certs/certs
 create mode 100644 src/couch_dist/certs/certs.exs
 create mode 100755 src/couch_dist/certs/parse_cert.escript
 create mode 100755 src/couch_dist/gen_certs