chore(deps-dev): bump the dev-deps group with 5 updates#16
Conversation
Bumps the dev-deps group with 5 updates: | Package | From | To | | --- | --- | --- | | [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.39.3` | `10.0.1` | | [@react-native/babel-preset](https://github.com/facebook/react-native) | `0.84.0` | `0.84.1` | | [@react-native/eslint-config](https://github.com/facebook/react-native/tree/HEAD/packages/eslint-config-react-native) | `0.84.0` | `0.84.1` | | [eslint](https://github.com/eslint/eslint) | `9.39.3` | `10.0.2` | | [react-native](https://github.com/facebook/react-native/tree/HEAD/packages/react-native) | `0.84.0` | `0.84.1` | Updates `@eslint/js` from 9.39.3 to 10.0.1 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](https://github.com/eslint/eslint/commits/v10.0.1/packages/js) Updates `@react-native/babel-preset` from 0.84.0 to 0.84.1 - [Release notes](https://github.com/facebook/react-native/releases) - [Changelog](https://github.com/facebook/react-native/blob/main/CHANGELOG.md) - [Commits](facebook/react-native@v0.84.0...v0.84.1) Updates `@react-native/eslint-config` from 0.84.0 to 0.84.1 - [Release notes](https://github.com/facebook/react-native/releases) - [Changelog](https://github.com/facebook/react-native/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react-native/commits/v0.84.1/packages/eslint-config-react-native) Updates `eslint` from 9.39.3 to 10.0.2 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](eslint/eslint@v9.39.3...v10.0.2) Updates `react-native` from 0.84.0 to 0.84.1 - [Release notes](https://github.com/facebook/react-native/releases) - [Changelog](https://github.com/facebook/react-native/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react-native/commits/v0.84.1/packages/react-native) --- updated-dependencies: - dependency-name: "@eslint/js" dependency-version: 10.0.1 dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-deps - dependency-name: "@react-native/babel-preset" dependency-version: 0.84.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-deps - dependency-name: "@react-native/eslint-config" dependency-version: 0.84.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-deps - dependency-name: eslint dependency-version: 10.0.2 dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-deps - dependency-name: react-native dependency-version: 0.84.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-deps ... Signed-off-by: dependabot[bot] <support@github.com>
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s JavaScript/React Native development toolchain dependencies (linting + React Native tooling) via a Dependabot “dev-deps” group bump.
Changes:
- Bump ESLint and
@eslint/jsto v10. - Bump React Native dev tooling packages to
0.84.1(react-native,@react-native/babel-preset,@react-native/eslint-config).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "@react-native/eslint-config": "0.84.1", | ||
| "@release-it/conventional-changelog": "^10.0.1", | ||
| "@types/jest": "^30.0.0", | ||
| "@types/react": "^19.2.0", | ||
| "commitlint": "^20.4.1", | ||
| "del-cli": "^7.0.0", | ||
| "eslint": "^9.0.0", | ||
| "eslint": "^10.0.2", | ||
| "eslint-config-prettier": "^10.1.8", |
There was a problem hiding this comment.
This bumps ESLint to v10, but the React Native shareable config has historically constrained ESLint to <=9 (current lockfile shows @react-native/eslint-config peerDep eslint: ^8 || ^9). Please verify that @react-native/eslint-config@0.84.1 (and its transitive deps like @typescript-eslint/*) explicitly supports ESLint 10; if not, this set of versions will be uninstallable without --legacy-peer-deps and should keep ESLint on ^9 until the config/tooling supports v10.
There was a problem hiding this comment.
@copilot open a new pull request to apply changes based on this feedback
package.json
Outdated
| "@eslint/js": "^10.0.1", | ||
| "@react-native/babel-preset": "0.84.1", | ||
| "@react-native/eslint-config": "0.84.1", | ||
| "@release-it/conventional-changelog": "^10.0.1", | ||
| "@types/jest": "^30.0.0", | ||
| "@types/react": "^19.2.0", | ||
| "commitlint": "^20.4.1", | ||
| "del-cli": "^7.0.0", | ||
| "eslint": "^9.0.0", | ||
| "eslint": "^10.0.2", | ||
| "eslint-config-prettier": "^10.1.8", | ||
| "eslint-plugin-ft-flow": "^3.0.11", | ||
| "eslint-plugin-prettier": "^5.5.4", | ||
| "jest": "^30.2.0", | ||
| "lefthook": "^2.0.3", | ||
| "prettier": "^3.7.0", | ||
| "react": "19.2.4", | ||
| "react-native": "0.84.0", | ||
| "react-native": "0.84.1", |
There was a problem hiding this comment.
npm ci is used in CI (see .github/actions/setup/action.yml), but package-lock.json is still pinned to the previous devDependency versions (e.g., it still lists eslint ^9, react-native 0.84.0, @react-native/eslint-config 0.84.0). As-is, npm ci will fail due to the package.json/package-lock.json mismatch—please regenerate and commit an updated lockfile for these bumps.
There was a problem hiding this comment.
@copilot open a new pull request to apply changes based on this feedback
|
@channel101 I've opened a new pull request, #17, to work on those changes. Once the pull request is ready, I'll request review from you. |
|
@channel101 I've opened a new pull request, #18, to work on those changes. Once the pull request is ready, I'll request review from you. |
…atibility (#17) * Initial plan * fix(deps-dev): revert eslint and @eslint/js to ^9 for @react-native/eslint-config compatibility Co-authored-by: channel101 <202932523+channel101@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: channel101 <202932523+channel101@users.noreply.github.com>
…y-peer-deps (#18) * Initial plan * fix: regenerate package-lock.json and add .npmrc for legacy-peer-deps Co-authored-by: channel101 <202932523+channel101@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: channel101 <202932523+channel101@users.noreply.github.com>
Bumps the dev-deps group with 5 updates:
9.39.310.0.10.84.00.84.10.84.00.84.19.39.310.0.20.84.00.84.1Updates
@eslint/jsfrom 9.39.3 to 10.0.1Release notes
Sourced from
@eslint/js's releases.... (truncated)
Commits
84fb885chore: package.json update for@eslint/jsrelease1f66734chore: addeslinttopeerDependenciesof@eslint/js(#20467)f3fbc2fchore: set@eslint/jsversion to 10.0.0 to skip releasing it (#20466)b4b3127chore: package.json update for@eslint/jsrelease0b14059chore: package.json update for@eslint/jsreleasefa31a60feat!: addnameto configs (#20015)1e2cad5chore: package.json update for@eslint/jsrelease454a292feat!: updateeslint:recommendedconfiguration (#20210)c6358c3feat!: Require Node.js^20.19.0 || ^22.13.0 || >=24(#20160)Updates
@react-native/babel-presetfrom 0.84.0 to 0.84.1Release notes
Sourced from
@react-native/babel-preset's releases.Changelog
Sourced from
@react-native/babel-preset's changelog.Commits
6064933Release 0.84.12c65dd7Fix flaky Modal-itest by adding proper root cleanup (#55712)938a338Attempt to reduce flakyness on Modal-itest "MessageQueue is not empty" failur...19582bf[LOCAL] Pin react-native-android Docker image to v20.03483f16[LOCAL] Bump hermes v1 versiond965609fix(react-native): resolve included-build gradle.properties from parent build...3c503a8fix: missing symbols on prebuilt Android with hermesV1 disabled (#55400)83a038dfix: inability to disable hermesV1 on Android (#55399)9b79d39[LOCAL] Fix misaligned Hermes version9160f7c[LOCAL] Bump Podfile.lockUpdates
@react-native/eslint-configfrom 0.84.0 to 0.84.1Release notes
Sourced from
@react-native/eslint-config's releases.Changelog
Sourced from
@react-native/eslint-config's changelog.Commits
6064933Release 0.84.1Updates
eslintfrom 9.39.3 to 10.0.2Release notes
Sourced from eslint's releases.
... (truncated)
Commits
55122d610.0.280f1e29Build: changelog update for 10.0.2951223bchore: update dependency@eslint/eslintrcto ^3.3.4 (#20553)13eeedbdocs: link rule type explanation to CLI option --fix-type (#20548)6aa1afechore: update dependency eslint-plugin-jsdoc to ^62.7.0 (#20536)2b72361fix: updateajvto6.14.0to address security vulnerabilities (#20537)98cbf6bdocs: update migration guide per Program range change (#20534)61a2405docs: add missing semicolon in vars-on-top rule example (#20533)0bd549710.0.1ddb80efBuild: changelog update for 10.0.1Updates
react-nativefrom 0.84.0 to 0.84.1Release notes
Sourced from react-native's releases.
Changelog
Sourced from react-native's changelog.
Commits
6064933Release 0.84.12c65dd7Fix flaky Modal-itest by adding proper root cleanup (#55712)938a338Attempt to reduce flakyness on Modal-itest "MessageQueue is not empty" failur...3483f16[LOCAL] Bump hermes v1 versiond965609fix(react-native): resolve included-build gradle.properties from parent build...3c503a8fix: missing symbols on prebuilt Android with hermesV1 disabled (#55400)9b79d39[LOCAL] Fix misaligned Hermes versionDependabot 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