You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2020/01/20 19:25:02 UTC

[couchdb] branch jenkins-add-power-full-builds updated (b13c748 -> d2fe824)

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

wohali pushed a change to branch jenkins-add-power-full-builds
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


    from b13c748  Enable building on Power (ppc64le) architecture
     add a27713c  mochiweb v2.20
     add d51ace1  Add SameSite support to auth cookie
     add 34bace7  More way to detect presence of hastings for Ken
     add 5b15c14  Merge pull request #2450 from apache/couchdb-ken-hastings
     add 75e3acb  Fix fabric worker failures for partition requests
     add d7188ba  Debug mem3_sync_event_listener flakiness
     add 355803e  Explicitly disallow SM60 on aarch64
     add 018ec6b  fix empty queries (#1783)
     add f86747f  Refactor Mango warning generation
     add b5fe3d6  Add mango.query_invalid_index counter
     add 5d55e28  Warn on mango index scan
     add 1cacc76  Instrument Mango execution stats
     add 39c2b97  Add a few missing settings to the default.ini file
     add 6dd963a  Handle not_found docs in mango text indexes
     add bad1b17  Merge pull request #2466 from apache/mango_index_consistency_error
     add aecf879  Port etags tests to elixir
     add 7214e50  [Jenkins] Try to cleanup hung beam.smp (FreeBSD) (#2468)
     add b946457  Fix infinite loop in default_authentication_handler
     add 2c9ddd6  Merge pull request #2473 from apache/infinite-loop-auth
     add d2fe824  Merge branch 'master' into jenkins-add-power-full-builds

No new revisions were added by this update.

Summary of changes:
 .gitignore                                       |   1 +
 INSTALL.Unix.md                                  |   5 +-
 build-aux/Jenkinsfile.full                       |   5 +-
 configure                                        |   7 ++
 rebar.config.script                              |   2 +-
 rel/overlay/etc/default.ini                      |  23 ++++
 src/chttpd/src/chttpd_auth.erl                   |   8 +-
 src/couch/priv/stats_descriptions.cfg            |  28 +++++
 src/couch/src/couch_httpd_auth.erl               |  21 +++-
 src/couch/test/exunit/same_site_cookie_tests.exs |  44 +++++++
 src/dreyfus/src/dreyfus_fabric.erl               | 133 +++++++++++++++++---
 src/dreyfus/src/dreyfus_fabric_group1.erl        |   9 +-
 src/dreyfus/src/dreyfus_fabric_group2.erl        |   9 +-
 src/dreyfus/src/dreyfus_fabric_info.erl          |   6 +-
 src/dreyfus/src/dreyfus_fabric_search.erl        |  18 ++-
 src/dreyfus/src/dreyfus_util.erl                 |  22 +++-
 src/fabric/src/fabric_db_partition_info.erl      |  84 ++++++++++---
 src/fabric/src/fabric_util.erl                   |   7 +-
 src/fabric/src/fabric_view.erl                   |  36 +-----
 src/ken/rebar.config.script                      |   4 +-
 src/mango/src/mango_cursor.erl                   | 139 +++++++++++++++------
 src/mango/src/mango_cursor_special.erl           |   7 +-
 src/mango/src/mango_cursor_text.erl              |  17 ++-
 src/mango/src/mango_cursor_view.erl              |  20 ++-
 src/mango/src/mango_execution_stats.erl          |   9 +-
 src/mango/src/mango_idx_text.erl                 |   2 +
 src/mango/src/mango_selector.erl                 |  30 +++--
 src/mango/src/mango_selector_text.erl            |  29 ++++-
 src/mango/src/mango_util.erl                     |   2 +
 src/mango/test/02-basic-find-test.py             |   1 +
 src/mango/test/05-index-selection-test.py        |   8 +-
 src/mango/test/12-use-correct-index-test.py      |   4 +-
 src/mango/test/21-empty-selector-tests.py        |  72 +++++++++++
 src/mango/test/mango.py                          |  10 +-
 src/mem3/src/mem3_sync_event_listener.erl        |   4 +
 test/elixir/README.md                            |   4 +-
 test/elixir/lib/couch.ex                         |  22 ++--
 test/elixir/test/etags_head_test.exs             | 151 +++++++++++++++++++++++
 test/javascript/tests/etags_head.js              |   2 +
 39 files changed, 823 insertions(+), 182 deletions(-)
 create mode 100644 src/couch/test/exunit/same_site_cookie_tests.exs
 create mode 100644 src/mango/test/21-empty-selector-tests.py
 create mode 100644 test/elixir/test/etags_head_test.exs