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/04/13 22:44:15 UTC

[couchdb] branch remove-a-few-3.x-applications updated (e8baad6 -> e7284da)

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

vatamane pushed a change to branch remove-a-few-3.x-applications
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard e8baad6  [wip] 3.x applications cleanup
     add 37b5eed  Add support for Spidermonkey 78 (#3501)
     add 90cbb8e  Increase timeouts for flaky tests
     add 2679fda  Disable arm64v8
     add 46b333c  Fix publish stage
     add 2ae4775  Add new app couch_prometheus
     add 4e5df74  add configurable http server
     add b4d3554  add eunit tests
     add f754fad  add prometheus versioning to header
     add b1f1d1c  add license to missing files
     add 54f3e7c  Merge pull request #3416 from apache/prometheus-endpoint
     add e7284da  [wip] 3.x applications cleanup

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   (e8baad6)
            \
             N -- N -- N   refs/heads/remove-a-few-3.x-applications (e7284da)

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                                           |   2 +-
 build-aux/Jenkinsfile.full                         |   4 +-
 dev/run                                            |   7 +-
 rebar.config.script                                |   1 +
 rel/overlay/etc/default.ini                        |   5 +
 rel/reltool.config                                 |   2 +
 setup_eunit.template                               |   1 +
 src/chttpd/src/chttpd_node.erl                     |   8 +
 src/couch/rebar.config.script                      |  15 +-
 src/couch/src/couch.app.src                        |   3 +-
 src/couch/test/eunit/couch_js_tests.erl            |   3 +-
 .../src/couch_prometheus.app.src}                  |  15 +-
 .../src/couch_prometheus.hrl}                      |   5 +-
 .../src/couch_prometheus_app.erl}                  |   4 +-
 src/couch_prometheus/src/couch_prometheus_http.erl | 102 ++++++++++++
 .../src/couch_prometheus_server.erl                | 174 +++++++++++++++++++++
 .../src/couch_prometheus_sup.erl}                  |  14 +-
 src/couch_prometheus/src/couch_prometheus_util.erl | 166 ++++++++++++++++++++
 .../test/eunit/couch_prometheus_e2e_tests.erl      | 147 +++++++++++++++++
 .../test/eunit/couch_prometheus_util_tests.erl     |  65 ++++++++
 support/build_js.escript                           |  14 +-
 test/elixir/test/changes_async_test.exs            |   6 +-
 22 files changed, 722 insertions(+), 41 deletions(-)
 copy src/{couch_eval/src/couch_eval.app.src => couch_prometheus/src/couch_prometheus.app.src} (71%)
 copy src/{couch_jobs/rebar.config => couch_prometheus/src/couch_prometheus.hrl} (89%)
 copy src/{couch_stats/src/couch_stats_app.erl => couch_prometheus/src/couch_prometheus_app.erl} (90%)
 create mode 100644 src/couch_prometheus/src/couch_prometheus_http.erl
 create mode 100644 src/couch_prometheus/src/couch_prometheus_server.erl
 copy src/{couch_stats/src/couch_stats_sup.erl => couch_prometheus/src/couch_prometheus_sup.erl} (71%)
 create mode 100644 src/couch_prometheus/src/couch_prometheus_util.erl
 create mode 100644 src/couch_prometheus/test/eunit/couch_prometheus_e2e_tests.erl
 create mode 100644 src/couch_prometheus/test/eunit/couch_prometheus_util_tests.erl