This is an automated email from the ASF dual-hosted git repository.
jaydoane pushed a change to branch ddoc-cache-lru-remove-key-crash
in repository https://gitbox.apache.org/repos/asf/couchdb.git.
omit 7e943e3 Handle `not_found` lookups removing ddoc cache key
add 7954aca Expose `decode/4` to skip decoding steps
add c0d1a74 Use Debian Stable, add Erlang 24 to CI (#3895)
add b7a3a4f Drop support for Ubuntu 16.04
add fedf37d Non-zero instance_start_time
add 3abcc42 Merge pull request #3901 from
apache/nonzero_instance_start_time
add 63a9d45 Enable exunit in check target
add ab700ba Do not start test name with "test "
add 55d8278 Fix doc order in fabric_doc_update tests
add 9b7fb37 fixup get _dbs_info corner case
add 77f34a1 Refactor Jenkins to dynamically generate stages
add 016385f Properly test for SM60 on ARM builds
add 9cebe1e Update mix.lock
add a0fb595 Display 3.x build status in README
add bd6ec27 Bump docs to 3.2.1-1
add 00ec897 Clear junk test dbs before running chttpd_dbs_info_tests
add b8ad56b Execute fabric_rpc_tests in clean database_dir
add 50080a9 Merge pull request #3921 from
cloudant/fix-flaky-test-in-fabric_rpc
add 0b4fd93 Execute chttpd_dbs_info_tests in clean database_dir
add 073a2db Merge pull request #3923 from jiahuili430/81-fixup-dbs-info
add 6594045 Fix publication of nightly packages (#3925)
add 46c1a87 Fix new_edits:false and VDU function_clause (#3909)
add ea15c86 Add couch_mrview_debug:view_signature/2
add d97b5ce Merge pull request #3929 from cloudant/add-couch_mrview_debug
add 1e83aa3 Include index sig in _search_info response
add 732c3fd Merge pull request #3927 from apache/index_sig
add f3d4c9f Add get_collator_version/0 libicu NIF function
add 81fe821 Return the opaque collator version from _node/*/_versions
add 24d6582 Track libicu collator versions in the view header
add c6da1c6 View collation upgrade tests
add 9f39559 Fix flaky collator auto-upgrade test
add dfab067 Fix replicated_changes typo for purge doc updates
add d5a964a Fix couch_debug:print_linked_processes/1 to work with sharded
couch_index_server
add 3412a96 Add couch_index_debug.erl and restart functions
add e4b8a46 Merge pull request #3933 from
cloudant/debug-for-sharded-index-server
add 96f9ab8 Fix function clause in couch_replicator_scheduler_job
add b9a3223 feat: make the timeout for receiving requests from attachment
writers configurable
add c63d32b feat(couchjs): add support for SpiderMonkey 91esr
add 97a48e0 3.x: Add rebar3 and erlfmt install commands to configure.ps1
#3873
add 79577d8 Win32-SM91 support and fixes
add 5ed8d54 Add smoosh queue persistence
add c9a95b0 Merge pull request #3766 from
noahshaw11/add-smoosh-queue-persistence
add 91de482 Opimtize key tree stemming by using maps instead of sets
add 2f56adb Remove include couch_db_int
add 5ebc506 Add test to ensure rev tree stemming doesn't take too much
memory
add 6462712 Fix smoosh enqueueing not found dbs and typo
add d0bff0b Merge pull request #3970 from
noahshaw11/fix-smoosh-enqueueing-not-found-dbs
add 81d0e16 Eliminate unused variable warnings
add 5f47134 Simplify adding rebar.config per application
add d32e8c5 Give smoosh eunit test coverage
add 45845cd Handle `not_found` lookups removing ddoc cache key
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 (7e943e3)
\
N -- N -- N refs/heads/ddoc-cache-lru-remove-key-crash (45845cd)
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:
.gitignore | 3 -
Makefile | 2 +
Makefile.win | 29 +-
README.rst | 4 +-
build-aux/Jenkinsfile.full | 881 +++++++--------------
build-aux/Jenkinsfile.pr | 45 +-
build-aux/{README.Jenkins => README.md} | 70 +-
configure | 5 +-
configure.ps1 | 40 +-
dev/run | 3 +
mix.exs | 2 +-
mix.lock | 4 +-
rebar.config.script | 2 +-
rel/overlay/etc/default.ini | 17 +
rel/plugins/eunit_plugin.erl | 4 +-
setup_eunit.template | 3 +-
src/chttpd/src/chttpd_db.erl | 3 +-
src/chttpd/src/chttpd_misc.erl | 26 +-
src/chttpd/src/chttpd_node.erl | 13 +-
src/chttpd/test/eunit/chttpd_dbs_info_test.erl | 527 +++++-------
.../priv/couch_ejson_compare/couch_ejson_compare.c | 19 +-
src/couch/priv/couch_js/86/main.cpp | 51 +-
src/couch/priv/couch_js/86/util.cpp | 2 +-
src/couch/rebar.config.script | 19 +-
src/couch/src/couch_bt_engine.erl | 10 +
src/couch/src/couch_db.erl | 8 +
src/couch/src/couch_db_engine.erl | 4 +
src/couch/src/couch_debug.erl | 207 ++++-
src/couch/src/couch_ejson_compare.erl | 6 +-
src/couch/src/couch_httpd_multipart.erl | 7 +-
src/couch/src/couch_key_tree.erl | 10 +-
src/couch/src/couch_server.erl | 14 +
src/couch/src/couch_util.erl | 9 +
src/couch/src/test_util.erl | 38 +
src/couch/test/eunit/couch_ejson_compare_tests.erl | 9 +
src/couch/test/eunit/couch_key_tree_tests.erl | 48 +-
src/couch/test/eunit/couchdb_views_tests.erl | 403 +++++++++-
...couch => 15a5cb17365a99cd9ddc7327c82bbd0d.view} | Bin 12479 -> 12388 bytes
.../fixtures/1f2c24bc334d701c2048f85e7438eef1.view | Bin 0 -> 4230 bytes
.../eunit/fixtures/{test.couch => colltest1.couch} | Bin 28878 -> 24768 bytes
.../eunit/fixtures/{test.couch => db321.couch} | Bin 28878 -> 28864 bytes
src/couch_index/src/couch_index_debug.erl | 171 ++++
src/couch_index/src/couch_index_server.erl | 6 +-
src/couch_mrview/include/couch_mrview.hrl | 4 +-
src/couch_mrview/src/couch_mrview_debug.erl | 50 ++
src/couch_mrview/src/couch_mrview_index.erl | 51 +-
src/couch_mrview/src/couch_mrview_util.erl | 112 ++-
.../src/couch_replicator_scheduler_job.erl | 17 +-
src/ddoc_cache/src/ddoc_cache_lru.erl | 6 +
src/ddoc_cache/test/eunit/ddoc_cache_tutil.erl | 3 +-
src/dreyfus/src/dreyfus_fabric_info.erl | 2 +
src/dreyfus/src/dreyfus_rpc.erl | 9 +-
src/fabric/src/fabric_db_info.erl | 5 +-
src/fabric/src/fabric_doc_update.erl | 256 +++++-
src/fabric/src/fabric_group_info.erl | 5 +
src/fabric/test/eunit/fabric_db_create_tests.erl | 6 +-
src/fabric/test/eunit/fabric_rpc_tests.erl | 12 +-
src/jwtf/src/jwtf.erl | 16 +-
src/mem3/src/mem3.erl | 15 +
src/mem3/src/mem3_rep.erl | 2 +-
src/smoosh/operator_guide.md | 20 +
src/{rexi => smoosh}/rebar.config | 0
src/smoosh/src/smoosh.app.src | 33 +-
src/smoosh/src/smoosh_channel.erl | 266 ++++++-
src/smoosh/src/smoosh_priority_queue.erl | 122 ++-
src/smoosh/src/smoosh_server.erl | 39 +-
src/smoosh/src/smoosh_utils.erl | 31 +-
src/smoosh/test/smoosh_priority_queue_tests.erl | 167 ++++
src/smoosh/test/smoosh_tests.erl | 129 +++
test/elixir/test/attachments_test.exs | 2 +-
test/elixir/test/design_docs_test.exs | 17 +-
71 files changed, 2883 insertions(+), 1238 deletions(-)
rename build-aux/{README.Jenkins => README.md} (70%)
copy src/couch/test/eunit/fixtures/{db_non_partitioned.couch =>
15a5cb17365a99cd9ddc7327c82bbd0d.view} (91%)
create mode 100644
src/couch/test/eunit/fixtures/1f2c24bc334d701c2048f85e7438eef1.view
copy src/couch/test/eunit/fixtures/{test.couch => colltest1.couch} (75%)
copy src/couch/test/eunit/fixtures/{test.couch => db321.couch} (87%)
create mode 100644 src/couch_index/src/couch_index_debug.erl
create mode 100644 src/couch_mrview/src/couch_mrview_debug.erl
copy src/{rexi => smoosh}/rebar.config (100%)
create mode 100644 src/smoosh/test/smoosh_priority_queue_tests.erl
create mode 100644 src/smoosh/test/smoosh_tests.erl