You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by "dependabot[bot] (via GitHub)" <gi...@apache.org> on 2023/02/12 07:44:10 UTC

[GitHub] [echarts-doc] dependabot[bot] opened a new pull request, #336: chore(deps): bump cacheable-request and command-line-basics

dependabot[bot] opened a new pull request, #336:
URL: https://github.com/apache/echarts-doc/pull/336

   Bumps [cacheable-request](https://github.com/jaredwray/cacheable-request) and [command-line-basics](https://github.com/brettz9/command-line-basics). These dependencies needed to be updated together.
   Updates `cacheable-request` from 6.1.0 to 10.2.7
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/jaredwray/cacheable-request/releases">cacheable-request's releases</a>.</em></p>
   <blockquote>
   <h2>v10.2.6</h2>
   <h1>Fix for memory leak on Listeners</h1>
   <p>The listener was not being removed on <code>response</code> and just error but new handlers were being added causing a memory leak.</p>
   <p><a href="https://github.com/jaredwray/cacheable-request/blob/c4815689be40854a3d748a3927959354c09b0ebb/src/index.ts#L220-L225">line 220 in src/index.ts was modified to remove the listener on response also </a></p>
   <pre><code>			if (this.cache instanceof Keyv) {
   				const cachek = this.cache;
   				cachek.once('error', errorHandler);
   				ee.on('error', () =&gt; cachek.removeListener('error', errorHandler));
   				ee.on('response', () =&gt; cachek.removeListener('error', errorHandler));
   			}
   </code></pre>
   <h2>What's Changed</h2>
   <ul>
   <li>upgrading jest and components to latest by <a href="https://github.com/jaredwray"><code>@​jaredwray</code></a> in <a href="https://github-redirect.dependabot.com/jaredwray/cacheable-request/pull/220">jaredwray/cacheable-request#220</a></li>
   <li>upgrading <code>@​types/jest</code> to 29.2.6 by <a href="https://github.com/jaredwray"><code>@​jaredwray</code></a> in <a href="https://github-redirect.dependabot.com/jaredwray/cacheable-request/pull/221">jaredwray/cacheable-request#221</a></li>
   <li>fixing listener memory leak - issue <a href="https://github-redirect.dependabot.com/jaredwray/cacheable-request/issues/222">#222</a> by <a href="https://github.com/jaredwray"><code>@​jaredwray</code></a> in <a href="https://github-redirect.dependabot.com/jaredwray/cacheable-request/pull/223">jaredwray/cacheable-request#223</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a href="https://github.com/jaredwray/cacheable-request/compare/v10.2.5...v10.2.6">https://github.com/jaredwray/cacheable-request/compare/v10.2.5...v10.2.6</a></p>
   <h2>v10.2.5</h2>
   <p>Types definition issue with http-cache-sematics as that type definition needs to be in dependencies. Thanks <a href="https://github.com/Maxim-Mazurok"><code>@​Maxim-Mazurok</code></a></p>
   <h2>What's Changed</h2>
   <ul>
   <li>Move <code>@​types/http-cache-semantics</code> from dev to deps by <a href="https://github.com/Maxim-Mazurok"><code>@​Maxim-Mazurok</code></a> in <a href="https://github-redirect.dependabot.com/jaredwray/cacheable-request/pull/219">jaredwray/cacheable-request#219</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a href="https://github.com/jaredwray/cacheable-request/compare/v10.2.4...v10.2.5">https://github.com/jaredwray/cacheable-request/compare/v10.2.4...v10.2.5</a></p>
   <h1>v10.2.4</h1>
   <p>Minor updates with one exception is that we removed <code>@types/http-cache-semantics</code> from the main dependencies as it does not look to be needed.</p>
   <h2>What's Changed</h2>
   <ul>
   <li>upgrading typescript to 4.9.4 by <a href="https://github.com/jaredwray"><code>@​jaredwray</code></a> in <a href="https://github-redirect.dependabot.com/jaredwray/cacheable-request/pull/214">jaredwray/cacheable-request#214</a></li>
   <li>upgrading jest types and eslint for jest to latest by <a href="https://github.com/jaredwray"><code>@​jaredwray</code></a> in <a href="https://github-redirect.dependabot.com/jaredwray/cacheable-request/pull/215">jaredwray/cacheable-request#215</a></li>
   <li>upgrading sqlite3 to 5.1.4 by <a href="https://github.com/jaredwray"><code>@​jaredwray</code></a> in <a href="https://github-redirect.dependabot.com/jaredwray/cacheable-request/pull/216">jaredwray/cacheable-request#216</a></li>
   <li>removing <code>@​types/http-cache-semantics</code> from the dependencies and moving… by <a href="https://github.com/jaredwray"><code>@​jaredwray</code></a> in <a href="https://github-redirect.dependabot.com/jaredwray/cacheable-request/pull/217">jaredwray/cacheable-request#217</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a href="https://github.com/jaredwray/cacheable-request/compare/v10.2.3...v10.2.4">https://github.com/jaredwray/cacheable-request/compare/v10.2.3...v10.2.4</a></p>
   <h1>v10.2.3 Maintenance Release</h1>
   <p>Upgrading core modules in the system such as keyv and also a minor fix to an uncaught exception that we were seeing referenced here: <a href="https://github-redirect.dependabot.com/sindresorhus/got/issues/1925">sindresorhus/got#1925</a></p>
   <p>Additional update is moving <code>normalize-url</code> to <code>8.0.0</code> which after testing it looks to not affect anything but will post the release notes here: <a href="https://github.com/sindresorhus/normalize-url/releases/tag/v8.0.0">https://github.com/sindresorhus/normalize-url/releases/tag/v8.0.0</a></p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li>See full diff in <a href="https://github.com/jaredwray/cacheable-request/commits">compare view</a></li>
   </ul>
   </details>
   <details>
   <summary>Maintainer changes</summary>
   <p>This version was pushed to npm by <a href="https://www.npmjs.com/~jaredwray">jaredwray</a>, a new releaser for cacheable-request since your current version.</p>
   </details>
   <br />
   
   Updates `command-line-basics` from 1.0.2 to 1.1.0
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/brettz9/command-line-basics/blob/main/CHANGES.md">command-line-basics's changelog</a>.</em></p>
   <blockquote>
   <h2>1.1.0</h2>
   <ul>
   <li>chore: update from vulnerable <code>update-notifier</code>; update
   <code>command-line-args</code>/<code>command-line-usage</code></li>
   <li>chore: update devDeps.</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/brettz9/command-line-basics/commit/5d675e11510a13818cc6e64d772920379ef4633f"><code>5d675e1</code></a> chore: update from vulnerable <code>update-notifier</code>; update <code>command-line-args</code>/`...</li>
   <li>See full diff in <a href="https://github.com/brettz9/command-line-basics/compare/v1.0.2...v1.1.0">compare view</a></li>
   </ul>
   </details>
   <br />
   
   
   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/echarts-doc/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: commits-unsubscribe@echarts.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts-doc] plainheart merged pull request #336: chore(deps): bump cacheable-request and command-line-basics

Posted by "plainheart (via GitHub)" <gi...@apache.org>.
plainheart merged PR #336:
URL: https://github.com/apache/echarts-doc/pull/336


-- 
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: commits-unsubscribe@echarts.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org