This is an automated email from the ASF dual-hosted git repository.
rnewson pushed a change to branch rotate-secret
in repository https://gitbox.apache.org/repos/asf/couchdb.git
omit 315928962 Support safe secret rotation
add 849cdd408 Port a basic _find test to Elixir along with the user_docs
fixture it depends on
add 1f303d92b Port the friend_docs fixture and one dependent test as an
example from Python to Elixir
add ad54a11a2 Port the limit_docs fixture and one dependent test from
Python to Elxir
add fedd48b82 Instruct jiffy to use `nil` as the Elixir equivalent of the
JSON null value
add b7743a977 Complete MangoDatabase Elixir port
add 0d949fc13 refactor(test): 11 ignore design docs from python to elixir
add 463eac686 deprecate python vs of 11 ignore design docs
add 25f1f5577 chore(makefile): add possibility to run elixir-search per
file
add 7f2d9c728 refactor(basic-find-test): Port test for basic-find-test to
elixir
add 672a8c693 refactor: remove python test basic-find-test
add e218b2e19 Merge branch 'main' into port-python-02-basic-find
add 949156ad3 Merge branch 'main' into port-python-02-basic-find
add 5e8137e74 Merge branch 'main' into port-python-02-basic-find
add 1c6578567 Merge branch 'main' into port-python-02-basic-find
add 40ae312e2 Merge pull request #5763 from
neighbourhoodie/port-python-02-basic-find
add 856c4a729 feat(dev/run): write couch_uri files so ports are
discoverable with --auto-ports option
add 67d15b963 Merge pull request #5687 from apache/feat/dev-with-uri-file
add fcb1fe2cc Avoid updating password hash when request with simple
password scheme
add 6cacc6e01 refactor(index-selection-test): Port index selection test to
Elixir
add 7f941b21f refactor: remove index-selection python test
add 0a005a8b0 Merge pull request #5764 from
neighbourhoodie/port-python-05-index-selection
add 6b326abf4 Support safe secret rotation
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 (315928962)
\
N -- N -- N refs/heads/rotate-secret (6b326abf4)
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:
dev/run | 7 +
src/couch/src/couch_password_hasher.erl | 2 +-
.../test/eunit/couch_passwords_hasher_tests.erl | 207 ++++++++++
src/mango/test/02-basic-find-test.py | 320 ---------------
src/mango/test/05-index-selection-test.py | 432 --------------------
test/elixir/test/config/search.elixir | 14 +
test/elixir/test/config/suite.elixir | 57 ++-
test/elixir/test/mango/02_basic_find_test.exs | 298 ++++++++++++++
test/elixir/test/mango/05_index_selection_test.exs | 440 +++++++++++++++++++++
9 files changed, 1023 insertions(+), 754 deletions(-)
create mode 100644 src/couch/test/eunit/couch_passwords_hasher_tests.erl
delete mode 100644 src/mango/test/02-basic-find-test.py
delete mode 100644 src/mango/test/05-index-selection-test.py
create mode 100644 test/elixir/test/mango/05_index_selection_test.exs