dependabot[bot] opened a new pull request, #40214: URL: https://github.com/apache/superset/pull/40214
Updates the requirements on [reselect](https://github.com/reduxjs/reselect) to permit the latest version. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/reduxjs/reselect/releases">reselect's releases</a>.</em></p> <blockquote> <h2>v5.2.0</h2> <p>This <strong>feature release</strong> improves tree-shaking and fixes a potential ref leak in <code>weakMapMemoize</code>, as well as restoring trusted publishing provenance.</p> <h2>Changelog</h2> <h3>Code Improvements</h3> <p>We've restructured some of the internals to improve tree-shaking.</p> <p>We've fixed a rare case that could lead to <code>weakMapMemoize</code> leaking a <code>WeakRef</code>.</p> <h3>Trusted Publishing Fixed</h3> <p>We had set up trusted publishing for Reselect a couple years ago and did some releases with that enabled, but at some point I did a follow-up release that still used the previous manual workflow, and that lost the trusted publishing provenance flag. We had recent issues requesting a new release with trusted publishing enabled again, so we've fixed that with this release.</p> <h2>What's Changed</h2> <ul> <li>Fix leaking Ref in weakMapMemoize by <a href="https://github.com/tomavos"><code>@tomavos</code></a> in <a href="https://redirect.github.com/reduxjs/reselect/pull/729">reduxjs/reselect#729</a></li> <li>Improve treeshakeability of build artifacts by <a href="https://github.com/aryaemami59"><code>@aryaemami59</code></a> in <a href="https://redirect.github.com/reduxjs/reselect/pull/721">reduxjs/reselect#721</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/reduxjs/reselect/compare/v5.1.1...v5.2.0">https://github.com/reduxjs/reselect/compare/v5.1.1...v5.2.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/reduxjs/reselect/blob/master/CHANGELOG.md">reselect's changelog</a>.</em></p> <blockquote> <h1>Change log</h1> <p>Changes in this project are primarily documented in the Github release notes:</p> <ul> <li><a href="https://github.com/reduxjs/reselect/releases">https://github.com/reduxjs/reselect/releases</a></li> </ul> <p>Changes from v4.0.0 and earlier are documented in this file</p> <p>This project adheres to <a href="http://semver.org/">Semantic Versioning</a>.</p> <h2><a href="https://github.com/reduxjs/reselect/releases/tag/v4.0.0">v4.0.0</a> - 2018/09/30</h2> <h3>New Features</h3> <p>Exposed selector dependencies (<a href="https://redirect.github.com/reduxjs/reselect/issues/251">#251</a>)<br /> Use provided memoize function for selectors (<a href="https://redirect.github.com/reduxjs/reselect/issues/297">#297</a>)</p> <h3>Breaking Changes</h3> <p>Updated TypeScript typings (<a href="https://redirect.github.com/reduxjs/reselect/issues/274">#274</a>, <a href="https://redirect.github.com/reduxjs/reselect/issues/315">#315</a>)</p> <h2><a href="https://github.com/reduxjs/reselect/releases/tag/v3.0.0">v3.0.0</a> - 2017/03/24</h2> <h3>New Features</h3> <p>Performance improvements (thanks to <a href="https://github.com/johnhaley81"><code>@johnhaley81</code></a>)<br /> Updated Typescript typings (thanks to everyone who helped)</p> <h3>Breaking Changes</h3> <p>For performance reasons, a selector is now not recalculated if its input is equal by reference (<code>===</code>).</p> <h4>Example:</h4> <pre lang="js"><code>import { createSelector } from 'reselect' <p>const mySelector = createSelector(<br /> state => state.values.filter(val => val < 5),<br /> values => {<br /> console.log('calling..')<br /> return values.reduce((acc, val) => acc + val, 0)<br /> }<br /> )</p> <p>var createSelector = require('./dist/reselect.js').createSelector</p> <p>const mySelector = createSelector(<br /> state => state.values.filter(val => val < 5),<br /> values => {<br /> </tr></table><br /> </code></pre></p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/reduxjs/reselect/commit/65c48cdc919b955955e75f95d5b20e6ded69f2c7"><code>65c48cd</code></a> Release 5.2.0</li> <li><a href="https://github.com/reduxjs/reselect/commit/ed5452c2e723f683221b63d1892036c8c02ecaf2"><code>ed5452c</code></a> Fix NPM release workflow</li> <li><a href="https://github.com/reduxjs/reselect/commit/eba1c5a662999410b0644febad4f47ceda162c54"><code>eba1c5a</code></a> Disable release-it actual publishes</li> <li><a href="https://github.com/reduxjs/reselect/commit/7d7b33610e5f2ba7c46f89cb7bc0358e365cc070"><code>7d7b336</code></a> Merge pull request <a href="https://redirect.github.com/reduxjs/reselect/issues/751">#751</a> from Smashman/patch-1</li> <li><a href="https://github.com/reduxjs/reselect/commit/bf69a674ac40d5eed4d3ca39bd602ec7a5443d0a"><code>bf69a67</code></a> Edit 'Simple Use Case' to fix apparent issue with demo code</li> <li><a href="https://github.com/reduxjs/reselect/commit/7435743fb142afd0ae3cce65af20495f1466cb36"><code>7435743</code></a> Merge pull request <a href="https://redirect.github.com/reduxjs/reselect/issues/744">#744</a> from aryaemami59/chore/fix-line-endings</li> <li><a href="https://github.com/reduxjs/reselect/commit/1b64cc0d3cc02046a6acf2f66ca7aba012c700ae"><code>1b64cc0</code></a> chore: fix line-endings</li> <li><a href="https://github.com/reduxjs/reselect/commit/b8ad87ca29548f4d080cabea1cd1407c28f1db38"><code>b8ad87c</code></a> Merge pull request <a href="https://redirect.github.com/reduxjs/reselect/issues/743">#743</a> from aryaemami59/chore/ci-node-22</li> <li><a href="https://github.com/reduxjs/reselect/commit/a08f07d09036db269873da57e9adc0e08a185adc"><code>a08f07d</code></a> chore: update CI Node.js version to 22</li> <li><a href="https://github.com/reduxjs/reselect/commit/cf4246f87e036c8a65edc1b90993d039f7aac10c"><code>cf4246f</code></a> Merge pull request <a href="https://redirect.github.com/reduxjs/reselect/issues/706">#706</a> from aryaemami59/gitattributes</li> <li>Additional commits viewable in <a href="https://github.com/reduxjs/reselect/compare/v5.1.1...v5.2.0">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/~GitHub%20Actions">GitHub Actions</a>, a new releaser for reselect since your current version.</p> </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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
