You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ro...@apache.org on 2023/02/22 10:30:53 UTC

[couchdb] branch upgrade-proxy-hash updated (fd97536d9 -> 3ceb6dbca)

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

ronny pushed a change to branch upgrade-proxy-hash
in repository https://gitbox.apache.org/repos/asf/couchdb.git


    omit fd97536d9 Upgrade hash algorithm for proxy auth
     add 97fdac3af mango: Fix specification of `choose_best_index/1`
     add 395c08302 Move elixir search tests to be with other elixir tests
     add 50dd63176 Chase rename of `dreyfus-test` to `elixir-search` in documentation
     add df0699a60 Clean up `make help` output
     add 065b86fab Remove the inactive uploader action from `build-report`
     add 0feedb66f Fix the `list-eunit-apps` target
     add 9b86e7130 Overhaul the Windows Makefile
     add 645912d0c Fix typo
     add 9f8cf48e9 docs/api: use {params} consistently in titles (#4426)
     add b38885114 Allow definition of JWT roles claim as comma-seperated list (#4431)
     add c866b488d Unifying the notation of dynamic parameters in the docs (#4436)
     add f7cafa30a Fix typo in "feature_flags" section comment (#4433)
     add b3890b5d3 Fix and extend developer instructions
     add 9cde18150 mango: skip the `$keymapMatch` test for text indexes
     add 1278cf19f mango: switch to UTF-8 encoding for every test
     add 187d9337e Consolidate Mango integration tests
     add 3ceb6dbca Upgrade hash algorithm for proxy auth

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   (fd97536d9)
            \
             N -- N -- N   refs/heads/upgrade-proxy-hash (3ceb6dbca)

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                                           |  43 ++++----
 Makefile.win                                       |  68 ++++++++----
 README-DEV.rst                                     | 117 +++++++++++++++------
 rel/overlay/etc/default.ini                        |   4 +-
 src/couch/src/couch_httpd_auth.erl                 |   9 +-
 src/docs/src/api/database/bulk-api.rst             |   4 +-
 src/docs/src/api/database/changes.rst              |   6 +-
 src/docs/src/api/database/common.rst               |   6 +-
 src/docs/src/api/database/compact.rst              |  24 ++---
 src/docs/src/api/database/find.rst                 |  14 +--
 src/docs/src/api/database/index.rst                |   4 +-
 src/docs/src/api/database/misc.rst                 |  26 ++---
 src/docs/src/api/database/security.rst             |   6 +-
 src/docs/src/api/database/shard.rst                |  14 +--
 src/docs/src/api/ddoc/common.rst                   |  18 ++--
 src/docs/src/api/ddoc/render.rst                   |  36 +++----
 src/docs/src/api/ddoc/rewrites.rst                 |   2 +-
 src/docs/src/api/ddoc/search.rst                   |  12 +--
 src/docs/src/api/ddoc/views.rst                    |   6 +-
 src/docs/src/api/document/attachments.rst          |   6 +-
 src/docs/src/api/document/common.rst               |   6 +-
 src/docs/src/api/local.rst                         |  24 +++--
 src/docs/src/api/partitioned-dbs.rst               |  28 ++---
 src/docs/src/api/server/authn.rst                  |  25 ++++-
 src/docs/src/config/auth.rst                       |   4 +-
 src/docs/src/config/compaction.rst                 |   2 +-
 src/docs/src/maintenance/compaction.rst            |   2 +-
 src/docs/src/whatsnew/0.11.rst                     |   2 +-
 src/docs/src/whatsnew/2.3.rst                      |   4 +-
 src/docs/src/whatsnew/3.2.rst                      |   2 +-
 src/docs/src/whatsnew/3.3.rst                      |   6 +-
 src/dreyfus/test/elixir/mix.exs                    |  30 ------
 src/dreyfus/test/elixir/mix.lock                   |   5 -
 .../test/elixir/test/config/test-config.ini        |   2 -
 src/dreyfus/test/elixir/test/test_helper.exs       |   6 --
 src/mango/src/mango_cursor_view.erl                |   3 +-
 src/mango/test/02-basic-find-test.py               |   1 -
 src/mango/test/03-operator-test.py                 |   4 +
 src/mango/test/04-key-tests.py                     |   1 -
 src/mango/test/13-users-db-find-test.py            |   1 -
 src/mango/test/README.md                           |  29 -----
 src/mango/test/mango.py                            |  44 ++++----
 src/mango/test/user_docs.py                        |   1 -
 src/smoosh/operator_guide.md                       |   4 +-
 test/elixir/test/config/search.elixir              |  32 ++++++
 test/elixir/test/config/test-config.ini            |   3 +
 test/elixir/test/jwt_roles_claim_test.exs          |  40 ++++++-
 .../elixir/test/partition_search_test.exs          |   0
 .../test => test}/elixir/test/search_test.exs      |   0
 49 files changed, 420 insertions(+), 316 deletions(-)
 delete mode 100644 src/dreyfus/test/elixir/mix.exs
 delete mode 100644 src/dreyfus/test/elixir/mix.lock
 delete mode 100644 src/dreyfus/test/elixir/test/config/test-config.ini
 delete mode 100644 src/dreyfus/test/elixir/test/test_helper.exs
 delete mode 100644 src/mango/test/README.md
 create mode 100644 test/elixir/test/config/search.elixir
 rename {src/dreyfus/test => test}/elixir/test/partition_search_test.exs (100%)
 rename {src/dreyfus/test => test}/elixir/test/search_test.exs (100%)