[Pkg-javascript-commits] [node-async] annotated tag upstream/0.8.0 created (now 1a524d7)
Jonas Smedegaard
js at moszumanska.debian.org
Fri May 2 08:59:13 UTC 2014
This is an automated email from the git hooks/post-receive script.
js pushed a change to annotated tag upstream/0.8.0
in repository node-async.
at 1a524d7 (tag)
tagging b704f5a14260ea28f18a456b0e2ad14f3c26c47e (commit)
replaces upstream/0.1.22
tagged by Jonas Smedegaard
on Fri May 2 10:30:19 2014 +0200
- Log -----------------------------------------------------------------
Upstream version 0.8.0
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iQF8BAABCgBmBQJTY1ebXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3NjQ4ODQwMTIyRTJDNTBFQzUxRDQwRTI0
RUMxQjcyMjM3NEY5QkQ2AAoJEE7BtyI3T5vWxQ4IAKrAINzY0z6Kd30uKsRM7EzR
3xE+XAWqJ92Ar7vV++tstqVXlfMerM7fj/E9mnMjxuKIXBhkbntkfOgOjIf3lLoN
kZ0tl6V58ADYDEOLjv63PHKRlmWMtJsCH2xg2LPsejygnJIKPw43/b4u3BoLSEd2
q3AnNiv54PuQt23LGTGaCLE2UdXtPoqToSdvR6SnNlT4bN5dCveKzkCMi5Pv8k+l
HupG2hVXb8A8noi5nqSgRmVMG39sQcAsVMnjYu+f6rQpnc+ccrXogtqydsIGJAqt
hReFTfIkV/2DOvFfpqZ3K93RRsLMT/ebM4dUAJoDfWgEWIhrBfzsSECaPfSR9Ss=
=gtQc
-----END PGP SIGNATURE-----
Aleksander Adamowski (1):
Issue 122: specify arguments to callbacks in the documentation
Aleksey V Zapparov (1):
Resolves #88
Alex Gorbatchev (1):
`waterfall` now passes all arguments to callback even if there was an error.
Alex Shvets (1):
make done callback function (instead of function-expression): dont create it new on each iteration
Alexander Early (1):
pass params from doUntil/doWhile callbacks to the test function
Allan Carroll (6):
In Auto function, save results from functions and pass them forward to dependents.
Fix bug in auto. Results wern't being passed to functions that were immediately ready to run.
Merge branch 'master' of https://github.com/caolan/async
Avoid double calling tasks in auto when one or more tasks are synchronous.
Add minified version for auto double invoke fix.
Add test for auto double invoke fix.
Andrew Kelley (2):
fix running in --use-strict mode. closes #189
ability to use async as a component
Balint Erdi (3):
Add unmemoize function
Add unmemoize documentation to README
Unmemoize can be called with a not memoized function, too.
Bei Jia (2):
Update README.md
Update README.md
Brian Maissy (10):
corrected the documentation of forEachLimit and mapLimit: the items are not processed in batches. Addresses issue #203
clarified the format of callback functions in the README
added a cautionary note to the documentation of async.auto
updated Download section of README. Removed link to empty downloads section and nonexistent minified file, and updated uncompressed filesize
calling waterfall with a non-array first argument results in an error
added an example of binding an iterator
fixed a typo
fixed a couple typos for grammar sticklers
clarified cargo documentation
fixed a typo
Bruno Bigras (1):
Fixed a typo in the queue sample
Calvin French-Owen (3):
Adding mapLimit
Renaming forEachLimit to _forEachLimit, adding mapLimit tests
Adding built file
Caolan McMahon (257):
added nodeunit and test script
added existing code and tests
added index.js for convenience
fix sync calling of callbacks in waterfall
don't pass callback to last function in waterfall chain
call next function in waterfall asynchronously
added test for running waterfall callbacks async, and using callbacks multiple times
added parallel and series methods
updated nodeunit
added iterator method
updated auto api, removed requires function
make callbacks optional
added error handling to parallel, series and auto functions
added forEach, map, reduce, filter, some, and every functions
refactoring and unit test improvements
added README.md
added docs to README.md for forEach and forEachSeries
renamed reduceSeries to reduce
updated README.md
minor tweaks to README.md
updated README.md
added closing square brackets to auto example in README
ensure map and filter results stay in the same order when processing in parallel
Merge branch 'master' of git at github.com:caolan/async
better support empty objects and arrays as arguments
Added detect, reject, reduceRight and sortBy functions and added a few common aliases
Updated README to include detect, reject, reduceRight and sortBy functions, as well as alias information
added license and package.json
added npm install command to README
added apply function
added browser support
updated README
added log and dir functions
exposed browser-compatible nextTick function
added noConflict
added noConflict to README
Release 0.1.3
return value from functions in async.apply
release v0.1.4
added the concat function
added concatSeries
bump version
add whilst and until
update README to include anchors for each function
remove short descriptions from function list in README
add horizontal rules between function descriptions in README
move whilst and until into flow control section of README
allow parallel and series functions to accept and object instead of an array
bump version
added async.queue
update async.queue information in README
fix lint errors
added makefile with lint, test and build targets
add links to async.js and async.min.js in README
add line break between development and production links in README
allow queue.push without a callback
show queue.push callback as optional in README
added browser tests
updated test suite to work in the browser
updated nodeunit
load working copy of async module after nodeunit in browser tests
added memoize
added memoize to README
updated minified version
add commas to waterfall example in REAMDE - thanks dbro
skip nextTick in the browser unit test in node
updated nodeunit deps
remove extra function call from async.nextTick in node
updated minified version
bump version
added test for issue 10, make sure series and parallel return original falsy values instead of null
Merge branch 'master' of git at github.com:caolan/async
bump version
updated unit tests for node 0.3.8
fix bug in order of queue events and improve tests - thanks Kami
fix browser unit tests by removing some node-specific code
fix parallel implementation of detect when multiple matches occur, closes #28
update minfied version
replace 'flow control' with 'control flow' in README to shut marak up
Merge pull request #32 from reustle/master
replace stupid tasks splice call with shift
Merge pull request #50 from brunoqc/master
Merge pull request #39 from indexzero/master
bump version
Merge branch 'unmemoize' of https://github.com/balinterdi/async into balinterdi-unmemoize
update minified build
bump version
Merge branch 'master' of https://github.com/braddunbar/async into braddunbar-master
update minified version
bump version
Merge pull request #63 from jesusabdullah/master
change bugs['web'] to bugs['url'] in package.json
Merge https://github.com/allanca/async into allanca
bump version
expose tasks array for queues
bump version
Merge pull request #65 from alFReD-NSH/patch-1
Merge pull request #91 from zaphod1984/scriptFix
Merge branch 'issue-88' of https://github.com/ixti/async
Merge pull request #80 from Sheile/2fc3ab83d79cd660d39355a4ad51897d6f8c3b70
Merge https://github.com/pistolero/async into pistolero
Merge pull request #86 from pierrec/master
Merge pull request #79 from clutchski/patch-1
Merge pull request #77 from insin/auto-docs
update tests for IE6 compatibility
update minifed build
bump version
Merge pull request #93 from jstewmon/make_devDependencies
Merge pull request #99 from mmalecki/refactor-tests
Merge pull request #102 from sergi/master
Merge pull request #103 from jstewmon/master
Merge pull request #100 from mmalecki/foreach-no-callback
bump version
Merge pull request #48 from onirame/master
add .gitignore
use uglify, nodeunit and nodelint directly from node_modules
update minified build
make uglify a dev dependency and remove make targets from npm scripts, #105
bump version
Merge pull request #113 from amco/doc_fix
Merge pull request #126 from pgherveou/patch-1
bump version
Merge pull request #124 from yawnt/master
bump version
fix occasional synchronous use of forEachLimit
update indentation on forEachSeries
bump version
update minified build
bump version
Merge pull request #149 from aadamowski/master
Merge pull request #150 from langpavel/patch-readme-highlighting
add AMD support
Merge branch 'master' of github.com:caolan/async
Merge pull request #221 from ashnur/patch-1
Merge pull request #216 from rhyzx/cargo
Revert "Merge pull request #221 from ashnur/patch-1"
Merge pull request #211 from vojtajina/small-fixes
Merge pull request #205 from danbell/limit
remove minfied version from repository
Merge remote branch 'jkroso/master'
Merge pull request #201 from ccare/patch-1
Merge pull request #200 from coreyjewett/master
Merge pull request #194 from superjoe30/fix-use-strict
Merge pull request #188 from ceedubs/master
Merge pull request #141 from alexgorbatchev/master
Merge pull request #175 from parshap/feature/expose-memo
increase timeouts for testing in IE
Merge pull request #171 from feross/patch-1
Merge remote branch 'dpatti/auto-fix'
force nextTick on auto calls to prevent double task execution when synchronous
Merge branch 'master' of github.com:caolan/async
Merge remote branch 'dougwilson/feature/setImmediate-support'
replace process.nextTick call with async.nextTick and increase timeouts for some tests
automatically call nextTick on some synchronous function calls
skip stack overflow test in the browser - it takes ages when using settimeout fallback
fix stackoverflows in queue when using synchronous tasks - WARNING, this slightly changes order of events when queue processing using sync tasks
Merge remote branch 'timoxley/master'
use a more liberal check for completed number of tasks - closes #121
Merge pull request #224 from gramakri/master
bump version
Merge branch 'master' of github.com:caolan/async
bump minor version
remove module id for requirejs define call
bump version
add jam info to package.json
Merge pull request #164 from raszi/master
bump version
Merge pull request #229 from zaphod1984/queueHotfix
remove test-strict.js
bump version
Merge pull request #227 from brianmaissy/master
added async.compose
bump version
rename forEach functions to each and add aliases for old names
bump version
added scripts.test to package.json - closes #157
Merge pull request #239 from brianmaissy/documentation
added default concurrency for queue, closes #249
Merge pull request #235 from leahciMic/async_auto_error_receives_partial_results
Merge pull request #245 from lookfirst/master
Merge pull request #240 from brianmaissy/documentation
add applyEach function
bump version
Merge branch 'master' of github.com:caolan/async
Merge pull request #261 from RubyTuesdayDONO/patch-1
Merge pull request #258 from brianmaissy/typo
Merge pull request #257 from brianmaissy/bindExample
Merge pull request #251 from brianmaissy/waterfall
Merge pull request #250 from brianmaissy/documentation
Merge pull request #266 from brianmaissy/cargoDocumentation
revert detection of sync tasks and add setImmediate
added forever
Merge branch 'master' of github.com:caolan/async
added applyEachSeries
fix for node 0.8.x
bump version
Merge pull request #269 from tborg/master
bump version
Merge pull request #193 from superjoe30/component
Merge pull request #309 from sqs/patch-1
Merge pull request #320 from jhnns/master
Merge pull request #317 from dougwilson/fix/setImmediate-ie10-alias
bump version
Merge pull request #347 from ChrisWren/master
Merge pull request #394 from lupomontero/master
Merge pull request #408 from RickEyre/readme-fix
Merge pull request #350 from louischatriot/master
bump version
Merge pull request #463 from jontewks/patch-1
Merge pull request #459 from Zearin/docs/readme
Merge pull request #470 from christophercurrie/patch-1
Merge pull request #452 from justincy/master
Merge remote-tracking branch 'kybernetikos/patch-1'
Merge pull request #441 from dandv/patch-1
Merge pull request #433 from tikonen/master
Merge pull request #421 from DECK36/master
Merge remote-tracking branch 'th3james/auto-double-callback-issue'
use domains to stop error bubbling in #420 test
Merge branch 'master' of github.com:caolan/async
Merge pull request #415 from rmg/async-memoize
Merge remote-tracking branch 'ognivo/feature-seq'
Merge pull request #401 from calendee/eachDocumentation
Merge pull request #398 from josher19/patch-1
use internal _isArray function
Merge pull request #391 from kvz/patch-1
Merge pull request #367 from menzoic/patch-1
Merge pull request #353 from quadroid/master
Merge pull request #318 from aearly/feature/dountil-params
Merge pull request #277 from kimptoc/master
Merge pull request #268 from DmitryBochkarev/master
bump minor version
bump minor version
Merge pull request #473 from jessehouchins/auto-task-tracking
Release 0.4.1
Merge pull request #474 from maxkueng/pause-and-resume
release 0.5.0
Merge pull request #475 from jessehouchins/async.retry
release 0.6.0
Merge pull request #477 from dandv/patch-2
Merge pull request #479 from Mithgol/detect-extracontextual-functions
release 0.6.1
Merge pull request #482 from believejs/master
Merge pull request #481 from Mithgol/improve-auto-docs
release 0.6.2
Merge pull request #494 from jmar777/patch-1
Merge pull request #487 from simoami/master
Merge pull request #484 from jessehouchins/retry-docs
Merge pull request #497 from jonmorehouse/master
release 0.7.0
Merge pull request #501 from jiabei/master
Merge pull request #505 from jbcurtin/master
Merge pull request #511 from kevinsawicki/patch-1
Merge pull request #520 from hojs/master
Merge pull request #518 from fmenezes/tests
Merge pull request #514 from Mithgol/patch-1
Merge pull request #522 from hojs/detect-callback
release 0.8.0
Charles Care (1):
Correct minor typo
Chris Kimpton (4):
add async to travis
nudge travis to build
Node 0.6 and 0.8 are not supported for latest async
Point at caolan repo / Travis build - assuming that will be setup
ChrisWren (1):
Fixed syntax error in async auto example
Christopher Currie (1):
Fix for cargo on IE8
Cody Allen (2):
Add missing 'err' parameter to example of async.parallel in README
Delete trailing commas in lists of README examples
Corey Jewett (1):
In #forEach and queue's worker calling the callback more than once causes bad behavior. Throw an Error when this happens.
Craig Andrews (2):
Add idle() function to determine if the queue has any work
Add tests for queue idle() function
Dan Dascalescu (2):
Clarify how cargo differs from queue
Link to the cargo vs. queue animation
Daniel Bell (1):
Added parallelLimit().
David Beck (1):
Clarify that `some` and `every` run iterators in parallel in readme
Dmitry Bochkarev (1):
README: fix mapLimit example
Doug Patti (1):
Altered prevention to avoid repeat auto tasks
Douglas Christopher Wilson (2):
Add async.nextTick browser fallback to setImmediate
Fix async compatibility with Internet Explorer 10
Enrico Marino (1):
fixed waterfall
Esco Obong (1):
Update README.md
Feross Aboukhadijeh (1):
Fix typo in documentation
Filipe Constantinov Menezes (1):
Browser report of tests was stopping at 18th test case
Girish Ramakrishnan (1):
docs: Fix formatting of times example
Hendrich Attila (1):
Added kill method to queue
Ian Young (1):
Update example to reflect current behavior
James Cox (3):
Failing auto double callback on error test
Fix 'auto calls callback multiple times' Issue #410
Improve auto test comment
Jeremy Martin (1):
Fix small typo in README: s/asyc/async
Jesse Houchins (7):
Track auto tasks using a counter to allow records to be inserted/removed from results
implement async.retry using async.series
allow retry to run as an embedded method inside other controll flows
add test case for embedding async.retry in another control flow
fix some poor spelling
docs for retry task argument
specify default
Johannes (1):
replaced all occurences of path.exists with fs.exists in README
Jon Morehouse (1):
Add in started attribute for queue. Helpful for displaying whether or not that queue has processed any jobs
Jon Stevens (1):
Fixed typo in compose example
Jon Tewksbury (1):
Update license year
Jonas Smedegaard (1):
Imported Upstream version 0.8.0
Jonathan Buchanan (1):
Updated docs about async.auto results - it does a bit more than the current docs let on.
Jonathan Stewmon (2):
updated package.json to specify devDependencies. updated Makefile to use cli versions of dev dependencies in node_modules
deployment fix for issue caused by isaacs/npm#2195
Joseph Curtin (1):
updated README.md to reflect the the current "series" anchor
Joshua Holbrook (1):
Docs for `forEachLimit`
Justin Noel (2):
Added additional example for async.each
Changed the order of the asyn.each examples. The simpler version is first. The more detailed version is second.
Justin York (1):
only call cargo.drain once each time it's drained
KARASZI István (2):
reimplementing queue unshift
README updated for unshift
Kevin Sawicki (1):
Fence code block as js
Kevin van Zonneveld (1):
Passing an object to .series() may lead to unexpected behavior
Louis Chatriot (1):
Fix setImmediate incompatibility with IE10 also when process and process.nextTick are defined
Lupo Montero (1):
Changed `async.map` to `async.mapLimit` in mapLimit example
MaZderMind (1):
callback methods w/ test & docs
Maciej Małecki (2):
Refactor and DRY tests a bit
Allow `forEach*` functions to be called with no callback
Matt Perpick (1):
Waterfall docs now show final result passing.
Michael Leaney (4):
Send results to auto callback when an error occurs
Partial results should include the current task
Update README.md with auto always passing a results object
Remove setTimeout
Mike Lohmann (1):
Changed the order of exporting async by module-type first, because if using browserify to build an app it will conflict with existing apps usigin requireJS and it does not matter for the requireJS use case if before testing for existence of module.exports
Mithgol (4):
detect functions coming from other JavaScript contexts
improve `.auto` docs
in `.auto` check “is it an array?” instead of “is it a function?”
use SVG to display Travis CI build testing status
PG Herveou (1):
without this ';' uglify throw errors when trying to build with strict_semicolons option
Parsha Pourkhomami (3):
Expose memoized function's memos
Add documentation for exposed memoized memos (3405799)
Add test for exposed memoized memos (3405799)
Pavel Lang (1):
README.md: Enable GitHub syntax highlighting in example code
Peter (1):
add running() which allows a task-callback to check if the queue has drained.
Pierre Curto (1):
#queue(): allow unspecified callbacks
Quinn Slack (1):
Use https URLs for Github links in package.json
Richard Eyre (1):
Update README to include links to all API functions.
RubyTuesdayDONO (1):
Fix verb agreement
Ryan Graham (6):
Add invalid passing async.memoize() test
Test for correct async callback behaviour
Refactor memoize test to use async function
Refactor unmemoize test to use async example
Refactor memoize custom hash test
async.memoize() preserves async nature of function
Ryan Shaw (1):
Bugfix: sending saturated event should respect current concurrency.
Sergey Kirillov (3):
Fixed bug when listeners were not called in parallel.
Fixed bug with calling callback several times when some functions were executed in parallel.
Merge github.com:pistolero/async
Sergi Mansilla (1):
The function `_indexOf` is never used
Shane Reustle (1):
grammar nazi
Sheile (1):
Add test for auto problem about task sequence
Simo Moujami (1):
Update README.md
Teemu Ikonen (1):
Queue calls drain if empty task list is pushed
Tim Oxley (1):
Add times and timesSeries functions for asynchronously executing a function n times
Trevor Borg (1):
define async.nextTick before polyfilling async.setImmediate with it
U0 (3):
cargo can process multitasks(upto payload) each time
add cargo doc to README
add cargo api
Vojta Jina (1):
Don't ship dot files with the npm package
Zearin (4):
README.md: improved formatting of argument lists
README.md: minor formatting tweaks to introductory text
README.md: minor tweaks to formatting (`true`, `false`, `null`, and aliases)
README.md: numerous minor formatting & phrasing tweaks
alFReD-NSH (1):
Fix extra curly brace in whilst example
ashnur (1):
because globals suck :(
braddunbar (1):
memoize - handle multiple calls before completion
fritx (6):
replace `callback(null)` * 3 to `callback()` for consistency
replace `callback(null)` * 3 to `callback()` for consistency
Merge remote-tracking branch 'origin/master'
fix #472, add internal _toString
fix #515, add missing license header
for #521, detect callback in _asyncMap
indexzero (2):
[api test] Added `async.forEachLimit()` and associated tests
[test] Add more tests for edge cases to forEachLimit
jkroso (2):
added doWhilst and doUntil
added post loop docs
josher19 (1):
Update async.auto example in README.md
kpozin (1):
Changed async.nextTick to be defined once based on whether process.nextTick is available.
kybernetikos (1):
Added a little more description to 'forever'
mk (1):
Add queue.pause() and queue.resume()
sharp.maestro (3):
added seq function: natural to read version of compose
added comment in example.
Merge branch 'master' of github.com:caolan/async into feature-seq
yawn (2):
fix issue #98
moar fixes for #98
zaphod1984 (6):
fixed noConflict test
too small timeout provides unrelieable results
added possibility to push taskbulks, added test
fixed queue bug, added test
added readme example to show inversion of sort order
added test for inverted sort order
-----------------------------------------------------------------------
No new revisions were added by this update.
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-async.git
More information about the Pkg-javascript-commits
mailing list