summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* update Makefile to include source map in build dir [fixes #1452]include-source-map-in-buildHubert Argasinski2017-07-201-2/+8
|
* clarify retry vs retryable in docs. closes #1450Alexander Early2017-07-161-2/+2
|
* Improve `async.queue` start up performance (#1448)Hubert Argasinski2017-07-102-1/+11
| | | | | | | | | | * batch queue.push calls * add more queue perf suites * undo dist changes * prevent overwriting q.process from pausing the queue
* Version 2.5.0v2.5.0Alexander Early2017-06-252-1/+5815
|
* Update built filesAlexander Early2017-06-253-22/+48
|
* Update changelog for v2.5.0Hubert Argasinski2017-06-251-0/+6
|
* preserve order, make variadic and handle falsy values in concat [fixes ↵Hubert Argasinski2017-06-2310-102/+486
| | | | | | | | | | | | | | | | #1437] (#1436) * preserve order in concat * remove comment * fix concatLimit linting * handle variadic and falsy results in concatLimit [fixes #1437] * fix tests (typos) * PR fixes
* Add node 8 to travisAlex Early2017-06-101-1/+1
|
* add concatLimit [fixes #1426] (#1430)Hubert Argasinski2017-06-103-0/+62
|
* ensure q.workersList() contains items being processed [fixes #1428] (#1429)Hubert Argasinski2017-06-103-5/+120
| | | | | | | | * ensure q.workersList() contains items being processed [fixes #1428] * remove newline * improve q.workersList() test
* Merge pull request #1424 from quocvu/masterAlex Early2017-05-301-1/+1
|\ | | | | https link in readme.md
| * https link in readme.mdQuoc Vu2017-05-301-1/+1
|/ | | put an https link in readme.md to avoid the browser from producing a SSL warning
* clarify q.kill docs [fixes #1422]Hubert Argasinski2017-05-241-1/+2
|
* add links to v2.4.0 & v2.4.1 changelogHubert Argasinski2017-05-231-8/+8
|
* Update changelog for v2.4.1Alex Early2017-05-231-0/+3
|
* Version 2.4.1v2.4.1Alexander Early2017-05-211-1/+1
|
* Update built filesAlexander Early2017-05-213-24/+23
|
* Merge pull request #1419 from caolan/timeout-fixAlex Early2017-05-212-21/+56
|\ | | | | Allow functions wrapped in `timeout` to be called multiple times (fixes #1418)
| * allow fn wrapped in timeout to be called multiple times (fixes #1418)timeout-fixHubert Argasinski2017-05-202-21/+56
| |
* | may be better to use the length method (#1420)郑俊鑫2017-05-211-1/+1
|/
* Version 2.4.0v2.4.0Alexander Early2017-04-291-1/+1
|
* Update built filesAlexander Early2017-04-293-102/+100
|
* update changelog for 2.4.0Alexander Early2017-04-291-0/+9
|
* Merge pull request #1405 from caolan/build-refactorAlex Early2017-04-2511-346/+307
|\ | | | | Build Refactor
| * enable Make parallelizaionbuild-refactorAlexander Early2017-04-162-2/+2
| |
| * rename compile->compile-module.jsAlexander Early2017-04-162-1/+2
| |
| * move support functions into scripts that call themAlexander Early2017-04-164-50/+38
| |
| * use make to manage compiling individual filesAlexander Early2017-04-165-56/+20
| |
| * remove unused CJS index.js fileAlexander Early2017-04-163-23/+4
| |
| * Merge branch 'build-refactor' of ssh://github.com/caolan/async into ↵Alexander Early2017-04-160-0/+0
| |\ | | | | | | | | | build-refactor
| | * decouple compling modules and bundlingAlexander Early2017-04-095-45/+62
| | |
| | * refactor to not need babel, require node 6+Alexander Early2017-04-097-24/+23
| | |
| * | refactor to use ES module output to make umd bundleAlexander Early2017-04-168-273/+260
| | |
| * | factor compiling a module into a separate functionAlexander Early2017-04-162-24/+48
| | |
| * | decouple compling modules and bundlingAlexander Early2017-04-165-45/+62
| | |
| * | refactor to not need babel, require node 6+Alexander Early2017-04-167-24/+23
| | |
* | | Merge pull request #1408 from davidaurelio/masterAlex Early2017-04-222-3/+52
|\ \ \ | | | | | | | | [asyncify] Make errors in callbacks throw globally
| * | | [asyncify] Make errors in callbacks throw globallyDavid Aurelio2017-04-192-3/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | If asyncify wraps a function returning promises, the callback will be executed as part of the promise’s `.then()` method. This means that any error thrown from that method will be silenced, and lead to a “unhandled promise rejection” warning in modern engines. Usually, we want these errors to be visible, and even crash the process.
* | | | Merge pull request #1412 from Nolanus/masterAlex Early2017-04-221-1/+1
|\ \ \ \ | | | | | | | | | | Fix typo
| * | | | Fix typoSebastian Fuss2017-04-221-1/+1
|/ / / / | | | | | | | | Fix typo in asyncify documentation
* | | | Merge pull request #1409 from vvo/patch-2Graeme Yeates2017-04-191-2/+1
|\ \ \ \ | |/ / / |/| | | docs(intro): remove non relevant pkg managers
| * | | Update intro.mdVincent Voyer2017-04-191-1/+1
| | | |
| * | | docs(intro): remove non relevant pkg managersVincent Voyer2017-04-191-3/+2
|/ / / | | | | | | both jam and component are deprecated reading their GitHub readmes.
* | | Merge pull request #1404 from caolan/avoid-evalGraeme Yeates2017-04-172-15/+14
|\ \ \ | |/ / |/| | Avoid eval in async wrappers; fixes #1403
| * | Avoid eval in async wrappers; fixes #1403Graeme Yeates2017-04-172-15/+14
|/ /
* | make tests less flakey. related to #1322Alexander Early2017-04-162-6/+6
|/
* check in built files for comparisonAlexander Early2017-04-094-28/+116
|
* Merge pull request #1399 from caolan/queue-testsAlex Early2017-04-093-112/+65
|\ | | | | Hopefully fix flakey tests
| * tweak retry tests to be more descriptive when they failqueue-testsAlexander Early2017-04-081-13/+10
| |
| * tweaked queue timeouts, removed redundant testAlexander Early2017-04-081-54/+4
| |