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 2021/10/24 15:59:37 UTC

[couchdb] branch get-libicu-detailed-versions updated (e204d5a -> 9e2bd10)

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

vatamane pushed a change to branch get-libicu-detailed-versions
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard e204d5a  Add libicu version fetching and emit it in the _node/_local/_versions
     add bdde402  Move custodian VDU to a BDU and fix _all_dbs off-by-one limit bug
     add 9e2bd10  Add libicu version fetching and emit it in the _node/_local/_versions

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   (e204d5a)
            \
             N -- N -- N   refs/heads/get-libicu-detailed-versions (9e2bd10)

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:
 src/couch/src/couch_server.erl        |   3 +-
 src/custodian/src/custodian.hrl       |  49 ------
 src/custodian/src/custodian_util.erl  |  51 +++---
 src/{fabric => mem3}/rebar.config     |   0
 src/mem3/src/mem3_bdu.erl             | 112 +++++++++++++
 src/mem3/test/eunit/mem3_bdu_test.erl | 288 ++++++++++++++++++++++++++++++++++
 test/elixir/test/basics_test.exs      |  11 ++
 test/elixir/test/config/suite.elixir  |   1 +
 8 files changed, 434 insertions(+), 81 deletions(-)
 delete mode 100644 src/custodian/src/custodian.hrl
 copy src/{fabric => mem3}/rebar.config (100%)
 create mode 100644 src/mem3/src/mem3_bdu.erl
 create mode 100644 src/mem3/test/eunit/mem3_bdu_test.erl