This is an automated email from the ASF dual-hosted git repository.
eiri pushed a change to branch prototype/fdb-encryption
in repository https://gitbox.apache.org/repos/asf/couchdb.git.
discard 847b093 Switch to old crypto API for now
discard e93166d Add basic tests
discard 1ae2f54 Store wrapped KEK in db config
discard 64a3193 Add basic KEK cache
discard e60c7cc Grab KEK in main server loop
discard fb99ea7 Don't block encryption server on encode/decode operations
discard 996f81f Add basic data encryption
add 17ce741 Optimize resubmitting pending jobs
add 02ca72b Implement a simple index auto-updater
add 132cf7a Enable index auto-updating for couch_views
add 6b5985f Fix bug in reverse folding with startkey_docid
add 1457c28 couch_jobs resubmit updates job data (#2649)
add 258ec66 Fix _changes with a _view filter
add bf989eb Handle spurious erlfdb future
add 0db143a Handle transaction timeouts in list_dbs and list_dbs_info
add 0cd9c26 Refactor some of the "tx_too_old" tests
add f28a1ad A few minor cleanups in fabric2_db_crud_tests
add 3bac804 add _conflicts field to docs for views
add 0cafb17 Handle transaction cancelled errors in list_dbs_info/3
add 28ffba4 Handle transaction timeouts in _all_docs
add 301db96 Reformat and simplify couch_views_indexer_test module
add 41be92b Add additional get_doc spans
add 15509f2 Merge pull request #2681 from
apache/prototype/fdb-layer-get-doc-spans
new 7c1df94 Add basic data encryption
new 63af132 Don't block encryption server on encode/decode operations
new d2a0f63 Grab KEK in main server loop
new efcecb8 Add basic KEK cache
new 06ecf2e Store wrapped KEK in db config
new 9339e95 Add basic tests
new 41c9691 Switch to old crypto API for now
new 8f9a988 Switch from rev to update counter for key derivation
new 1295298 Add on/off config switch for encryption
new db79fdf Implement key management as an epi plugin
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 (847b093)
\
N -- N -- N refs/heads/prototype/fdb-encryption (db79fdf)
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 10 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:
rel/files/eunit.ini | 6 +-
rel/overlay/etc/default.ini | 28 ++
src/chttpd/src/chttpd_changes.erl | 2 +-
src/chttpd/src/chttpd_db.erl | 3 +-
.../src/couch_expiring_cache_server.erl | 8 +
src/couch_jobs/src/couch_jobs.erl | 8 +
src/couch_jobs/src/couch_jobs_fdb.erl | 34 ++-
src/couch_jobs/test/couch_jobs_tests.erl | 74 +++++
src/couch_views/src/couch_views.erl | 21 +-
src/couch_views/src/couch_views_indexer.erl | 10 +-
src/couch_views/src/couch_views_sup.erl | 8 +
src/couch_views/test/couch_views_indexer_test.erl | 322 ++++++---------------
src/fabric/include/fabric2.hrl | 1 +
src/fabric/src/fabric2_db.erl | 8 +-
src/fabric/src/fabric2_encryption.erl | 89 +++---
src/fabric/src/fabric2_encryption_plugin.erl | 48 +++
src/fabric/src/fabric2_encryption_provider.erl | 60 ++++
src/fabric/src/fabric2_epi.erl | 7 +-
src/fabric/src/fabric2_fdb.erl | 202 +++++++++----
src/fabric/src/fabric2_index.erl | 222 ++++++++++++++
src/fabric/src/fabric2_sup.erl | 8 +
src/fabric/src/fabric2_util.erl | 49 +++-
src/fabric/test/fabric2_changes_fold_tests.erl | 103 +++----
src/fabric/test/fabric2_db_crud_tests.erl | 232 ++++++++++++++-
src/fabric/test/fabric2_doc_fold_tests.erl | 117 ++++++--
src/fabric/test/fabric2_index_tests.erl | 304 +++++++++++++++++++
src/fabric/test/fabric2_test_util.erl | 76 +++++
test/elixir/test/map_test.exs | 51 ++++
28 files changed, 1619 insertions(+), 482 deletions(-)
create mode 100644 src/fabric/src/fabric2_encryption_plugin.erl
create mode 100644 src/fabric/src/fabric2_encryption_provider.erl
create mode 100644 src/fabric/src/fabric2_index.erl
create mode 100644 src/fabric/test/fabric2_index_tests.erl
create mode 100644 src/fabric/test/fabric2_test_util.erl