You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2019/12/22 04:06:36 UTC

[couchdb] branch replicator-info-error-as-object updated (9296d6f -> 0615461)

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

vatamane pushed a change to branch replicator-info-error-as-object
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard 9296d6f  Switch replicator "info" error message to be an object
     add 2336964  Add SpiderMonkey version option to configure
     add c38f2c6  Enable multi-version SpiderMonkey support
     add 15a3c17  Import SpiderMonkey 60 based CouchJS sources
     add 227f1d6  Allow configuring the use of SpiderMonkey 60
     add ec416c3  Add Javascript to support Spidermonkey 60
     add 5c8e882  Merge pull request #2345 from apache/sm60-davisp
     add 0615461  Switch replicator "info" error message to be an object

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   (9296d6f)
            \
             N -- N -- N   refs/heads/replicator-info-error-as-object (0615461)

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                                         |    7 +-
 LICENSE                                            |   55 +
 NOTICE                                             |    8 +
 configure                                          |   23 +
 configure.ps1                                      |    8 +-
 share/server/60/escodegen.js                       |    1 +
 share/server/60/esprima.js                         | 6711 ++++++++++++++++++++
 share/server/60/rewrite_fun.js                     |   56 +
 share/server/dreyfus.js                            |    4 +-
 .../couch_js/utf8.h => share/server/rewrite_fun.js |   15 +-
 share/server/util.js                               |    5 +-
 share/server/views.js                              |    4 +-
 src/couch/priv/couch_js/{ => 1.8.5}/help.h         |    0
 src/couch/priv/couch_js/{ => 1.8.5}/http.c         |    0
 src/couch/priv/couch_js/{ => 1.8.5}/http.h         |    0
 src/couch/priv/couch_js/{ => 1.8.5}/main.c         |    0
 src/couch/priv/couch_js/{ => 1.8.5}/utf8.c         |    0
 src/couch/priv/couch_js/{ => 1.8.5}/utf8.h         |    0
 src/couch/priv/couch_js/{ => 1.8.5}/util.c         |    0
 src/couch/priv/couch_js/{ => 1.8.5}/util.h         |    0
 src/couch/priv/couch_js/{ => 60}/help.h            |    0
 src/couch/priv/couch_js/{http.c => 60/http.cpp}    |  312 +-
 src/couch/priv/couch_js/{ => 60}/http.h            |   12 +-
 src/couch/priv/couch_js/60/main.cpp                |  494 ++
 src/couch/priv/couch_js/{utf8.c => 60/utf8.cpp}    |   94 +-
 src/couch/priv/couch_js/{ => 60}/utf8.h            |    2 +-
 src/couch/priv/couch_js/{util.c => 60/util.cpp}    |  143 +-
 src/couch/priv/couch_js/{ => 60}/util.h            |   12 +-
 src/couch/rebar.config.script                      |   85 +-
 support/build_js.escript                           |   79 +-
 test/javascript/tests/reader_acl.js                |    2 +-
 test/javascript/tests/security_validation.js       |    2 +-
 test/javascript/tests/view_errors.js               |    2 +-
 33 files changed, 7805 insertions(+), 331 deletions(-)
 create mode 100644 share/server/60/escodegen.js
 create mode 100644 share/server/60/esprima.js
 create mode 100644 share/server/60/rewrite_fun.js
 copy src/couch/priv/couch_js/utf8.h => share/server/rewrite_fun.js (73%)
 copy src/couch/priv/couch_js/{ => 1.8.5}/help.h (100%)
 copy src/couch/priv/couch_js/{ => 1.8.5}/http.c (100%)
 copy src/couch/priv/couch_js/{ => 1.8.5}/http.h (100%)
 rename src/couch/priv/couch_js/{ => 1.8.5}/main.c (100%)
 copy src/couch/priv/couch_js/{ => 1.8.5}/utf8.c (100%)
 copy src/couch/priv/couch_js/{ => 1.8.5}/utf8.h (100%)
 copy src/couch/priv/couch_js/{ => 1.8.5}/util.c (100%)
 copy src/couch/priv/couch_js/{ => 1.8.5}/util.h (100%)
 rename src/couch/priv/couch_js/{ => 60}/help.h (100%)
 rename src/couch/priv/couch_js/{http.c => 60/http.cpp} (68%)
 rename src/couch/priv/couch_js/{ => 60}/http.h (63%)
 create mode 100644 src/couch/priv/couch_js/60/main.cpp
 rename src/couch/priv/couch_js/{utf8.c => 60/utf8.cpp} (74%)
 rename src/couch/priv/couch_js/{ => 60}/utf8.h (91%)
 rename src/couch/priv/couch_js/{util.c => 60/util.cpp} (65%)
 rename src/couch/priv/couch_js/{ => 60}/util.h (69%)