This is an automated email from the ASF dual-hosted git repository.
rnewson pushed a change to branch aegis
in repository https://gitbox.apache.org/repos/asf/couchdb.git.
discard b63f074 Make aegis into app and add key cache server (#2792)
omit 34c5b85 Add encryption for database values
add 2ba98a8 Return better responses for endpoints which are not
implemented
add 1be2363 Fix POST _all_docs/queries endpoint
add e71a77d Do not allow editing _security in _user database
add 1d6799f Start running chttpd eunit tests
add 0d1cf61 Support soft-deletion in fabric level
add ec12e1f Support soft-deletion in chttpd level
add 6c1d7a9 Merge pull request #2666 from apache/db-softdeletion
add d6ec993 Compress doc bodies and attachments
add a14f62d Add mango_plugin
add 396a3b5 Merge pull request #2767 from
cloudant/prototype/fdb-layer-mango-plugin
add 56137f3 Fix job removal notifications
add daf1082 Fix division by zero
add cbad08d Make 'make check' run all the passing FDB tests on this branch
add 2bb0ccd Fix incorrect usage of couch_epi in mango plugin
add aad871b Merge pull request #2775 from cloudant/mango-plugin-fixup
add d4bc3a5 Fix flaky fabric2_index test
add 742c64e Fix index updater configuration keys
add 247b809 Rename variables to indicate transaction state
add 3c0a017 Move process_db/1 to match the logical progression
add 3e1c822 Update to use `fabric2_db:get_design_docs/1`
add 7bc9148 Extend fabric2_index callbacks for index cleanup
add e0d0391 Implement couch_views:cleanup_indices/2
add 4275a49 Implement _view_cleanup for FoundationDB
add 7aeb54b Optionally cleanup stale indices automatically
add 2e5a556 Remove jobs on index cleanup
add 30fdef7 Remove failed view jobs
add 7575152 Implement couch_views_cleanup_test.erl
add 9da549e Integrate emilio - erang linter
add 6bc6f9c Merge pull request #2789 from cloudant/fdb-integrate-emilio
add 3636451 Enable configurable binary chunk size
add 27cbad7 report changes stats intermittently (#2777)
add 0eb1a73 Refactor expiring cache FDB interface
add 4098c12 Clean up old expiry key on update insert
add 4e2f18c Merge keys from rebar.config
add a527ad1 Merge pull request #2783 from cloudant/merge-rebar-config
add f71c4c0 Allow using cached security and revs_limit properties
add 0b8dfa6 Fetch doc in same transaction as _all_doc row
add 45e0c30 Fix typo in error message
add 8554329 Merge pull request #2796 from cloudant/fix-typo
add 3895223 Add after_interactive_write plugin to couch_views_updater
add f522b88 Refactor fetching rev code in fabric2_fdb
add 5efcbfc Add fold_docs for DocId list
add 232e1d5 Report the chttpd_auth authentication db in session info
new 67038b9 Add native encryption support
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 (b63f074)
\
N -- N -- N refs/heads/aegis (67038b9)
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.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 2 +
Makefile | 16 +-
Makefile.win | 6 +-
bin/warnings_in_scope | 125 +++++++
build-aux/Jenkinsfile.pr | 2 +-
configure | 13 +
configure.ps1 | 14 +
emilio.config | 20 +
rebar.config.script | 9 +-
rel/overlay/etc/default.ini | 12 +-
src/chttpd/src/chttpd.erl | 7 +-
src/chttpd/src/chttpd_db.erl | 68 ++--
src/chttpd/src/chttpd_httpd_handlers.erl | 40 +-
src/chttpd/src/chttpd_misc.erl | 117 ++++--
src/chttpd/src/chttpd_stats.erl | 96 +++--
src/chttpd/src/chttpd_test_util.erl | 2 +-
src/chttpd/src/chttpd_view.erl | 20 +-
.../eunit/chttpd_db_bulk_get_multipart_test.erl | 31 +-
src/chttpd/test/eunit/chttpd_db_bulk_get_test.erl | 30 +-
src/chttpd/test/eunit/chttpd_db_test.erl | 38 +-
src/chttpd/test/eunit/chttpd_dbs_info_test.erl | 13 +-
src/chttpd/test/eunit/chttpd_deleted_dbs_test.erl | 234 ++++++++++++
.../test/eunit/chttpd_open_revs_error_test.erl | 112 ------
src/chttpd/test/eunit/chttpd_purge_tests.erl | 6 +-
src/chttpd/test/eunit/chttpd_security_tests.erl | 57 +--
src/chttpd/test/eunit/chttpd_session_tests.erl | 74 ++++
src/chttpd/test/eunit/chttpd_stats_tests.erl | 77 ++++
.../test/eunit/chttpd_test.hrl} | 2 +
src/chttpd/test/eunit/chttpd_view_test.erl | 4 +-
src/couch/.gitignore | 2 +
src/couch/rebar.config.script | 7 +-
src/couch/src/couch_db.erl | 2 +
src/couch/src/couch_httpd_auth.erl | 3 +-
.../src/couch_expiring_cache_fdb.erl | 87 +++--
.../src/couch_expiring_cache_server.erl | 2 +-
.../test/couch_expiring_cache_tests.erl | 19 +-
src/couch_jobs/src/couch_jobs_fdb.erl | 4 +
src/couch_jobs/test/couch_jobs_tests.erl | 28 ++
src/couch_rate/src/couch_rate_limiter.erl | 2 +
src/couch_views/src/couch_views.erl | 19 +
src/couch_views/src/couch_views_epi.erl | 4 +-
src/couch_views/src/couch_views_fdb.erl | 40 +-
src/couch_views/src/couch_views_indexer.erl | 2 +-
src/couch_views/src/couch_views_jobs.erl | 35 +-
src/couch_views/src/couch_views_plugin.erl | 40 ++
src/couch_views/src/couch_views_updater.erl | 5 +-
src/couch_views/test/couch_views_cleanup_test.erl | 411 +++++++++++++++++++++
src/couch_views/test/couch_views_indexer_test.erl | 2 +-
src/couch_views/test/couch_views_map_test.erl | 2 +-
src/fabric/include/fabric2.hrl | 8 +-
src/fabric/src/fabric2_db.erl | 332 ++++++++++++++++-
src/fabric/src/fabric2_fdb.erl | 233 ++++++++++--
src/fabric/src/fabric2_index.erl | 73 ++--
src/fabric/src/fabric2_util.erl | 16 +
src/fabric/test/fabric2_db_crud_tests.erl | 233 ++++++++++++
src/fabric/test/fabric2_db_misc_tests.erl | 34 +-
src/fabric/test/fabric2_doc_att_tests.erl | 52 ++-
src/fabric/test/fabric2_index_tests.erl | 6 +-
src/mango/src/mango_epi.erl | 4 +-
src/mango/src/mango_httpd.erl | 20 +-
.../src/mango_plugin.erl} | 40 +-
test/elixir/test/all_docs_test.exs | 30 +-
62 files changed, 2559 insertions(+), 485 deletions(-)
create mode 100755 bin/warnings_in_scope
create mode 100644 emilio.config
create mode 100644 src/chttpd/test/eunit/chttpd_deleted_dbs_test.erl
delete mode 100644 src/chttpd/test/eunit/chttpd_open_revs_error_test.erl
create mode 100644 src/chttpd/test/eunit/chttpd_session_tests.erl
create mode 100644 src/chttpd/test/eunit/chttpd_stats_tests.erl
copy src/{fabric/test/fabric2_test.hrl => chttpd/test/eunit/chttpd_test.hrl}
(97%)
create mode 100644 src/couch_views/src/couch_views_plugin.erl
create mode 100644 src/couch_views/test/couch_views_cleanup_test.erl
copy src/{global_changes/src/global_changes_plugin.erl =>
mango/src/mango_plugin.erl} (59%)