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 2022/09/21 21:47:42 UTC

[couchdb] branch document_versions_endpoint updated (104bd2c93 -> 2c27b9c60)

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

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


 discard 104bd2c93 Document _versions endpoint
     add 7b2085df7 Reformat jenkinsfile groovy
     add ca922a357 Fix docs build instructions
     add 5f86af1ec Remove commented out Jenksfile section
     add 84883c6e3 Give the users the option to disable bulk_get attempts
     add f1b7ce637 Upgrade to latest Sphinx 5.1.1 and fix the top Edit on Github link
     add 9fab3868d Statistically skip _revs_diff in the replicator
     add cb176a69a Fix eventsource change feed
     add d7ee5049f add test coverage to prevent junk in eventsource
     add e56050868 Remove the long deprecated bigcouch 0.4 change sequence support
     add 21eebad0f Don't double-encode changes sequence strings in the replicator
     add c4e8f5956 Explicitly maintain a fully connected cluster
     add 2c27b9c60 Document _versions endpoint

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   (104bd2c93)
            \
             N -- N -- N   refs/heads/document_versions_endpoint (2c27b9c60)

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:
 Makefile                                           |   2 +-
 build-aux/Jenkinsfile.full                         |  98 +--
 build-aux/Jenkinsfile.pr                           |  88 +--
 rel/overlay/etc/default.ini                        |   7 +
 src/chttpd/src/chttpd_db.erl                       |   2 +-
 .../src/couch_replicator_api_wrap.erl              |   6 +-
 src/couch_replicator/src/couch_replicator_docs.erl |   6 +
 .../src/couch_replicator_scheduler_job.erl         |  14 +-
 .../src/couch_replicator_utils.erl                 |  12 +-
 .../src/couch_replicator_worker.erl                | 222 ++++---
 .../test/eunit/couch_replicator_bulk_get_tests.erl | 109 ++++
 .../test/eunit/couch_replicator_compact_tests.erl  |   4 +-
 .../eunit/couch_replicator_revs_diff_tests.erl     |  70 ++
 src/docs/Makefile                                  |   2 +-
 src/docs/README.md                                 |   4 +-
 src/docs/ext/github.py                             |  46 --
 src/docs/ext/httpdomain.py                         | 712 ---------------------
 src/docs/requirements.txt                          |   5 +-
 src/docs/setup.sh                                  |  13 +
 src/docs/src/api/ddoc/search.rst                   |   5 +-
 src/docs/src/api/document/common.rst               |  10 +-
 src/docs/src/api/server/common.rst                 |  16 +-
 src/docs/src/conf.py                               |  28 +-
 src/docs/src/config/cluster.rst                    |   8 +
 src/docs/src/config/replicator.rst                 |  10 +
 src/docs/src/ddocs/search.rst                      |   4 +-
 src/docs/src/intro/security.rst                    |   9 +-
 src/docs/src/json-structure.rst                    |   2 +
 src/docs/src/replication/conflicts.rst             |   2 +-
 src/docs/src/replication/protocol.rst              |   4 +-
 src/docs/src/whatsnew/3.1.rst                      |   2 +-
 src/docs/templates/breadcrumbs.html                |  11 +
 src/docs/templates/pages/download.html             |   2 +-
 src/fabric/src/fabric_view_changes.erl             | 192 +++---
 src/global_changes/src/global_changes_httpd.erl    |   8 +-
 src/mem3/src/mem3_distribution.erl                 |  93 +++
 src/mem3/src/mem3_sup.erl                          |   1 +
 src/mem3/src/mem3_sync.erl                         |   1 -
 src/mem3/src/mem3_sync_event.erl                   |   2 +-
 src/mem3/test/eunit/mem3_distribution_test.erl     |  74 +++
 test/elixir/test/changes_async_test.exs            |  24 +
 test/elixir/test/config/suite.elixir               |   1 +
 42 files changed, 800 insertions(+), 1131 deletions(-)
 create mode 100644 src/couch_replicator/test/eunit/couch_replicator_bulk_get_tests.erl
 create mode 100644 src/couch_replicator/test/eunit/couch_replicator_revs_diff_tests.erl
 delete mode 100644 src/docs/ext/github.py
 delete mode 100644 src/docs/ext/httpdomain.py
 create mode 100755 src/docs/setup.sh
 create mode 100644 src/docs/templates/breadcrumbs.html
 create mode 100644 src/mem3/src/mem3_distribution.erl
 create mode 100644 src/mem3/test/eunit/mem3_distribution_test.erl