dependabot[bot] opened a new pull request, #2694:
URL: https://github.com/apache/thrift/pull/2694

   Bumps [async](https://github.com/caolan/async) from 2.6.1 to 3.2.3.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/caolan/async/blob/master/CHANGELOG.md";>async's 
changelog</a>.</em></p>
   <blockquote>
   <h1>v3.2.3</h1>
   <ul>
   <li>Fix bugs in comment parsing in <code>autoInject</code>. (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1767";>#1767</a>,
 <a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1780";>#1780</a>)</li>
   </ul>
   <h1>v3.2.2</h1>
   <ul>
   <li>Fix potential prototype pollution exploit</li>
   </ul>
   <h1>v3.2.1</h1>
   <ul>
   <li>Use <code>queueMicrotask</code> if available to the environment (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1761";>#1761</a>)</li>
   <li>Minor perf improvement in <code>priorityQueue</code> (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1727";>#1727</a>)</li>
   <li>More examples in documentation (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1726";>#1726</a>)</li>
   <li>Various doc fixes (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1708";>#1708</a>,
 <a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1712";>#1712</a>,
 <a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1717";>#1717</a>,
 <a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1740";>#1740</a>,
 <a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1739";>#1739</a>,
 <a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1749";>#1749</a>,
 <a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1756";>#1756</a>)</li>
   <li>Improved test coverage (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1754";>#1754</a>)</li>
   </ul>
   <h1>v3.2.0</h1>
   <ul>
   <li>Fix a bug in Safari related to overwriting <code>func.name</code></li>
   <li>Remove built-in browserify configuration (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1653";>#1653</a>)</li>
   <li>Varios doc fixes (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1688";>#1688</a>,
 <a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1703";>#1703</a>,
 <a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1704";>#1704</a>)</li>
   </ul>
   <h1>v3.1.1</h1>
   <ul>
   <li>Allow redefining <code>name</code> property on wrapped functions.</li>
   </ul>
   <h1>v3.1.0</h1>
   <ul>
   <li>Added <code>q.pushAsync</code> and <code>q.unshiftAsync</code>, 
analagous to <code>q.push</code> and <code>q.unshift</code>, except they always 
do not accept a callback, and reject if processing the task errors. (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1659";>#1659</a>)</li>
   <li>Promises returned from <code>q.push</code> and <code>q.unshift</code> 
when a callback is not passed now resolve even if an error ocurred. (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1659";>#1659</a>)</li>
   <li>Fixed a parsing bug in <code>autoInject</code> with complicated function 
bodies (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1663";>#1663</a>)</li>
   <li>Added ES6+ configuration for Browserify bundlers (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1653";>#1653</a>)</li>
   <li>Various doc fixes (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1664";>#1664</a>,
 <a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1658";>#1658</a>,
 <a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1665";>#1665</a>,
 <a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1652";>#1652</a>)</li>
   </ul>
   <h1>v3.0.1</h1>
   <h2>Bug fixes</h2>
   <ul>
   <li>Fixed a regression where arrays passed to <code>queue</code> and 
<code>cargo</code> would be completely flattened. (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1645";>#1645</a>)</li>
   <li>Clarified Async's browser support (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1643";>#1643</a>)</li>
   </ul>
   <h1>v3.0.0</h1>
   <p>The <code>async</code>/<code>await</code> release!</p>
   <p>There are a lot of new features and subtle breaking changes in this major 
version, but the biggest feature is that most Async methods return a Promise if 
you omit the callback, meaning you can <code>await</code> them from within an 
<code>async</code> function.</p>
   <pre lang="js"><code>const results = await async.mapLimit(urls, 5, async url 
=&gt; {
       const resp = await fetch(url)
       return resp.body
   })
   </code></pre>
   <h2>Breaking Changes</h2>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/caolan/async/commit/62943cac64876328780792319a37da7f7b3966dd";><code>62943ca</code></a>
 Version 3.2.3</li>
   <li><a 
href="https://github.com/caolan/async/commit/d2c9d51ebc1a43385449eb1a5192067f9442ac94";><code>d2c9d51</code></a>
 Update built files</li>
   <li><a 
href="https://github.com/caolan/async/commit/de8d4c425f5c1b59c3b1a3ef9bdb325e50fc3816";><code>de8d4c4</code></a>
 Update changelog for v3.2.3</li>
   <li><a 
href="https://github.com/caolan/async/commit/b015d34178801b8c717034f737927165007b07b4";><code>b015d34</code></a>
 fix: address edge case in comment stripping (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1780";>#1780</a>)</li>
   <li><a 
href="https://github.com/caolan/async/commit/e27aaab6cb5278ce312a673852bc962afa1ae233";><code>e27aaab</code></a>
 chore: remove unused Travis CI config (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1781";>#1781</a>)</li>
   <li><a 
href="https://github.com/caolan/async/commit/a038c8fb26419b35e2524564f7852c899ddd2251";><code>a038c8f</code></a>
 ci: setup GitHub Actions (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1782";>#1782</a>)</li>
   <li><a 
href="https://github.com/caolan/async/commit/e74bd18406e6511ca3da9d67d971d9b50dd9d8e8";><code>e74bd18</code></a>
 Core: const, let, arrow-fn and unused variables (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1776";>#1776</a>)</li>
   <li><a 
href="https://github.com/caolan/async/commit/2ee673f5af40bdbbec4ce21d81147e946b75d55a";><code>2ee673f</code></a>
 Housekeeping (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1772";>#1772</a>)</li>
   <li><a 
href="https://github.com/caolan/async/commit/cdfb4917e6028c8f966276d6e792018c7fd2ae3c";><code>cdfb491</code></a>
 Fix an inefficient regex in autoInject (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1767";>#1767</a>)</li>
   <li><a 
href="https://github.com/caolan/async/commit/bb41f2a59aa41af0b906f0cb9a11ffa6332e56dd";><code>bb41f2a</code></a>
 be explicit (<a 
href="https://github-redirect.dependabot.com/caolan/async/issues/1769";>#1769</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/caolan/async/compare/v2.6.1...v3.2.3";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async&package-manager=npm_and_yarn&previous-version=2.6.1&new-version=3.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   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 squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor 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
   
   You can disable automated security fix PRs for this repo from the [Security 
Alerts page](https://github.com/apache/thrift/network/alerts).
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@thrift.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to