You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2019/12/16 16:40:40 UTC

[couchdb] branch add-old-erlang-warning updated (01354c7 -> 7deed62)

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

davisp pushed a change to branch add-old-erlang-warning
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard 01354c7  Update warning/error messages for Erlang versions
     add d3ff408  Remove seq, kseq and log trees from updater, compactor and indexer
     add 2c8966f  Remove view changes interface functions, tests and end-point
     add 6a58d8c  Remove view_changes functionality from couch_changes side
     add a5a0c8d  Modify changes accumulator record
     add ac74330  Remove fast_view filter from fabric
     add 855afac  Remove all view_changes functionality from mrview utils
     add e1c66f2  Modify all mrview records and add according migration functionality
     add 87edbae  Merge pull request #2324 from apache/2167-no-view-changes
     add 4815eeb  Allow all params to be passed via body for POST view
     add 8ac108a  Allow all params to be passed via body for POST _all_docs
     add ff0da20  Add COUCHDB_FAUXTON_DOCROOT comment to couchdb.cmd
     add 71d673f  Remove invalid query server def in local.ini
     add 57fa67f  Port couch_compress_tests to Elixir
     add 4dbd7c1  Big endian support for couch_compress tests
     add 27d4458  Merge pull request #2346 from willholley/couch_compress_tests
     add 63c9da6  Fix timeout case clause in fabric_db_info
     add 897085c  Merge pull request #2351 from apache/2530-all-dbs-timeout
     add cda9430  Fix multidb changes test
     add a66998e  Make sure we fetch test dependencies
     add 1953c33  Integrate excoverals into test stack
     add 0ef71cb  Merge pull request #2353 from cloudant/exunit-cover
     add e37ebde  Enable port 5986 for test suites only
     add ee05af8  Merge pull request #2356 from apache/5986-tests-only
     add ff17772  Switch to UTC
     add c2ff5b7  Suppress exunit compiler warning
     add 18b97f7  Merge pull request #2361 from cloudant/smoosh-utc-fix
     add 5c0cf2e  Block on index available in tests
     add 789ffbc  Merge pull request #2357 from apache/mango_test_fixes
     add 8a914dd  Sanitize `ERL_FLAGS` in remsh
     add df5b311  Remsh: attempt to auto-locate Erlang cookie
     add 4a88f3a  Merge pull request #2352 from apache/remsh
     add 7deed62  Update warning/error messages for Erlang 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   (01354c7)
            \
             N -- N -- N   refs/heads/add-old-erlang-warning (7deed62)

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                                         |   8 +
 .gitignore                                         |  10 +
 Makefile                                           |   5 +-
 Makefile.win                                       |   2 +-
 dev/run                                            |   4 +
 mix.exs                                            |  79 ++++-
 mix.lock                                           |   9 +
 rebar.config.script                                |  56 +++-
 rel/files/couchdb.cmd.in                           |   1 +
 rel/files/eunit.ini                                |   1 +
 rel/overlay/bin/remsh                              |  18 +-
 rel/overlay/etc/local.ini                          |   4 -
 src/chttpd/src/chttpd_db.erl                       |   2 +-
 src/chttpd/src/chttpd_show.erl                     |   2 +-
 src/chttpd/src/chttpd_view.erl                     |  19 +-
 src/couch/src/couch.app.src                        |   3 +-
 src/couch/src/couch_changes.erl                    | 312 +++---------------
 src/couch/src/couch_multidb_changes.erl            |   9 +-
 src/couch/test/eunit/couch_changes_tests.erl       |  38 ---
 src/couch/test/eunit/couch_compress_tests.erl      |  85 -----
 src/couch/test/eunit/couchdb_views_tests.erl       |  22 +-
 ....view => 6cf2c2f766f87b618edf6630b00f8736.view} | Bin 4192 -> 8310 bytes
 src/couch/test/eunit/fixtures/test.couch           | Bin 16482 -> 28878 bytes
 src/couch/test/exunit/couch_compress_tests.exs     | 113 +++++++
 src/couch_mrview/include/couch_mrview.hrl          |   8 -
 src/couch_mrview/src/couch_mrview.erl              | 102 +-----
 src/couch_mrview/src/couch_mrview_changes.erl      |  18 --
 src/couch_mrview/src/couch_mrview_compactor.erl    |  80 +----
 src/couch_mrview/src/couch_mrview_http.erl         |  46 +--
 src/couch_mrview/src/couch_mrview_index.erl        |  30 +-
 src/couch_mrview/src/couch_mrview_show.erl         |   2 +-
 src/couch_mrview/src/couch_mrview_test_util.erl    |  24 --
 src/couch_mrview/src/couch_mrview_updater.erl      | 240 +++-----------
 src/couch_mrview/src/couch_mrview_util.erl         | 359 ++++-----------------
 .../eunit/couch_mrview_changes_since_tests.erl     | 209 ------------
 .../eunit/couch_mrview_index_changes_tests.erl     | 223 -------------
 src/fabric/src/fabric_db_info.erl                  |   2 +-
 src/fabric/src/fabric_rpc.erl                      |   5 +-
 src/smoosh/src/smoosh_utils.erl                    |   2 +-
 src/smoosh/test/exunit/scheduling_window_test.exs  |   2 -
 test/elixir/test/all_docs_test.exs                 | 110 +++++++
 test/elixir/test/design_docs_test.exs              | 108 +++++++
 test/elixir/test/local_docs_test.exs               | 110 +++++++
 test/elixir/test/partition_mango_test.exs          |  20 ++
 test/elixir/test/view_test.exs                     | 143 ++++++++
 45 files changed, 1020 insertions(+), 1625 deletions(-)
 delete mode 100644 src/couch/test/eunit/couch_compress_tests.erl
 rename src/couch/test/eunit/fixtures/{3b835456c235b1827e012e25666152f3.view => 6cf2c2f766f87b618edf6630b00f8736.view} (50%)
 create mode 100644 src/couch/test/exunit/couch_compress_tests.exs
 delete mode 100644 src/couch_mrview/src/couch_mrview_changes.erl
 delete mode 100644 src/couch_mrview/test/eunit/couch_mrview_changes_since_tests.erl
 delete mode 100644 src/couch_mrview/test/eunit/couch_mrview_index_changes_tests.erl
 create mode 100644 test/elixir/test/design_docs_test.exs
 create mode 100644 test/elixir/test/local_docs_test.exs
 create mode 100644 test/elixir/test/view_test.exs