You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by to...@apache.org on 2017/10/25 18:08:46 UTC

[couchdb] branch flexible-js-tests updated (54ac3ad -> 53d33e5)

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

tonysun83 pushed a change to branch flexible-js-tests
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


    from 54ac3ad  add ability to ignore javascript test suites
     add 703e6c5  Fix cluster upgrades when deploying ddoc_cache
     add c3a18cc  chore: no need to make it look one needs to create an issue on top of a PR
     add 9fe22b4  Merge pull request #882 from apache/janl-patch-1
     add d0445f5  Fix incorrect index selection when sort specified (#866)
     add 7ae6928  Update Unix install dependencies (FreeBSD) (#888)
     add 7f584da  Jenkins: Add Debian 9 (stretch), drop Ubuntu 12.04 (precise) (#891)
     add 641aa56  Fix maximum key value when using JSON indexes (#881)
     add 84edbb7  Add test to show selector works with old design docs (#893)
     add 464a6b1  Mango text index test fixes (#894)
     add 69ebe61  Configurable Mango test parameters (#899)
     add 2a9134c  Mango test README formatting
     add 3ae2e5c  feat: add warning about redirects without a slash
     new 53d33e5  Merge branch 'master' into flexible-js-tests

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:
 .github/PULL_REQUEST_TEMPLATE.md                   |  11 +-
 INSTALL.Unix.md                                    |   5 +
 Jenkinsfile                                        |  83 +++++++++----
 src/couch/src/couch_httpd.erl                      |   6 +-
 src/ddoc_cache/src/ddoc_cache_lru.erl              |   7 +-
 src/mango/src/mango_cursor.erl                     |   2 +-
 src/mango/src/mango_cursor_view.erl                |  23 +++-
 src/mango/src/mango_error.erl                      |   2 +-
 src/mango/src/mango_idx.erl                        |  55 +++++----
 src/mango/src/mango_idx_special.erl                |   4 +-
 src/mango/src/mango_idx_text.erl                   |   4 +-
 src/mango/src/mango_idx_view.erl                   |  18 ++-
 src/mango/src/{mango.hrl => mango_idx_view.hrl}    |   2 +-
 src/mango/src/mango_selector.erl                   |   2 +-
 src/mango/test/01-index-crud-test.py               | 126 ++++++++++++-------
 src/mango/test/02-basic-find-test.py               |  48 +++++++-
 src/mango/test/03-operator-test.py                 |   5 +
 src/mango/test/05-index-selection-test.py          | 137 +++++++++++----------
 src/mango/test/09-text-sort-test.py                |  50 ++++----
 .../test/10-disable-array-length-field-test.py     |  14 +--
 ...esign-docs.py => 11-ignore-design-docs-test.py} |   0
 ...rrect-index.py => 12-use-correct-index-test.py} |  17 ++-
 ...on-pagination.py => 14-json-pagination-test.py} |   0
 ...dex-selectors.py => 16-index-selectors-test.py} |  30 +++++
 src/mango/test/17-multi-type-value-test.py         |  90 ++++++++++++++
 src/mango/test/README.md                           |  23 +++-
 src/mango/test/mango.py                            |  36 ++++--
 27 files changed, 569 insertions(+), 231 deletions(-)
 copy src/mango/src/{mango.hrl => mango_idx_view.hrl} (90%)
 rename src/mango/test/{11-ignore-design-docs.py => 11-ignore-design-docs-test.py} (100%)
 rename src/mango/test/{12-use-correct-index.py => 12-use-correct-index-test.py} (86%)
 rename src/mango/test/{14-json-pagination.py => 14-json-pagination-test.py} (100%)
 rename src/mango/test/{16-index-selectors.py => 16-index-selectors-test.py} (90%)
 create mode 100644 src/mango/test/17-multi-type-value-test.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 flexible-js-tests

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

tonysun83 pushed a commit to branch flexible-js-tests
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 53d33e593d6b64e3ddb9251df5e01efa36f7c8da
Merge: 54ac3ad 3ae2e5c
Author: Tony Sun <to...@gmail.com>
AuthorDate: Wed Oct 25 11:08:45 2017 -0700

    Merge branch 'master' into flexible-js-tests

 .github/PULL_REQUEST_TEMPLATE.md                   |  11 +-
 INSTALL.Unix.md                                    |   5 +
 Jenkinsfile                                        |  83 +++++++++----
 src/couch/src/couch_httpd.erl                      |   6 +-
 src/ddoc_cache/src/ddoc_cache_lru.erl              |   7 +-
 src/mango/src/mango_cursor.erl                     |   2 +-
 src/mango/src/mango_cursor_view.erl                |  23 +++-
 src/mango/src/mango_error.erl                      |   2 +-
 src/mango/src/mango_idx.erl                        |  55 +++++----
 src/mango/src/mango_idx_special.erl                |   4 +-
 src/mango/src/mango_idx_text.erl                   |   4 +-
 src/mango/src/mango_idx_view.erl                   |  18 ++-
 src/mango/src/mango_idx_view.hrl                   |  13 ++
 src/mango/src/mango_selector.erl                   |   2 +-
 src/mango/test/01-index-crud-test.py               | 126 ++++++++++++-------
 src/mango/test/02-basic-find-test.py               |  48 +++++++-
 src/mango/test/03-operator-test.py                 |   5 +
 src/mango/test/05-index-selection-test.py          | 137 +++++++++++----------
 src/mango/test/09-text-sort-test.py                |  50 ++++----
 .../test/10-disable-array-length-field-test.py     |  14 +--
 ...esign-docs.py => 11-ignore-design-docs-test.py} |   0
 ...rrect-index.py => 12-use-correct-index-test.py} |  17 ++-
 ...on-pagination.py => 14-json-pagination-test.py} |   0
 ...dex-selectors.py => 16-index-selectors-test.py} |  30 +++++
 src/mango/test/17-multi-type-value-test.py         |  90 ++++++++++++++
 src/mango/test/README.md                           |  23 +++-
 src/mango/test/mango.py                            |  36 ++++--
 27 files changed, 581 insertions(+), 230 deletions(-)

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