You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2021/01/08 15:12:14 UTC

[couchdb] branch cache_grv updated (cb7c0ed -> 5b2c353)

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

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


 discard cb7c0ed  reuse GRV within an http request
     add c362b1c  Add missing default headers to responses (#3279)
     add 109f74f  Add ability to control which Elixir integration tests to run
     add 5b8bf5a  Use elixir-suite
     add be87c40  Merge pull request #3286 from cloudant/specify-elixir-tests
     add df2fb67  treat 408 as a retryable error condition (#3303)
     add af436c1  Goodbye 2020. Hello 2021. YES. (#3318)
     add 7f2feb0  Upgrade Credo to 1.5.4
     add 0eff137  Add to credo ignores and gitignore new file_system dependency
     add a89242d  Switch from assert length === 0 to Enum.empty? as Credo suggests
     add 5b2c353  reuse GRV within an http request

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   (cb7c0ed)
            \
             N -- N -- N   refs/heads/cache_grv (5b2c353)

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:
 .credo.exs                                         |   1 +
 .gitignore                                         |   1 +
 Makefile                                           |  13 +-
 Makefile.win                                       |  11 +
 NOTICE                                             |   2 +-
 mix.exs                                            |  25 +-
 mix.lock                                           |   5 +-
 src/chttpd/src/chttpd.erl                          |   5 +-
 .../src/couch_replicator_httpc.erl                 |  36 +-
 .../src/couch_replicator_httpd.erl                 |   2 +-
 .../test/eunit/couch_replicator_db_tests.erl       |   9 +
 test/elixir/lib/suite.ex                           | 213 ++++++++
 test/elixir/test/all_docs_test.exs                 |   2 +-
 test/elixir/test/basics_test.exs                   |  10 +
 test/elixir/test/config/skip.elixir                | 313 +++++++++++
 test/elixir/test/config/suite.elixir               | 592 +++++++++++++++++++++
 test/elixir/test/test_helper.exs                   |  17 +-
 17 files changed, 1214 insertions(+), 43 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