[PR #2715] [CLOSED] Bump eslint-plugin-react-refresh from 0.4.8 to 0.4.14 in /frontend #4093

Closed
opened 2026-02-22 18:35:07 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/2715
Author: @dependabot[bot]
Created: 11/25/2024
Status: Closed

Base: masterHead: dependabot/npm_and_yarn/frontend/eslint-plugin-react-refresh-0.4.14


📝 Commits (1)

  • 8ee80cc Bump eslint-plugin-react-refresh from 0.4.8 to 0.4.14 in /frontend

📊 Changes

2 files changed (+33 additions, -8 deletions)

View changed files

📝 frontend/package.json (+1 -1)
📝 frontend/yarn.lock (+32 -7)

📄 Description

Bumps eslint-plugin-react-refresh from 0.4.8 to 0.4.14.

Release notes

Sourced from eslint-plugin-react-refresh's releases.

v0.4.14

v0.4.13

  • Support for react-redux connect (export default connect(mapStateToProps, mapDispatchToProps)(MyComponent)) (fixes #51)
  • Support for Arbitrary Module Identifiers syntax (fixes #52)

v0.4.12

  • Support type assertion on default export (fixes #48)
  • Add default export to fix usage with jiti (fixes #50)

v0.4.11

  • Ignore type exports (ex. export type foo = string;) (fixes #47)

v0.4.10

  • Support function Foo() {}; export default React.memo(Foo) (#46) (thanks @​SukkaW!)

v0.4.9

  • Support function Foo() {}; export default memo(Foo) (fixes #44) (thanks @​SukkaW!)
Changelog

Sourced from eslint-plugin-react-refresh's changelog.

0.4.14

0.4.13

  • Support for react-redux connect (export default connect(mapStateToProps, mapDispatchToProps)(MyComponent)) (fixes #51)
  • Support for Arbitrary Module Identifiers syntax (fixes #52)

0.4.12

  • Support type assertion on default export (fixes #48)
  • Add default export to fix usage with jiti (fixes #50)

0.4.11

  • Ignore type exports (ex. export type foo = string;) (fixes #47)

0.4.10

  • Support function Foo() {}; export default React.memo(Foo) (#46) (thanks @​SukkaW!)

0.4.9

  • Support function Foo() {}; export default memo(Foo) (fixes #44) (thanks @​SukkaW!)
Commits
  • ba9bb7b Handle React.createContext [publish]
  • 97bdd56 Report React context exports (#54)
  • 268df3b Support for Arbitrary Module Identifiers syntax (fixes #52) [publish]
  • cb7cecd Support for react-redux connect (fixes #51)
  • 762c15c Fix version [publish]
  • 78f987f Support type assertion on default export (fixes #48) [publish]
  • f6dbb3a Add missing default export (fixes #50)
  • d327c35 Ignore type exports (ex. export type foo = string;) (fixes #47) [publish]
  • 7101b09 Supports React.forwardRef and React.memo [publish] (#46)
  • 897a11d Handle memo for function declarations / function assignments [publish] (#45)
  • See full diff in compare view

Dependabot compatibility score

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 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 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 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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/2715 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 11/25/2024 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/frontend/eslint-plugin-react-refresh-0.4.14` --- ### 📝 Commits (1) - [`8ee80cc`](https://github.com/Mintplex-Labs/anything-llm/commit/8ee80ccd2b55645256d426df6aa31204eaeb800d) Bump eslint-plugin-react-refresh from 0.4.8 to 0.4.14 in /frontend ### 📊 Changes **2 files changed** (+33 additions, -8 deletions) <details> <summary>View changed files</summary> 📝 `frontend/package.json` (+1 -1) 📝 `frontend/yarn.lock` (+32 -7) </details> ### 📄 Description Bumps [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh) from 0.4.8 to 0.4.14. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases">eslint-plugin-react-refresh's releases</a>.</em></p> <blockquote> <h2>v0.4.14</h2> <ul> <li>Warn if a context is exported alongside a component (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/53">#53</a>). Thanks <a href="https://github.com/IgorAufricht"><code>@​IgorAufricht</code></a>!</li> </ul> <h2>v0.4.13</h2> <ul> <li>Support for <code>react-redux</code> connect (<code>export default connect(mapStateToProps, mapDispatchToProps)(MyComponent)</code>) (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/51">#51</a>)</li> <li>Support for <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-6/#support-for-arbitrary-module-identifiers">Arbitrary Module Identifiers</a> syntax (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/52">#52</a>)</li> </ul> <h2>v0.4.12</h2> <ul> <li>Support type assertion on default export (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/48">#48</a>)</li> <li>Add default export to fix usage with jiti (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/50">#50</a>)</li> </ul> <h2>v0.4.11</h2> <ul> <li>Ignore type exports (ex. <code>export type foo = string;</code>) (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/47">#47</a>)</li> </ul> <h2>v0.4.10</h2> <ul> <li>Support <code>function Foo() {}; export default React.memo(Foo)</code> (<a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/46">#46</a>) (thanks <a href="https://github.com/SukkaW"><code>@​SukkaW</code></a>!)</li> </ul> <h2>v0.4.9</h2> <ul> <li>Support <code>function Foo() {}; export default memo(Foo)</code> (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/44">#44</a>) (thanks <a href="https://github.com/SukkaW"><code>@​SukkaW</code></a>!)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md">eslint-plugin-react-refresh's changelog</a>.</em></p> <blockquote> <h2>0.4.14</h2> <ul> <li>Warn if a context is exported alongside a component (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/53">#53</a>). Thanks <a href="https://github.com/IgorAufricht"><code>@​IgorAufricht</code></a>!</li> </ul> <h2>0.4.13</h2> <ul> <li>Support for <code>react-redux</code> connect (<code>export default connect(mapStateToProps, mapDispatchToProps)(MyComponent)</code>) (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/51">#51</a>)</li> <li>Support for <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-6/#support-for-arbitrary-module-identifiers">Arbitrary Module Identifiers</a> syntax (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/52">#52</a>)</li> </ul> <h2>0.4.12</h2> <ul> <li>Support type assertion on default export (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/48">#48</a>)</li> <li>Add default export to fix usage with jiti (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/50">#50</a>)</li> </ul> <h2>0.4.11</h2> <ul> <li>Ignore type exports (ex. <code>export type foo = string;</code>) (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/47">#47</a>)</li> </ul> <h2>0.4.10</h2> <ul> <li>Support <code>function Foo() {}; export default React.memo(Foo)</code> (<a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/46">#46</a>) (thanks <a href="https://github.com/SukkaW"><code>@​SukkaW</code></a>!)</li> </ul> <h2>0.4.9</h2> <ul> <li>Support <code>function Foo() {}; export default memo(Foo)</code> (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/44">#44</a>) (thanks <a href="https://github.com/SukkaW"><code>@​SukkaW</code></a>!)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/ba9bb7b8915e338749a68f3676f8d37defe4f87c"><code>ba9bb7b</code></a> Handle React.createContext [publish]</li> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/97bdd56dc47f3273577832ee9294c5ad7e972873"><code>97bdd56</code></a> Report React context exports (<a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/54">#54</a>)</li> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/268df3b82ae2e5937a2152baf6ce060db3bd9ea5"><code>268df3b</code></a> Support for Arbitrary Module Identifiers syntax (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/52">#52</a>) [publish]</li> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/cb7cecd81d81d2672af8c3338a99b99a8552e98a"><code>cb7cecd</code></a> Support for <code>react-redux</code> connect (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/51">#51</a>)</li> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/762c15c19e732ed71431cfa1b7d79c65b0c3f12c"><code>762c15c</code></a> Fix version [publish]</li> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/78f987f44d31c92badcb54c52bd07c3f5ee806ba"><code>78f987f</code></a> Support type assertion on default export (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/48">#48</a>) [publish]</li> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/f6dbb3a916fc120ffeffca09fb9a955e5eab61ac"><code>f6dbb3a</code></a> Add missing default export (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/50">#50</a>)</li> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/d327c3564eecfebe5f1aff44136cb84f0df7fac9"><code>d327c35</code></a> Ignore type exports (ex. <code>export type foo = string;</code>) (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/47">#47</a>) [publish]</li> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/7101b0970a9e43fb7e0cdd7b045c818655ae88d7"><code>7101b09</code></a> Supports <code>React.forwardRef</code> and <code>React.memo</code> [publish] (<a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/46">#46</a>)</li> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/897a11d35b1478a7e2bd16e0293b0f3a39c5fb0b"><code>897a11d</code></a> Handle memo for function declarations / function assignments [publish] (<a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/45">#45</a>)</li> <li>See full diff in <a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/compare/v0.4.8...v0.4.14">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=eslint-plugin-react-refresh&package-manager=npm_and_yarn&previous-version=0.4.8&new-version=0.4.14)](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 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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:35:07 -05:00
yindo closed this issue 2026-02-22 18:35:07 -05:00
yindo changed title from [PR #2715] Bump eslint-plugin-react-refresh from 0.4.8 to 0.4.14 in /frontend to [PR #2715] [CLOSED] Bump eslint-plugin-react-refresh from 0.4.8 to 0.4.14 in /frontend 2026-06-05 15:16:47 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#4093