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/07 22:50:43 UTC

[couchdb] branch feat/remove-couchup updated (7d60650 -> 4759e7f)

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

wohali pushed a change to branch feat/remove-couchup
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


    omit 7d60650  Merge branch 'master' into feat/remove-couchup
    omit a081e03  feat: remove couchup
     add c8a5757  bump hqueue dep for Windows build
     add 6293a8b  Initial commit
     add 04aea73  new IOQ api
     add c7f9ad1  Fallback to direct I/O if ioq is not running
     add 40d157f  Update state on config changes
     add c552c66  Allow to customize concurrency value
     add 2175035  Handle {gen_event_EXIT,{config_listener,ioq},shutdown} message
     add ad60d32  Update config_listener behaviuor
     add 0ffa7cd  Don't restart event handler on termination
     add c7c75eb  Merge remote-tracking branch 'iilyak/2561-make-config-API-consistent'
     add bdcfe6a  Update handle_config_terminate API
     add 126a849  Fix a typo in a child name
     add ba99ec7  Merge remote branch 'cloudant:3102-fix-config_subscription'
     add 5f5375a  Remove unused code
     add 1d2b149  Merge remote branch 'cloudant:remove-unused-config-subscriber'
     add 345804c  Use couch_rand compatibility module
     add 04bebb3  Merge branch 'use-couch-rand-module'
     add e641a74  Enable users to bypass IOQ for certain IO classes
     add 53d3d8f  Add 'src/ioq/' from commit 'e641a740978447f0b29785580e46d2e30e822001'
     add 2ed9a6c  Configure IOQ defaults
     add 7c12f14  Remove ioq/hqueue dependencies, add ioq as subdir
     add 7b09892  Merge pull request #2408 from apache/ioq-in-tree
     add 0c33ed1  Set `couchTests.elixir = true` to skip ported tests
     add f4a7c24  Remove allowance for unnamed_error
     add 1169c44  Match the OOM beahvior of 1.8.5
     add 1af17e0  Rework CI setup (#2367)
     add c6459fa  Jenkins: Use 'docker' label for dockerised builds (#2418)
     add 4759e7f  feat: remove couchup

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   (7d60650)
            \
             N -- N -- N   refs/heads/feat/remove-couchup (4759e7f)

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:
 .travis.yml                                        |  87 --------
 README.rst                                         |  15 +-
 Jenkinsfile => build-aux/Jenkinsfile.full          | 234 +++++++++++++--------
 build-aux/Jenkinsfile.pr                           | 147 +++++++++++++
 build-aux/README.Jenkins                           | 149 +++++++++++++
 rebar.config.script                                |   3 +-
 rel/overlay/etc/default.ini                        |  34 +++
 rel/reltool.config                                 |   2 -
 src/couch/priv/couch_js/60/main.cpp                |   1 +
 src/couch/priv/couch_js/60/util.cpp                |   8 +
 src/couch/priv/couch_js/60/util.h                  |   1 +
 src/couch/test/eunit/couch_js_tests.erl            |  45 ++++
 src/ioq/.gitignore                                 |   2 +
 .../couch_index.app.src => ioq/src/ioq.app.src}    |  12 +-
 src/ioq/src/ioq.erl                                | 189 +++++++++++++++++
 .../couch_stats_app.erl => ioq/src/ioq_app.erl}    |   6 +-
 .../couch_peruser_sup.erl => ioq/src/ioq_sup.erl}  |   9 +-
 test/javascript/tests/auth_cache.js                |   2 +-
 test/javascript/tests/cookie_auth.js               |   2 +-
 test/javascript/tests/users_db.js                  |   2 +-
 test/javascript/tests/utf8.js                      |   2 +-
 test/javascript/tests/view_errors.js               |   2 +-
 22 files changed, 740 insertions(+), 214 deletions(-)
 delete mode 100644 .travis.yml
 rename Jenkinsfile => build-aux/Jenkinsfile.full (74%)
 create mode 100644 build-aux/Jenkinsfile.pr
 create mode 100644 build-aux/README.Jenkins
 create mode 100644 src/couch/test/eunit/couch_js_tests.erl
 create mode 100644 src/ioq/.gitignore
 copy src/{couch_index/src/couch_index.app.src => ioq/src/ioq.app.src} (73%)
 create mode 100644 src/ioq/src/ioq.erl
 copy src/{couch_stats/src/couch_stats_app.erl => ioq/src/ioq_app.erl} (91%)
 copy src/{couch_peruser/src/couch_peruser_sup.erl => ioq/src/ioq_sup.erl} (89%)