You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2021/04/04 13:37:17 UTC

[couchdb] branch feat/3298/report-sm-version-in-system updated (97081a7 -> bb1754d)

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

jan pushed a change to branch feat/3298/report-sm-version-in-system
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard 97081a7  feat: add spidermonkey version to _system, closes #3298
     add 1042374  feat(couchjs): add support for SpiderMonkey 86
     add bfc25cc  feat: work around get_stacktrace deprecation/removal
     add 84eac8a  feat: update deps to support otp23 in a full build
     add 509663a  feat: somewhat hacky version detection
     add 1455975  chore: update dependency pointers to release tags
     add 7e0661b  chore: simplify version detection h/t @vatamane
     add 1b7efad  Fix error_logger reports for OTP >= 21
     add a21fd40  Strip last_msg from logs
     add e9f5cc6  Do not log sensitive data during _cluster_setup
     add e630c44  Do not log admin credentials
     add 19625a5  Strip proxy_url in replicator
     add 663b314  Merge pull request #3380 from cloudant/clean-up-logs-3.x.v2
     add 9cb1222  Remove stack traces on EXIT
     add 27bb2c2  Merge pull request #3471 from cloudant/remove-stack-traces-on-EXIT
     add 7ef98a9  Display name of tests
     add f7528c8  Document strip_last_msg in default.ini
     add 0144802  Make silly list configurable
     add 96b782b  Merge pull request #3489 from cloudant/configurable_filter_fields
     add bb1754d  feat: add spidermonkey and erlang version to welcome message, closes #3298

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   (97081a7)
            \
             N -- N -- N   refs/heads/feat/3298/report-sm-version-in-system (bb1754d)

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 +-
 configure                                          |   3 +-
 rebar.config.script                                |  11 +-
 rel/overlay/etc/default.ini                        |   5 +
 src/chttpd/src/chttpd.erl                          |  36 +++----
 src/chttpd/src/chttpd_misc.erl                     |   5 +
 src/chttpd/src/chttpd_node.erl                     |   7 +-
 src/chttpd/src/chttpd_stats.erl                    |   6 +-
 src/couch/include/couch_db.hrl                     |  23 +++++
 src/couch/priv/couch_js/{60 => 86}/help.h          |   2 +-
 src/couch/priv/couch_js/{68 => 86}/main.cpp        |   8 +-
 src/couch/priv/couch_js/{68 => 86}/util.cpp        |   2 +-
 src/couch/priv/couch_js/{68 => 86}/util.h          |   0
 src/couch/rebar.config.script                      |  16 ++-
 src/couch/src/couch_httpd.erl                      |  14 +--
 src/couch/src/couch_proc_manager.erl               |   3 +-
 src/couch/src/couch_query_servers.erl              |   3 +-
 src/couch_log/src/couch_log_config.erl             |  31 +++++-
 src/couch_log/src/couch_log_config_dyn.erl         |   4 +-
 src/couch_log/src/couch_log_formatter.erl          |  31 +++++-
 src/couch_log/src/couch_log_monitor.erl            |  13 +++
 src/couch_log/src/couch_log_sup.erl                |   4 +
 src/couch_log/test/eunit/couch_log_config_test.erl |  79 +++++++++++++-
 .../test/eunit/couch_log_formatter_test.erl        | 114 ++++++++++++++++++++-
 .../src/couch_replicator_httpc_pool.erl            |  31 +++++-
 .../src/couch_replicator_scheduler_job.erl         |   4 +-
 src/ddoc_cache/src/ddoc_cache_entry.erl            |   5 +-
 src/fabric/src/fabric_rpc.erl                      |   9 +-
 src/fabric/src/fabric_view_all_docs.erl            |   3 +-
 src/mango/rebar.config.script                      |   4 +-
 src/mango/src/mango_httpd.erl                      |   3 +-
 src/mango/src/mango_util.erl                       |   9 +-
 src/rexi/src/rexi_server.erl                       |  12 ++-
 src/setup/src/setup.erl                            |   2 +-
 src/setup/src/setup_httpd.erl                      |  15 +--
 support/build_js.escript                           |   6 ++
 36 files changed, 424 insertions(+), 101 deletions(-)
 copy src/couch/priv/couch_js/{60 => 86}/help.h (98%)
 copy src/couch/priv/couch_js/{68 => 86}/main.cpp (96%)
 copy src/couch/priv/couch_js/{68 => 86}/util.cpp (99%)
 copy src/couch/priv/couch_js/{68 => 86}/util.h (100%)