react-component / form

React High Order Form Component(web & react-native)
http://react-component.github.io/form/
MIT License
1.81k stars 296 forks source link

Update async requirement from ^1.5.2 to ^2.6.1 #222

Closed dependabot-preview[bot] closed 5 years ago

dependabot-preview[bot] commented 5 years ago

Updates the requirements on async to permit the latest version.

Changelog *Sourced from [async's changelog](https://github.com/caolan/async/blob/master/CHANGELOG.md).* > # v2.6.1 > - Updated lodash to prevent `npm audit` warnings. ([#1532](https://github-redirect.dependabot.com/caolan/async/issues/1532), [#1533](https://github-redirect.dependabot.com/caolan/async/issues/1533)) > - Made `async-es` more optimized for webpack users ([#1517](https://github-redirect.dependabot.com/caolan/async/issues/1517)) > - Fixed a stack overflow with large collections and a synchronous iterator ([#1514](https://github-redirect.dependabot.com/caolan/async/issues/1514)) > - Various small fixes/chores ([#1505](https://github-redirect.dependabot.com/caolan/async/issues/1505), [#1511](https://github-redirect.dependabot.com/caolan/async/issues/1511), [#1527](https://github-redirect.dependabot.com/caolan/async/issues/1527), [#1530](https://github-redirect.dependabot.com/caolan/async/issues/1530)) > > # v2.6.0 > - Added missing aliases for many methods. Previously, you could not (e.g.) `require('async/find')` or use `async.anyLimit`. ([#1483](https://github-redirect.dependabot.com/caolan/async/issues/1483)) > - Improved `queue` performance. ([#1448](https://github-redirect.dependabot.com/caolan/async/issues/1448), [#1454](https://github-redirect.dependabot.com/caolan/async/issues/1454)) > - Add missing sourcemap ([#1452](https://github-redirect.dependabot.com/caolan/async/issues/1452), [#1453](https://github-redirect.dependabot.com/caolan/async/issues/1453)) > - Various doc updates ([#1448](https://github-redirect.dependabot.com/caolan/async/issues/1448), [#1471](https://github-redirect.dependabot.com/caolan/async/issues/1471), [#1483](https://github-redirect.dependabot.com/caolan/async/issues/1483)) > > # v2.5.0 > - Added `concatLimit`, the `Limit` equivalent of [`concat`](https://caolan.github.io/async/docs.html#concat) ([#1426](https://github-redirect.dependabot.com/caolan/async/issues/1426), [#1430](https://github-redirect.dependabot.com/caolan/async/pull/1430)) > - `concat` improvements: it now preserves order, handles falsy values and the `iteratee` callback takes a variable number of arguments ([#1437](https://github-redirect.dependabot.com/caolan/async/issues/1437), [#1436](https://github-redirect.dependabot.com/caolan/async/pull/1436)) > - Fixed an issue in `queue` where there was a size discrepancy between `workersList().length` and `running()` ([#1428](https://github-redirect.dependabot.com/caolan/async/issues/1428), [#1429](https://github-redirect.dependabot.com/caolan/async/pull/1429)) > - Various doc fixes ([#1422](https://github-redirect.dependabot.com/caolan/async/issues/1422), [#1424](https://github-redirect.dependabot.com/caolan/async/pull/1424)) > > # v2.4.1 > - Fixed a bug preventing functions wrapped with `timeout()` from being re-used. ([#1418](https://github-redirect.dependabot.com/caolan/async/issues/1418), [#1419](https://github-redirect.dependabot.com/caolan/async/issues/1419)) > > # v2.4.0 > - Added `tryEach`, for running async functions in parallel, where you only expect one to succeed. ([#1365](https://github-redirect.dependabot.com/caolan/async/issues/1365), [#687](https://github-redirect.dependabot.com/caolan/async/issues/687)) > - Improved performance, most notably in `parallel` and `waterfall` ([#1395](https://github-redirect.dependabot.com/caolan/async/issues/1395)) > - Added `queue.remove()`, for removing items in a `queue` ([#1397](https://github-redirect.dependabot.com/caolan/async/issues/1397), [#1391](https://github-redirect.dependabot.com/caolan/async/issues/1391)) > - Fixed using `eval`, preventing Async from running in pages with Content Security Policy ([#1404](https://github-redirect.dependabot.com/caolan/async/issues/1404), [#1403](https://github-redirect.dependabot.com/caolan/async/issues/1403)) > - Fixed errors thrown in an `asyncify`ed function's callback being caught by the underlying Promise ([#1408](https://github-redirect.dependabot.com/caolan/async/issues/1408)) > - Fixed timing of `queue.empty()` ([#1367](https://github-redirect.dependabot.com/caolan/async/issues/1367)) > - Various doc fixes ([#1314](https://github-redirect.dependabot.com/caolan/async/issues/1314), [#1394](https://github-redirect.dependabot.com/caolan/async/issues/1394), [#1412](https://github-redirect.dependabot.com/caolan/async/issues/1412)) > > # v2.3.0 > - Added support for ES2017 `async` functions. Wherever you can pass a Node-style/CPS function that uses a callback, you can also pass an `async` function. Previously, you had to wrap `async` functions with `asyncify`. The caveat is that it will only work if `async` functions are supported natively in your environment, transpiled implementations can't be detected. ([#1386](https://github-redirect.dependabot.com/caolan/async/issues/1386), [#1390](https://github-redirect.dependabot.com/caolan/async/issues/1390)) > - Small doc fix ([#1392](https://github-redirect.dependabot.com/caolan/async/issues/1392)) > > # v2.2.0 > - Added `groupBy`, and the `Series`/`Limit` equivalents, analogous to [`_.groupBy`](http://lodash.com/docs#groupBy) ([#1364](https://github-redirect.dependabot.com/caolan/async/issues/1364)) > - Fixed `transform` bug when `callback` was not passed ([#1381](https://github-redirect.dependabot.com/caolan/async/issues/1381)) > - Added note about `reflect` to `parallel` docs ([#1385](https://github-redirect.dependabot.com/caolan/async/issues/1385)) > > # v2.1.5 > - Fix `auto` bug when function names collided with Array.prototype ([#1358](https://github-redirect.dependabot.com/caolan/async/issues/1358)) > - Improve some error messages ([#1349](https://github-redirect.dependabot.com/caolan/async/issues/1349)) > - Avoid stack overflow case in queue > - Fixed an issue in `some`, `every` and `find` where processing would continue after the result was determined. > - Cleanup implementations of `some`, `every` and `find` > > # v2.1.3 > - Make bundle size smaller > - Create optimized hotpath for `filter` in array case. > > ... (truncated)
Commits - See full diff in [compare view](https://github.com/caolan/async/commits/v2.6.1)


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.
dependabot-preview[bot] commented 5 years ago

Superseded by #252.