This is an automated email from the ASF dual-hosted git repository.
jan pushed a change to branch jenkins-re-add-macos
in repository https://gitbox.apache.org/repos/asf/couchdb.git
discard 6b9f6804d undebug various bits
discard 8a50b9752 wip: workaround brew output bug
discard 59961d9f6 debug: brew prefix seems to be wonky
discard 1df2b4065 debug: rebar -vv throws printing badmatch
discard 7031100f6 wip: maybe speed up packaging stage
discard 4c1f6aa0e debug: enable verbose logging for rebar compile
discard c7df7ffe9 debug: print env
discard 00d5e25a4 fix: no spidermonkey for macos
discard 1a1fea320 wip: enable only mac CI
add bbbbfc82d Improve b64url benchmarking
add 329920e90 Support safe secret rotation
add ae2bca225 Merge pull request #5754 from apache/rotate-secret
add 5a65236b7 Updated test for SSL support to reflect API changes
add dc8b017e9 Merge pull request #5826 from maovidal/patch-1
add 73dc19314 Increase timeout for replication tests
add 66c564a77 use secret from config if ETS not populated
add 4999cfdfa Merge pull request #5829 from apache/sync-secret
add 0d2002dbc Fix race condition during purge checkpoint creation
add bc3d98cd3 feat: concat eunit test logs and remove test tmp dirs in
Makefile
add 790271a2c Merge pull request #5830 from apache/feat/cat-test-logs
add 2667e5d43 wip: enable only mac CI
add c72dcc6f0 fix: no spidermonkey for macos
add 6277bcab5 debug: print env
add bb73ccd31 debug: enable verbose logging for rebar compile
add 4ce16e4d8 wip: maybe speed up packaging stage
add 4db7f899b debug: rebar -vv throws printing badmatch
add e0323a186 debug: brew prefix seems to be wonky
add a9045aef4 wip: workaround brew output bug
add 9d9b09ab1 undebug various bits
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 (6b9f6804d)
\
N -- N -- N refs/heads/jenkins-re-add-macos (9d9b09ab1)
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 +
src/b64url/README.md | 51 +++--
src/b64url/benchmark.sh | 22 +++
src/b64url/test/benchmark.escript | 165 ----------------
src/couch/src/couch_bt_engine_compactor.erl | 15 +-
src/couch/src/couch_httpd_auth.erl | 57 +++---
src/couch/src/couch_secondary_sup.erl | 1 +
src/couch/src/couch_secrets.erl | 213 +++++++++++++++++++++
src/couch/src/test_util.erl | 3 +-
src/couch/test/eunit/couch_secrets_tests.erl | 81 ++++++++
.../couch_replicator_error_reporting_tests.erl | 40 ++--
src/docs/src/config/auth.rst | 12 ++
src/docs/src/install/troubleshooting.rst | 7 +-
src/mem3/src/mem3_rep.erl | 166 +++++++++++++++-
14 files changed, 597 insertions(+), 238 deletions(-)
create mode 100755 src/b64url/benchmark.sh
delete mode 100755 src/b64url/test/benchmark.escript
create mode 100644 src/couch/src/couch_secrets.erl
create mode 100644 src/couch/test/eunit/couch_secrets_tests.erl