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/08 20:41:58 UTC

[couchdb] branch remove-couch-icu-driver updated (659cadc -> a25f58d)

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

vatamane pushed a change to branch remove-couch-icu-driver
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard 659cadc  Remove couch_icu_driver module
     add 65fbc6c  Add ability to control which Elixir integration tests to run
     add 3d5f244  Add --erlang-config option to dev/run
     add c8951a8  Fix logic in ensure_exunit_started
     add b5e9e5d  Load test helpers to prevent crash of test case extractor
     add 6969939  Update elixir test suite
     add 601d48e  Use elixir-suite
     add 522cb5a  Disable some tests
     add 37dd42f  Remove error message on mix test
     add 2871128  Merge pull request #3752 from cloudant/port-3286
     add 22189ea  Properly sort descending=true view results when a key list is provided
     add 4f33f14  Make view merge row aggregation in fabric stable
     add c2f231c  Remove redundant CSP tests
     add dd7c26b  Remove unused variables and extra whitespace
     add f7dae68  Bump version to 3.2.0 and update dependencies
     add a5603dd  backport C++ standard settings from SM86 to SM78
     add 494c871  Bump jiffy to CouchDB-1.0.9-1
     add b32aa9a  Fix Windows makefile for Fauxton (#3777)
     add efb409b  Bump docs for 3.2.0-RC2
     add 28e39d4  Try harder to avoid a change feed rewind after a shard move
     add a25f58d  Remove couch_icu_driver module

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   (659cadc)
            \
             N -- N -- N   refs/heads/remove-couch-icu-driver (a25f58d)

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                                        |  15 +-
 Makefile.win                                    |  13 +-
 config/integration.exs                          |   3 -
 dev/run                                         |   9 +-
 mix.exs                                         |  23 +
 rebar.config.script                             |  10 +-
 rel/reltool.config                              |   2 +-
 src/chttpd/test/eunit/chttpd_db_test.erl        |  50 +-
 src/couch/rebar.config.script                   |   4 +-
 src/couch/src/couch_db.erl                      |  32 +-
 src/fabric/src/fabric_view.erl                  |   1 -
 src/fabric/src/fabric_view_map.erl              |  19 +-
 test/elixir/lib/suite.ex                        | 222 ++++++++
 test/elixir/test/config/skip.elixir             | 317 +++++++++++
 test/elixir/test/config/suite.elixir            | 711 ++++++++++++++++++++++++
 test/elixir/test/test_helper.exs                |  17 +-
 test/elixir/test/view_multi_key_design_test.exs |  40 +-
 version.mk                                      |   4 +-
 18 files changed, 1391 insertions(+), 101 deletions(-)
 create mode 100644 test/elixir/lib/suite.ex
 create mode 100644 test/elixir/test/config/skip.elixir
 create mode 100644 test/elixir/test/config/suite.elixir