⬆️(deps): Bump the console-npm group in /apps/meeseeks_console with 8 updates#129
Conversation
Bumps the console-npm group in /apps/meeseeks_console with 8 updates: | Package | From | To | | --- | --- | --- | | [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.522.0` | `0.577.0` | | [react-resizable-panels](https://github.com/bvaughn/react-resizable-panels) | `4.9.0` | `4.10.0` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.58.2` | `1.59.1` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.19.33` | `20.19.39` | | [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.24` | `10.4.27` | | [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh) | `0.4.26` | `0.5.2` | | [postcss](https://github.com/postcss/postcss) | `8.5.6` | `8.5.9` | | [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `3.4.17` | `3.4.19` | Updates `lucide-react` from 0.522.0 to 0.577.0 - [Release notes](https://github.com/lucide-icons/lucide/releases) - [Commits](https://github.com/lucide-icons/lucide/commits/0.577.0/packages/lucide-react) Updates `react-resizable-panels` from 4.9.0 to 4.10.0 - [Release notes](https://github.com/bvaughn/react-resizable-panels/releases) - [Changelog](https://github.com/bvaughn/react-resizable-panels/blob/main/CHANGELOG.md) - [Commits](bvaughn/react-resizable-panels@4.9.0...4.10.0) Updates `@playwright/test` from 1.58.2 to 1.59.1 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.58.2...v1.59.1) Updates `@types/node` from 20.19.33 to 20.19.39 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `autoprefixer` from 10.4.24 to 10.4.27 - [Release notes](https://github.com/postcss/autoprefixer/releases) - [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md) - [Commits](postcss/autoprefixer@10.4.24...10.4.27) Updates `eslint-plugin-react-refresh` from 0.4.26 to 0.5.2 - [Release notes](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases) - [Changelog](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md) - [Commits](ArnaudBarre/eslint-plugin-react-refresh@v0.4.26...v0.5.2) Updates `postcss` from 8.5.6 to 8.5.9 - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](postcss/postcss@8.5.6...8.5.9) Updates `tailwindcss` from 3.4.17 to 3.4.19 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v3.4.19/packages/tailwindcss) --- updated-dependencies: - dependency-name: lucide-react dependency-version: 0.577.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: console-npm - dependency-name: react-resizable-panels dependency-version: 4.10.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: console-npm - dependency-name: "@playwright/test" dependency-version: 1.59.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: console-npm - dependency-name: "@types/node" dependency-version: 20.19.39 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: console-npm - dependency-name: autoprefixer dependency-version: 10.4.27 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: console-npm - dependency-name: eslint-plugin-react-refresh dependency-version: 0.5.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: console-npm - dependency-name: postcss dependency-version: 8.5.9 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: console-npm - dependency-name: tailwindcss dependency-version: 3.4.19 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: console-npm ... Signed-off-by: dependabot[bot] <support@github.com>
| "eslint": "^8.50.0", | ||
| "eslint-plugin-react-hooks": "^4.6.0", | ||
| "eslint-plugin-react-refresh": "^0.4.1", | ||
| "eslint-plugin-react-refresh": "^0.5.2", |
There was a problem hiding this comment.
🔴 eslint-plugin-react-refresh@0.5.x requires ESLint 9+, breaking npm ci with ESLint 8
Upgrading eslint-plugin-react-refresh from ^0.4.1 to ^0.5.2 introduces a peer dependency on eslint@"^9 || ^10", but the project pins eslint@"^8.50.0" (apps/meeseeks_console/package.json:44). A clean npm install fails with ERESOLVE due to this conflict, and npm ci (used in CI at .github/workflows/console.yml and Docker at docker/Dockerfile.console) will also fail since it strictly enforces peer dependencies. There is no .npmrc with legacy-peer-deps=true to suppress this. The lock file appears to have been generated with --legacy-peer-deps, masking the issue locally but not in CI/Docker.
Prompt for agents
The eslint-plugin-react-refresh v0.5.x requires eslint ^9 or ^10 as a peer dependency, but the project uses eslint ^8.50.0 (line 44 of package.json). The @typescript-eslint packages (lines 40-41) are also pinned to ^5.54.0 which only supports ESLint 8. There are two possible fixes:
1. Revert eslint-plugin-react-refresh to ^0.4.x (the last version supporting ESLint 8) — this is the smallest diff fix.
2. Upgrade the entire ESLint toolchain to ESLint 9+ along with compatible versions of @typescript-eslint/* (v8+) and eslint-plugin-react-hooks (v5+) — this is a larger migration.
Option 1 is recommended to keep the scope of this dependency bump PR small, per the CLAUDE.md principle of 'smallest diff that solves the problem.'
Was this helpful? React with 👍 or 👎 to provide feedback.
Bumps the console-npm group in /apps/meeseeks_console with 8 updates:
0.522.00.577.04.9.04.10.01.58.21.59.120.19.3320.19.3910.4.2410.4.270.4.260.5.28.5.68.5.93.4.173.4.19Updates
lucide-reactfrom 0.522.0 to 0.577.0Release notes
Sourced from lucide-react's releases.
... (truncated)
Commits
f6c0d06chore(deps): bump rollup from 4.53.3 to 4.59.0 (#4106)67c0485feat(scripts): added helper script to automatically update OpenCollective bac...b6ed43dfeat(packages): Added aria-hidden fallback for decorative icons to all packag...076e0bbchore(dependencies): Update dependencies (#3809)80d6f73fix(icons): Rename fingerprint icon to fingerprint-pattern (#3767)1cfb3ffchore(deps-dev): bump vite from 6.3.5 to 6.3.6 (#3611)e71198dchore: icon alias improvements (#2861)Maintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for lucide-react since your current version.
Updates
react-resizable-panelsfrom 4.9.0 to 4.10.0Changelog
Sourced from react-resizable-panels's changelog.
Commits
fa271334.9.0 -> 4.10.0b58ed97Add data-separator "focus" state (#706)f4e5e08Upgrade react-lib-tools to improve site-search5cf89eaMade callouts on Common Questions more consistent435f953Upgrade react-lib-tools to improve site-searchUpdates
@playwright/testfrom 1.58.2 to 1.59.1Release notes
Sourced from
@playwright/test's releases.... (truncated)
Commits
d466ac5chore: mark v1.59.1 (#40005)530e7e5cherry-pick(#4004): fix(cli): kill-all should kill dashboard9aa216ccherry-pick(#39994): Revert "fix(windows): hide console window when spawning ...01b2b15cherry-pick(#39980): chore: more release notes fixesa5cb6c9cherry-pick(#39972): chore: expose browser.bind and browser.unbind APIs99a17b5cherry-pick(#39975): chore: support opening .trace files via .link indirection43607c3cherry-pick(#39974): chore(webkit): update Safari user-agent version to 26.462cabe1cherry-pick(#39969): chore(npm): include all *.md from lib (#39970)0c65a75cherry-pick(#39968): chore: screencast.showActions apif04155bcherry-pick(#39958): chore: release notes for langs v1.59Updates
@types/nodefrom 20.19.33 to 20.19.39Commits
Updates
autoprefixerfrom 10.4.24 to 10.4.27Release notes
Sourced from autoprefixer's releases.
Changelog
Sourced from autoprefixer's changelog.
Commits
360f2d9Release 10.4.27 versionab5260cUpdate clean-publish09e9dd1Release 10.4.26 versionec75540Ignore local patches59601b8Update c8 and clean-publish06ea988Release 10.4.25 version47d8a5bUpdate dependencies and fix Node.js 2551c596eAdd Node.js 25 and 24 to CI5239823Fix CSS variables in gradients (#1515) (#1544)Updates
eslint-plugin-react-refreshfrom 0.4.26 to 0.5.2Release notes
Sourced from eslint-plugin-react-refresh's releases.
... (truncated)
Changelog
Sourced from eslint-plugin-react-refresh's changelog.
... (truncated)
Commits
c0317bfFix support for nested function calls for extraHOCs [publish]42a1805Explicit v10 support (fixes #106) [publish]199793eSupport nested function calls for extraHOCs (fixes #104)26b3c15Support false positives with TypeScript function overloading (fixes #105)daa2efbRevamp logic to catch more cases [publish] (#97)Updates
postcssfrom 8.5.6 to 8.5.9Release notes
Sourced from postcss's releases.
Changelog
Sourced from postcss's changelog.
Commits
fe88ac2Release 8.5.9 versionc551632Avoid RegExp when we can use simple JS89a6b74Move SECURITY.txt for docs folder to keep GitHub page cleaner6ceb8a4Create SECURITY.md02ccae6Another way to fix CI with .ts ext in tests on old Node.js2c36658Another way to fix CI with TS on old Node.jsb906003Another way to fix CI with old Node.js04d32cdFix another issue with Node.js 10 on CIdf86cdfTry to fix Node.js 10 on CI82bec0dMove to oxfmtUpdates
tailwindcssfrom 3.4.17 to 3.4.19Release notes
Sourced from tailwindcss's releases.
Changelog
Sourced from tailwindcss's changelog.
... (truncated)
Commits
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions