[Pkg-javascript-commits] [node-bluebird] branch master updated (ef26beb -> 06f8b85)

Ross Gammon ross-guest at moszumanska.debian.org
Sun Oct 1 15:34:17 UTC 2017


This is an automated email from the git hooks/post-receive script.

ross-guest pushed a change to branch master
in repository node-bluebird.

      from  ef26beb   Bootstrap bluebird build with bluebird node_module
       new  f2561a9   Fix node_module install of pre-built bluebird
       new  bef1cf7   Patch bluebird to find walk
       new  75b7f31   New upstream version 3.5.0+dfsg1
       new  40eafa2   Merge tag 'upstream/3.5.0+dfsg1'
       new  06f8b85   Update changelog to latest upstream version

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .jshintrc                                          |    1 +
 LICENSE                                            |    2 +-
 README.md                                          |    2 +-
 bower.json                                         |    2 +-
 debian/changelog                                   |    2 +-
 LICENSE => debian/node-modules/bluebird/LICENSE    |    0
 .../node-modules/bluebird/README.md                |    0
 .../node-modules/bluebird/changelog.md             |    0
 .../bluebird/js/browser/bluebird.core.js           | 3756 +++++++++++++
 .../bluebird/js/browser/bluebird.core.min.js       |   31 +
 .../node-modules/bluebird/js/browser/bluebird.js   | 5598 ++++++++++++++++++++
 .../bluebird/js/browser/bluebird.min.js            |   31 +
 .../node-modules/bluebird/js/release}/any.js       |    4 -
 .../node-modules/bluebird/js/release}/assert.js    |    2 +-
 .../node-modules/bluebird/js/release}/async.js     |   14 +-
 .../node-modules/bluebird/js/release}/bind.js      |   10 +-
 .../node-modules/bluebird/js/release}/bluebird.js  |    0
 .../node-modules/bluebird/js/release}/call_get.js  |    6 +-
 .../node-modules/bluebird/js/release}/cancel.js    |    7 -
 .../bluebird/js/release}/catch_filter.js           |    0
 .../node-modules/bluebird/js/release}/context.js   |    0
 .../bluebird/js/release}/debuggability.js          |   96 +-
 .../bluebird/js/release}/direct_resolve.js         |    0
 .../node-modules/bluebird/js/release}/each.js      |    0
 .../node-modules/bluebird/js/release}/errors.js    |    9 +-
 .../node-modules/bluebird/js/release}/es5.js       |    0
 .../node-modules/bluebird/js/release}/filter.js    |    0
 .../node-modules/bluebird/js/release}/finally.js   |    8 +-
 .../bluebird/js/release}/generators.js             |   25 +-
 .../node-modules/bluebird/js/release}/join.js      |   18 +-
 .../node-modules/bluebird/js/release}/map.js       |   29 +-
 .../node-modules/bluebird/js/release}/method.js    |    6 +-
 .../node-modules/bluebird/js/release}/nodeback.js  |    2 +-
 .../node-modules/bluebird/js/release}/nodeify.js   |    4 -
 .../node-modules/bluebird/js/release}/promise.js   |  216 +-
 .../bluebird/js/release}/promise_array.js          |   43 +-
 .../node-modules/bluebird/js/release}/promisify.js |   34 +-
 .../node-modules/bluebird/js/release}/props.js     |   13 +-
 .../node-modules/bluebird/js/release}/queue.js     |    6 -
 .../node-modules/bluebird/js/release}/race.js      |    5 +-
 .../node-modules/bluebird/js/release}/reduce.js    |   10 +-
 .../node-modules/bluebird/js/release}/schedule.js  |   19 +-
 .../node-modules/bluebird/js/release}/settle.js    |   12 +-
 .../node-modules/bluebird/js/release}/some.js      |   15 +-
 .../bluebird/js/release}/synchronous_inspection.js |   18 +-
 .../node-modules/bluebird/js/release}/thenables.js |    3 -
 .../node-modules/bluebird/js/release}/timers.js    |    2 +-
 .../node-modules/bluebird/js/release}/using.js     |    8 +-
 .../node-modules/bluebird/js/release}/util.js      |   17 +-
 .../node-modules/bluebird/package.json             |   29 +-
 debian/patches/series                              |    1 +
 debian/patches/walk.patch                          |   19 +
 debian/rules                                       |    2 +-
 docs/_config.yml                                   |    2 +-
 docs/_layouts/default.html                         |    2 +-
 docs/docs/api-reference.md                         |    1 +
 docs/docs/api/disposer.md                          |    8 +-
 docs/docs/api/operationalerror.md                  |    4 +-
 docs/docs/api/progression-migration.md             |    2 +-
 docs/docs/api/promise.config.md                    |    2 +-
 docs/docs/api/promise.coroutine.md                 |   12 +-
 docs/docs/api/promise.each.md                      |    5 +-
 docs/docs/api/return.md                            |    4 +-
 docs/docs/api/tap.md                               |    4 +-
 docs/docs/api/tapcatch.md                          |  128 +
 docs/docs/async-dialogs.md                         |    8 +-
 docs/docs/benchmarks.md                            |  116 +-
 docs/docs/changelog.md                             |   24 +
 docs/docs/warning-explanations.md                  |    2 +-
 docs/img/README.txt                                |    1 +
 docs/img/libbblog_v3.png                           |  Bin 0 -> 12834 bytes
 package.json                                       |    3 +-
 src/async.js                                       |    6 -
 src/constants.js                                   |    1 +
 src/debuggability.js                               |    5 +-
 src/finally.js                                     |   39 +-
 src/generators.js                                  |    2 +-
 src/promise.js                                     |   22 +-
 src/promise_array.js                               |    1 +
 src/props.js                                       |    2 +-
 src/queue.js                                       |   17 -
 src/schedule.js                                    |    8 +-
 src/util.js                                        |    8 +-
 test/mocha/cancel.js                               |   18 +-
 test/mocha/generator.js                            |   40 +-
 test/mocha/props.js                                |    7 +
 test/mocha/tapCatch.js                             |  130 +
 test/mocha/using.js                                |    5 -
 tools/build.js                                     |    4 +-
 tools/job-runner/job-runner.js                     |    2 +-
 tools/mocha_runner.js                              |    4 +-
 tools/utils.js                                     |    2 -
 92 files changed, 10198 insertions(+), 590 deletions(-)
 copy LICENSE => debian/node-modules/bluebird/LICENSE (100%)
 copy README.md => debian/node-modules/bluebird/README.md (100%)
 copy changelog.md => debian/node-modules/bluebird/changelog.md (100%)
 create mode 100644 debian/node-modules/bluebird/js/browser/bluebird.core.js
 create mode 100644 debian/node-modules/bluebird/js/browser/bluebird.core.min.js
 create mode 100644 debian/node-modules/bluebird/js/browser/bluebird.js
 create mode 100644 debian/node-modules/bluebird/js/browser/bluebird.min.js
 copy {src => debian/node-modules/bluebird/js/release}/any.js (78%)
 copy {src => debian/node-modules/bluebird/js/release}/assert.js (90%)
 copy {src => debian/node-modules/bluebird/js/release}/async.js (90%)
 copy {src => debian/node-modules/bluebird/js/release}/bind.js (86%)
 copy {src => debian/node-modules/bluebird/js/release}/bluebird.js (100%)
 copy {src => debian/node-modules/bluebird/js/release}/call_get.js (95%)
 copy {src => debian/node-modules/bluebird/js/release}/cancel.js (90%)
 copy {src => debian/node-modules/bluebird/js/release}/catch_filter.js (100%)
 copy {src => debian/node-modules/bluebird/js/release}/context.js (100%)
 copy {src => debian/node-modules/bluebird/js/release}/debuggability.js (90%)
 copy {src => debian/node-modules/bluebird/js/release}/direct_resolve.js (100%)
 copy {src => debian/node-modules/bluebird/js/release}/each.js (100%)
 copy {src => debian/node-modules/bluebird/js/release}/errors.js (93%)
 copy {src => debian/node-modules/bluebird/js/release}/es5.js (100%)
 copy {src => debian/node-modules/bluebird/js/release}/filter.js (100%)
 copy {src => debian/node-modules/bluebird/js/release}/finally.js (93%)
 copy {src => debian/node-modules/bluebird/js/release}/generators.js (88%)
 copy {src => debian/node-modules/bluebird/js/release}/join.js (94%)
 copy {src => debian/node-modules/bluebird/js/release}/map.js (82%)
 copy {src => debian/node-modules/bluebird/js/release}/method.js (88%)
 copy {src => debian/node-modules/bluebird/js/release}/nodeback.js (89%)
 copy {src => debian/node-modules/bluebird/js/release}/nodeify.js (91%)
 copy {src => debian/node-modules/bluebird/js/release}/promise.js (77%)
 copy {src => debian/node-modules/bluebird/js/release}/promise_array.js (77%)
 copy {src => debian/node-modules/bluebird/js/release}/promisify.js (90%)
 copy {src => debian/node-modules/bluebird/js/release}/props.js (90%)
 copy {src => debian/node-modules/bluebird/js/release}/queue.js (90%)
 copy {src => debian/node-modules/bluebird/js/release}/race.js (84%)
 copy {src => debian/node-modules/bluebird/js/release}/reduce.js (96%)
 copy {src => debian/node-modules/bluebird/js/release}/schedule.js (63%)
 copy {src => debian/node-modules/bluebird/js/release}/settle.js (79%)
 copy {src => debian/node-modules/bluebird/js/release}/some.js (89%)
 copy {src => debian/node-modules/bluebird/js/release}/synchronous_inspection.js (78%)
 copy {src => debian/node-modules/bluebird/js/release}/thenables.js (94%)
 copy {src => debian/node-modules/bluebird/js/release}/timers.js (97%)
 copy {src => debian/node-modules/bluebird/js/release}/using.js (96%)
 copy {src => debian/node-modules/bluebird/js/release}/util.js (93%)
 copy package.json => debian/node-modules/bluebird/package.json (72%)
 create mode 100644 debian/patches/walk.patch
 create mode 100644 docs/docs/api/tapcatch.md
 create mode 100644 docs/img/README.txt
 create mode 100644 docs/img/libbblog_v3.png
 create mode 100644 test/mocha/tapCatch.js

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-bluebird.git



More information about the Pkg-javascript-commits mailing list