You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2017/09/19 16:57:14 UTC

[couchdb] branch run-mango-tests-with-check updated (297333f -> 8d07884)

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

wohali pushed a change to branch run-mango-tests-with-check
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


    from 297333f  Merge branch 'master' into run-mango-tests-with-check
     add ff6e576  Allow library object in other design doc sections besides views
     add 1091b5a  Implement attachment size limits
     add aa14e5d  Query operator tests for multiple index types (#800)
     add 04e4cfa  Avoid duplicate index selection in Mango
     add bc43efb  Use unittest assert in index selection tests
     add 41e2984  Use unittest assertions in mango index tests
     add 302126b  Return 400 when no index can fulfil a sort
     add cf00dc2  Log unhandled mango errors
     add ef8a934  Do not crash when free space cannot be calculated (#803)
     add d9e2940  Provide a more accurate size check for max_document_size limit
     add c622e17  Don't reset logs when JS tests restart the server
     add ed6ec66  Add selector support for json indexes (#808)
     add 369b442  Catch invalid base64 in inline attachments
     add 190ee30  Merge pull request #817 from cloudant/issue-784-fix-invalid-base64-att-crash
     add c531a13  Fix replication ID parsing in URL paths
     new 8d07884  Merge branch 'master' into run-mango-tests-with-check

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:
 dev/run                                            |   8 +-
 rel/overlay/etc/default.ini                        |  15 +-
 src/chttpd/src/chttpd.erl                          |   2 +
 .../test/chttpd_db_attachment_size_tests.erl       | 206 +++++++++++++++++++++
 src/chttpd/test/chttpd_db_doc_size_tests.erl       |   2 +-
 src/couch/src/couch_att.erl                        |  90 +++++++--
 src/couch/src/couch_compaction_daemon.erl          |  44 +++--
 src/couch/src/couch_doc.erl                        |  26 ++-
 src/couch/src/couch_ejson_size.erl                 |  99 ++++++++++
 src/couch/src/couch_httpd.erl                      |   4 +
 src/couch/test/couch_doc_tests.erl                 |   1 +
 src/couch/test/couch_ejson_size_tests.erl          |  72 +++++++
 src/couch/test/couchdb_attachments_tests.erl       | 132 +++++++++++++
 src/couch_mrview/src/couch_mrview.erl              |   8 +-
 .../test/couch_mrview_ddoc_validation_tests.erl    |  59 ++++--
 .../src/couch_replicator_api_wrap.erl              |   4 +-
 src/couch_replicator/src/couch_replicator_ids.erl  |  16 +-
 ... => couch_replicator_attachments_too_large.erl} |  36 ++--
 src/fabric/src/fabric_doc_attachments.erl          |  28 +--
 src/fabric/src/fabric_doc_update.erl               |   4 +-
 src/mango/src/mango_cursor.erl                     |  31 +++-
 src/mango/src/mango_cursor_text.erl                |   3 +-
 src/mango/src/mango_cursor_view.erl                |   3 +-
 src/mango/src/mango_error.erl                      |   6 +-
 src/mango/src/mango_httpd.erl                      |  30 +--
 src/mango/src/mango_idx.erl                        |  15 +-
 src/mango/src/mango_idx_view.erl                   |   6 +
 src/mango/src/mango_native_proc.erl                |  38 ++--
 src/mango/test/03-operator-test.py                 |  72 ++++++-
 src/mango/test/05-index-selection-test.py          |  38 ++--
 src/mango/test/12-use-correct-index.py             |  19 +-
 src/mango/test/16-index-selectors.py               | 156 ++++++++++++++++
 src/mango/test/mango.py                            |  17 +-
 src/mango/test/user_docs.py                        |  28 ++-
 test/javascript/tests/attachments.js               |  18 ++
 35 files changed, 1175 insertions(+), 161 deletions(-)
 create mode 100644 src/chttpd/test/chttpd_db_attachment_size_tests.erl
 create mode 100644 src/couch/src/couch_ejson_size.erl
 create mode 100644 src/couch/test/couch_ejson_size_tests.erl
 copy src/couch_replicator/test/{couch_replicator_id_too_long_tests.erl => couch_replicator_attachments_too_large.erl} (73%)
 create mode 100644 src/mango/test/16-index-selectors.py

-- 
To stop receiving notification emails like this one, please contact
['"commits@couchdb.apache.org" <co...@couchdb.apache.org>'].

[couchdb] 01/01: Merge branch 'master' into run-mango-tests-with-check

Posted by wo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

wohali pushed a commit to branch run-mango-tests-with-check
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 8d078844d373d8bde752ab6b325b067f267ef001
Merge: 297333f c531a13
Author: Joan Touzet <wo...@users.noreply.github.com>
AuthorDate: Tue Sep 19 12:57:12 2017 -0400

    Merge branch 'master' into run-mango-tests-with-check

 dev/run                                            |   8 +-
 rel/overlay/etc/default.ini                        |  15 +-
 src/chttpd/src/chttpd.erl                          |   2 +
 .../test/chttpd_db_attachment_size_tests.erl       | 206 +++++++++++++++++++++
 src/chttpd/test/chttpd_db_doc_size_tests.erl       |   2 +-
 src/couch/src/couch_att.erl                        |  90 +++++++--
 src/couch/src/couch_compaction_daemon.erl          |  44 +++--
 src/couch/src/couch_doc.erl                        |  26 ++-
 src/couch/src/couch_ejson_size.erl                 |  99 ++++++++++
 src/couch/src/couch_httpd.erl                      |   4 +
 src/couch/test/couch_doc_tests.erl                 |   1 +
 src/couch/test/couch_ejson_size_tests.erl          |  72 +++++++
 src/couch/test/couchdb_attachments_tests.erl       | 132 +++++++++++++
 src/couch_mrview/src/couch_mrview.erl              |   8 +-
 .../test/couch_mrview_ddoc_validation_tests.erl    |  59 ++++--
 .../src/couch_replicator_api_wrap.erl              |   4 +-
 src/couch_replicator/src/couch_replicator_ids.erl  |  16 +-
 .../couch_replicator_attachments_too_large.erl     | 104 +++++++++++
 src/fabric/src/fabric_doc_attachments.erl          |  28 +--
 src/fabric/src/fabric_doc_update.erl               |   4 +-
 src/mango/src/mango_cursor.erl                     |  31 +++-
 src/mango/src/mango_cursor_text.erl                |   3 +-
 src/mango/src/mango_cursor_view.erl                |   3 +-
 src/mango/src/mango_error.erl                      |   6 +-
 src/mango/src/mango_httpd.erl                      |  30 +--
 src/mango/src/mango_idx.erl                        |  15 +-
 src/mango/src/mango_idx_view.erl                   |   6 +
 src/mango/src/mango_native_proc.erl                |  38 ++--
 src/mango/test/03-operator-test.py                 |  72 ++++++-
 src/mango/test/05-index-selection-test.py          |  38 ++--
 src/mango/test/12-use-correct-index.py             |  19 +-
 src/mango/test/16-index-selectors.py               | 156 ++++++++++++++++
 src/mango/test/mango.py                            |  17 +-
 src/mango/test/user_docs.py                        |  28 ++-
 test/javascript/tests/attachments.js               |  18 ++
 35 files changed, 1256 insertions(+), 148 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
"commits@couchdb.apache.org" <co...@couchdb.apache.org>.