-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Upgrade eslint-config-next from 13.1.6 to 13.5.11 #46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Snyk has created this PR to upgrade eslint-config-next from 13.1.6 to 13.5.11. See this package in npm: eslint-config-next See this project in Snyk: https://app.snyk.io/org/mohammadnewton/project/0e9cffcf-197a-490b-8899-f100c7a04a35?utm_source=github&utm_medium=referral&page=upgrade-pr
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello @nejidevelops, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!
Summary of Changes
Hello team, gemini-code-assist here to provide a summary of this pull request. This PR, automatically generated by Snyk, aims to upgrade the eslint-config-next dependency from version 13.1.6 to 13.5.11. This is a significant version jump, covering 414 versions according to Snyk, and the recommended version was released about 2 months ago (relative to the PR creation date). The primary goal of this upgrade is to keep project dependencies up-to-date, which helps in fixing existing vulnerabilities and more quickly identifying and addressing new ones.
Highlights
- Dependency Upgrade: The core change is the upgrade of the
eslint-config-nextpackage from version13.1.6to13.5.11. - Automated PR: This pull request was automatically created by Snyk to propose the dependency update.
- Version Jump: The upgrade spans a large number of versions (414 versions difference) and brings the dependency to a version released relatively recently.
Changelog
- package.json
- Updated the
eslint-config-nextdependency version indevDependenciesfrom13.1.6to13.5.11.
- Updated the
Using Gemini Code Assist
The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.
Invoking Gemini
You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.
| Feature | Command | Description |
|---|---|---|
| Code Review | /gemini review |
Performs a code review for the current pull request in its current state. |
| Pull Request Summary | /gemini summary |
Provides a summary of the current pull request in its current state. |
| Comment | @gemini-code-assist | Responds in comments when explicitly tagged, both in issue comments and review comments. |
| Help | /gemini help |
Displays a list of available commands. |
Customization
To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.
Limitations & Feedback
Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.
You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.
Linting rules update,
Versions jump, a long, long wait,
Code now shines so bright.
Footnotes
-
Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution. ↩
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request, automatically generated by Snyk, proposes an upgrade for the eslint-config-next package from version 13.1.6 to 13.5.11. While keeping dependencies up-to-date is crucial for security and stability, this specific upgrade warrants careful consideration due to a potential version mismatch with the next package currently used in the project.
Summary of Findings
- Potential Dependency Version Mismatch: The
eslint-config-nextpackage is being upgraded to13.5.11while the corenextpackage remains at13.1.6. This significant version difference could lead to linting rule incompatibilities, unexpected errors, or enforcement of practices not relevant to the older Next.js version. It's recommended to either upgrade allnext-related packages in sync or find a more closely compatible version ofeslint-config-next.
Merge Readiness
This pull request proposes a significant version jump for eslint-config-next which might not be fully compatible with the existing next version (13.1.6) in the project. This could lead to linting issues or enforce irrelevant rules.
I've raised a concern with a high severity regarding this potential incompatibility and suggested alternative approaches. It is highly recommended to address this concern and conduct thorough testing (linting, build, and application functionality) before merging.
As an automated reviewer, I am not authorized to approve pull requests. Please ensure this change is carefully reviewed and tested by the project maintainers.
| "@types/react-dom": "18.0.10", | ||
| "eslint": "8.33.0", | ||
| "eslint-config-next": "13.1.6", | ||
| "eslint-config-next": "13.5.11", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR upgrades eslint-config-next from 13.1.6 to 13.5.11.
While updating dependencies is generally beneficial, especially for security, there's a potential concern with this specific version jump:
- Coupling with
nextversion: Thenextpackage in this project is at version13.1.6(as is@next/font).eslint-config-nextversions are typically tightly coupled with their correspondingnextversions because they include rules tailored to the features and practices of that specific Next.js release. - Potential Incompatibilities: Upgrading
eslint-config-nextto13.5.11whilenextremains at13.1.6could introduce issues such as:- Linting rules for Next.js features not available in your current
13.1.6version. - Newer rules that might conflict with the older Next.js version, leading to incorrect linting errors or warnings.
- Enforcement of new recommended practices that aren't yet applicable or desired for Next.js
13.1.6.
- Linting rules for Next.js features not available in your current
Could we explore one of the following approaches to mitigate this risk?
- Synchronized Upgrade: If a Next.js framework upgrade is planned or feasible, consider upgrading
next,@next/font, andeslint-config-nexttogether to a consistent13.5.xversion (e.g.,13.5.6as a recent stable in that line, or13.5.11if that's the target fornextas well). - Minimal Compatible Upgrade: If the main goal is to address a specific vulnerability in
[email protected]without a full framework upgrade, it might be safer to identify the minimum patched version ofeslint-config-nextthat is confirmed to be compatible with[email protected]. This version might be lower than13.5.11.
Regardless of the path chosen, thorough testing (linting, build, and runtime tests) will be essential after this change. What are your thoughts on this potential version incompatibility?
Snyk has created this PR to upgrade eslint-config-next from 13.1.6 to 13.5.11.
ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
The recommended version is 414 versions ahead of your current version.
The recommended version was released 2 months ago.
Release notes
Package name: eslint-config-next
-
13.5.11 - 2025-03-27
- Lock swc binaries version
-
13.5.10 - 2025-03-24
- Match subrequest handling for edge and node
-
13.5.9 - 2025-03-22
-
13.5.8 - 2024-12-21
-
13.5.7 - 2024-09-17
-
13.5.7-canary.37 - 2023-10-26
-
13.5.7-canary.36 - 2023-10-26
-
13.5.7-canary.35 - 2023-10-26
-
13.5.7-canary.34 - 2023-10-26
-
13.5.7-canary.33 - 2023-10-26
-
13.5.7-canary.32 - 2023-10-26
-
13.5.7-canary.31 - 2023-10-26
-
13.5.7-canary.29 - 2023-10-26
-
13.5.7-canary.28 - 2023-10-26
-
13.5.7-canary.27 - 2023-10-25
-
13.5.7-canary.26 - 2023-10-25
-
13.5.7-canary.25 - 2023-10-24
-
13.5.7-canary.24 - 2023-10-24
-
13.5.7-canary.23 - 2023-10-24
-
13.5.7-canary.22 - 2023-10-24
-
13.5.7-canary.19 - 2023-10-23
-
13.5.7-canary.18 - 2023-10-23
-
13.5.7-canary.17 - 2023-10-23
-
13.5.7-canary.16 - 2023-10-23
-
13.5.7-canary.15 - 2023-10-22
-
13.5.7-canary.14 - 2023-10-21
-
13.5.7-canary.13 - 2023-10-20
-
13.5.7-canary.12 - 2023-10-20
-
13.5.7-canary.11 - 2023-10-19
-
13.5.7-canary.10 - 2023-10-19
-
13.5.7-canary.9 - 2023-10-19
-
13.5.6 - 2023-10-18
-
13.5.6-canary.8 - 2023-10-19
-
13.5.6-canary.7 - 2023-10-18
-
13.5.6-canary.6 - 2023-10-18
-
13.5.6-canary.5 - 2023-10-17
-
13.5.6-canary.4 - 2023-10-17
-
13.5.6-canary.3 - 2023-10-17
-
13.5.6-canary.2 - 2023-10-17
-
13.5.6-canary.1 - 2023-10-16
-
13.5.6-canary.0 - 2023-10-16
-
13.5.5 - 2023-10-16
-
13.5.5-canary.19 - 2023-10-16
-
13.5.5-canary.18 - 2023-10-16
-
13.5.5-canary.17 - 2023-10-15
-
13.5.5-canary.16 - 2023-10-14
-
13.5.5-canary.15 - 2023-10-13
-
13.5.5-canary.14 - 2023-10-13
-
13.5.5-canary.13 - 2023-10-13
-
13.5.5-canary.12 - 2023-10-13
-
13.5.5-canary.11 - 2023-10-12
-
13.5.5-canary.10 - 2023-10-12
-
13.5.5-canary.9 - 2023-10-12
-
13.5.5-canary.8 - 2023-10-12
-
13.5.5-canary.7 - 2023-10-11
-
13.5.5-canary.6 - 2023-10-11
-
13.5.5-canary.5 - 2023-10-10
-
13.5.5-canary.4 - 2023-10-06
-
13.5.5-canary.3 - 2023-10-06
-
13.5.5-canary.2 - 2023-10-04
-
13.5.5-canary.1 - 2023-10-04
-
13.5.5-canary.0 - 2023-10-03
-
13.5.4 - 2023-10-03
-
13.5.4-canary.11 - 2023-10-03
-
13.5.4-canary.10 - 2023-10-02
-
13.5.4-canary.9 - 2023-10-02
-
13.5.4-canary.8 - 2023-09-29
-
13.5.4-canary.7 - 2023-09-29
-
13.5.4-canary.6 - 2023-09-28
-
13.5.4-canary.5 - 2023-09-28
-
13.5.4-canary.4 - 2023-09-27
-
13.5.4-canary.3 - 2023-09-27
-
13.5.4-canary.2 - 2023-09-27
-
13.5.4-canary.1 - 2023-09-26
-
13.5.4-canary.0 - 2023-09-25
-
13.5.3 - 2023-09-25
-
13.5.3-canary.4 - 2023-09-25
-
13.5.3-canary.3 - 2023-09-23
-
13.5.3-canary.2 - 2023-09-22
-
13.5.3-canary.1 - 2023-09-22
-
13.5.3-canary.0 - 2023-09-21
-
13.5.2 - 2023-09-20
-
13.5.2-canary.2 - 2023-09-20
-
13.5.2-canary.1 - 2023-09-20
-
13.5.2-canary.0 - 2023-09-20
-
13.5.1 - 2023-09-19
-
13.5.1-canary.1 - 2023-09-19
-
13.5.1-canary.0 - 2023-09-19
-
13.5.0 - 2023-09-19
-
13.4.20-canary.41 - 2023-09-19
-
13.4.20-canary.40 - 2023-09-18
-
13.4.20-canary.39 - 2023-09-18
-
13.4.20-canary.38 - 2023-09-18
-
13.4.20-canary.37 - 2023-09-18
-
13.4.20-canary.36 - 2023-09-18
-
13.4.20-canary.35 - 2023-09-18
-
13.4.20-canary.34 - 2023-09-18
-
13.4.20-canary.33 - 2023-09-16
-
13.4.20-canary.32 - 2023-09-15
-
13.4.20-canary.31 - 2023-09-15
-
13.4.20-canary.30 - 2023-09-14
-
13.4.20-canary.29 - 2023-09-14
-
13.4.20-canary.28 - 2023-09-13
-
13.4.20-canary.27 - 2023-09-13
-
13.4.20-canary.26 - 2023-09-12
-
13.4.20-canary.25 - 2023-09-12
-
13.4.20-canary.24 - 2023-09-11
-
13.4.20-canary.23 - 2023-09-08
-
13.4.20-canary.22 - 2023-09-08
-
13.4.20-canary.21 - 2023-09-07
-
13.4.20-canary.20 - 2023-09-07
-
13.4.20-canary.19 - 2023-09-07
-
13.4.20-canary.18 - 2023-09-05
-
13.4.20-canary.17 - 2023-09-05
-
13.4.20-canary.16 - 2023-09-04
-
13.4.20-canary.15 - 2023-08-31
-
13.4.20-canary.14 - 2023-08-31
-
13.4.20-canary.13 - 2023-08-31
-
13.4.20-canary.12 - 2023-08-29
-
13.4.20-canary.11 - 2023-08-28
-
13.4.20-canary.10 - 2023-08-28
-
13.4.20-canary.9 - 2023-08-25
-
13.4.20-canary.8 - 2023-08-25
-
13.4.20-canary.7 - 2023-08-25
-
13.4.20-canary.6 - 2023-08-24
-
13.4.20-canary.5 - 2023-08-24
-
13.4.20-canary.4 - 2023-08-24
-
13.4.20-canary.3 - 2023-08-23
-
13.4.20-canary.2 - 2023-08-22
-
13.4.20-canary.1 - 2023-08-21
-
13.4.20-canary.0 - 2023-08-20
-
13.4.19 - 2023-08-19
-
13.4.19-canary.0 - 2023-08-18
-
13.4.18 - 2023-08-18
-
13.4.18-canary.0 - 2023-08-17
-
13.4.17 - 2023-08-17
-
13.4.17-canary.2 - 2023-08-17
-
13.4.17-canary.1 - 2023-08-17
-
13.4.17-canary.0 - 2023-08-16
-
13.4.16 - 2023-08-15
-
13.4.16-canary.1 - 2023-08-15
-
13.4.16-canary.0 - 2023-08-14
-
13.4.15 - 2023-08-14
-
13.4.15-canary.0 - 2023-08-14
-
13.4.14-canary.5 - 2023-08-14
-
13.4.14-canary.4 - 2023-08-14
-
13.4.14-canary.2 - 2023-08-11
-
13.4.14-canary.1 - 2023-08-08
-
13.4.14-canary.0 - 2023-08-07
-
13.4.13 - 2023-08-07
-
13.4.13-canary.18 - 2023-08-07
-
13.4.13-canary.17 - 2023-08-06
-
13.4.13-canary.16 - 2023-08-05
-
13.4.13-canary.15 - 2023-08-04
-
13.4.13-canary.14 - 2023-08-04
-
13.4.13-canary.13 - 2023-08-03
-
13.4.13-canary.12 - 2023-08-02
-
13.4.13-canary.11 - 2023-08-02
-
13.4.13-canary.10 - 2023-08-02
-
13.4.13-canary.9 - 2023-08-01
-
13.4.13-canary.8 - 2023-07-31
-
13.4.13-canary.7 - 2023-07-31
-
13.4.13-canary.6 - 2023-07-28
-
13.4.13-canary.5 - 2023-07-28
-
13.4.13-canary.4 - 2023-07-27
-
13.4.13-canary.3 - 2023-07-26
-
13.4.13-canary.2 - 2023-07-25
-
13.4.13-canary.1 - 2023-07-25
-
13.4.13-canary.0 - 2023-07-24
-
13.4.12 - 2023-07-21
-
13.4.12-canary.0 - 2023-07-21
-
13.4.11 - 2023-07-21
-
13.4.11-canary.2 - 2023-07-21
-
13.4.11-canary.1 - 2023-07-20
-
13.4.11-canary.0 - 2023-07-18
-
13.4.10 - 2023-07-14
-
13.4.10-canary.8 - 2023-07-14
-
13.4.10-canary.7 - 2023-07-13
-
13.4.10-canary.6 - 2023-07-13
-
13.4.10-canary.5 - 2023-07-12
-
13.4.10-canary.4 - 2023-07-12
-
13.4.10-canary.3 - 2023-07-10
-
13.4.10-canary.2 - 2023-07-10
-
13.4.10-canary.1 - 2023-07-10
-
13.4.10-canary.0 - 2023-07-07
-
13.4.9 - 2023-07-06
-
13.4.9-canary.3 - 2023-07-06
-
13.4.9-canary.2 - 2023-07-05
-
13.4.9-canary.1 - 2023-07-04
-
13.4.9-canary.0 - 2023-07-04
-
13.4.8 - 2023-07-03
-
13.4.8-canary.15 - 2023-07-03
-
13.4.8-canary.14 - 2023-06-30
-
13.4.8-canary.13 - 2023-06-30
-
13.4.8-canary.12 - 2023-06-29
-
13.4.8-canary.11 - 2023-06-29
-
13.4.8-canary.10 - 2023-06-29
-
13.4.8-canary.9 - 2023-06-29
-
13.4.8-canary.8 - 2023-06-28
-
13.4.8-canary.7 - 2023-06-27
-
13.4.8-canary.6 - 2023-06-27
-
13.4.8-canary.5 - 2023-06-26
-
13.4.8-canary.4 - 2023-06-26
-
13.4.8-canary.3 - 2023-06-26
-
13.4.8-canary.2 - 2023-06-24
-
13.4.8-canary.1 - 2023-06-22
-
13.4.8-canary.0 - 2023-06-22
-
13.4.7 - 2023-06-21
-
13.4.7-canary.4 - 2023-06-21
-
13.4.7-canary.3 - 2023-06-21
-
13.4.7-canary.2 - 2023-06-20
-
13.4.7-canary.1 - 2023-06-16
-
13.4.7-canary.0 - 2023-06-16
-
13.4.6 - 2023-06-15
-
13.4.6-canary.8 - 2023-06-15
-
13.4.6-canary.7 - 2023-06-15
-
13.4.6-canary.6 - 2023-06-15
-
13.4.6-canary.5 - 2023-06-14
-
13.4.6-canary.4 - 2023-06-14
-
13.4.6-canary.3 - 2023-06-14
-
13.4.6-canary.2 - 2023-06-13
-
13.4.6-canary.0 - 2023-06-12
-
13.4.5 - 2023-06-10
-
13.4.5-canary.12 - 2023-06-10
-
13.4.5-canary.11 - 2023-06-10
-
13.4.5-canary.10 - 2023-06-10
-
13.4.5-canary.9 - 2023-06-09
-
13.4.5-canary.8 - 2023-06-08
-
13.4.5-canary.7 - 2023-06-07
-
13.4.5-canary.6 - 2023-06-05
-
13.4.5-canary.5 - 2023-06-05
-
13.4.5-canary.4 - 2023-06-02
-
13.4.5-canary.3 - 2023-06-01
-
13.4.5-canary.2 - 2023-05-30
-
13.4.5-canary.1 - 2023-05-30
-
13.4.5-canary.0 - 2023-05-26
-
13.4.4 - 2023-05-25
-
13.4.4-canary.13 - 2023-05-25
-
13.4.4-canary.12 - 2023-05-25
-
13.4.4-canary.11 - 2023-05-25
-
13.4.4-canary.10 - 2023-05-25
-
13.4.4-canary.9 - 2023-05-24
-
13.4.4-canary.8 - 2023-05-24
-
13.4.4-canary.7 - 2023-05-24
-
13.4.4-canary.6 - 2023-05-23
-
13.4.4-canary.5 - 2023-05-23
-
13.4.4-canary.4 - 2023-05-23
-
13.4.4-canary.3 - 2023-05-23
-
13.4.4-canary.2 - 2023-05-23
-
13.4.4-canary.1 - 2023-05-22
-
13.4.4-canary.0 - 2023-05-19
-
13.4.3 - 2023-05-19
-
13.4.3-canary.3 - 2023-05-19
-
13.4.3-canary.2 - 2023-05-17
-
13.4.3-canary.1 - 2023-05-16
-
13.4.3-canary.0 - 2023-05-12
-
13.4.2 - 2023-05-11
-
13.4.2-canary.6 - 2023-05-11
-
13.4.2-canary.5 - 2023-05-11
-
13.4.2-canary.4 - 2023-05-10
-
13.4.2-canary.3 - 2023-05-09
-
13.4.2-canary.2 - 2023-05-08
-
13.4.2-canary.1 - 2023-05-08
-
13.4.2-canary.0 - 2023-05-08
-
13.4.1 - 2023-05-05
-
13.4.1-canary.2 - 2023-05-05
-
13.4.1-canary.1 - 2023-05-04
-
13.4.1-canary.0 - 2023-05-04
-
13.4.0 - 2023-05-04
-
13.3.5-canary.12 - 2023-05-04
-
13.3.5-canary.11 - 2023-05-04
-
13.3.5-canary.10 - 2023-05-04
-
13.3.5-canary.9 - 2023-05-04
-
13.3.5-canary.8 - 2023-05-04
-
13.3.5-canary.7 - 2023-05-03
-
13.3.5-canary.6 - 2023-05-03
-
13.3.5-canary.5 - 2023-05-03
-
13.3.5-canary.4 - 2023-05-03
-
13.3.5-canary.3 - 2023-05-02
-
13.3.5-canary.2 - 2023-05-02
-
13.3.5-canary.1 - 2023-05-01
-
13.3.5-canary.0 - 2023-05-01
-
13.3.4 - 2023-05-01
-
13.3.4-canary.0 - 2023-05-01
-
13.3.3 - 2023-05-01
-
13.3.3-canary.2 - 2023-05-01
-
13.3.3-canary.1 - 2023-04-30
-
13.3.3-canary.0 - 2023-04-30
-
13.3.2 - 2023-04-29
-
13.3.2-canary.14 - 2023-04-29
-
13.3.2-canary.13 - 2023-04-29
-
13.3.2-canary.12 - 2023-04-28
-
13.3.2-canary.11 - 2023-04-27
-
13.3.2-canary.10 - 2023-04-27
-
13.3.2-canary.9 - 2023-04-27
-
13.3.2-canary.8 - 2023-04-27
-
13.3.2-canary.7 - 2023-04-26
-
13.3.2-canary.6 - 2023-04-25
-
13.3.2-canary.5 - 2023-04-25
-
13.3.2-canary.4 - 2023-04-24
-
13.3.2-canary.3 - 2023-04-24
-
13.3.2-canary.2 - 2023-04-24
-
13.3.1 - 2023-04-21
-
13.3.1-canary.19 - 2023-04-21
-
13.3.1-canary.18 - 2023-04-21
-
13.3.1-canary.17 - 2023-04-20
-
13.3.1-canary.16 - 2023-04-19
-
13.3.1-canary.15 - 2023-04-19
-
13.3.1-canary.14 - 2023-04-18
-
13.3.1-canary.13 - 2023-04-18
-
13.3.1-canary.12 - 2023-04-18
-
13.3.1-canary.11 - 2023-04-17
-
13.3.1-canary.10 - 2023-04-17
-
13.3.1-canary.9 - 2023-04-17
-
13.3.1-canary.8 - 2023-04-15
-
13.3.1-canary.7 - 2023-04-14
-
13.3.1-canary.6 - 2023-04-13
-
13.3.1-canary.5 - 2023-04-12
-
13.3.1-canary.4 - 2023-04-10
-
13.3.1-canary.3 - 2023-04-08
-
13.3.1-canary.2 - 2023-04-07
-
13.3.1-canary.1 - 2023-04-07
-
13.3.1-canary.0 - 2023-04-07
-
13.3.0 - 2023-04-06
-
13.2.5-canary.34 - 2023-04-06
-
13.2.5-canary.33 - 2023-04-06
-
13.2.5-canary.32 - 2023-04-06
-
13.2.5-canary.31 - 2023-04-05
-
13.2.5-canary.30 - 2023-04-04
-
13.2.5-canary.29 - 2023-04-04
-
13.2.5-canary.28 - 2023-04-03
-
13.2.5-canary.27 - 2023-04-02
-
13.2.5-canary.26 - 2023-04-02
-
13.2.5-canary.25 - 2023-04-01
-
13.2.5-canary.24 - 2023-03-31
-
13.2.5-canary.23 - 2023-03-31
-
13.2.5-canary.22 - 2023-03-31
-
13.2.5-canary.21 - 2023-03-30
-
13.2.5-canary.20 - 2023-03-28
-
13.2.5-canary.19 - 2023-03-27
-
13.2.5-canary.18 - 2023-03-25
-
13.2.5-canary.17 - 2023-03-25
-
13.2.5-canary.16 - 2023-03-24
-
13.2.5-canary.15 - 2023-03-23
-
13.2.5-canary.14 - 2023-03-23
-
13.2.5-canary.13 - 2023-03-22
-
13.2.5-canary.12 - 2023-03-21
-
13.2.5-canary.10 - 2023-03-21
-
13.2.5-canary.9 - 2023-03-20
-
13.2.5-canary.8 - 2023-03-17
-
13.2.5-canary.7 - 2023-03-17
-
13.2.5-canary.6 - 2023-03-17
-
13.2.5-canary.5 - 2023-03-16
-
13.2.5-canary.4 - 2023-03-15
-
13.2.5-canary.3 - 2023-03-14
-
13.2.5-canary.2 - 2023-03-13
-
13.2.5-canary.1 - 2023-03-11
-
13.2.5-canary.0 - 2023-03-10
-
13.2.4 - 2023-03-10
-
13.2.4-canary.9 - 2023-03-09
-
13.2.4-canary.8 - 2023-03-09
-
13.2.4-canary.7 - 2023-03-08
-
13.2.4-canary.6 - 2023-03-07
-
13.2.4-canary.5 - 2023-03-07
-
13.2.4-canary.4 - 2023-03-05
-
13.2.4-canary.3 - 2023-03-04
-
13.2.4-canary.2 - 2023-03-04
-
13.2.4-canary.1 - 2023-03-03
-
13.2.4-canary.0 - 2023-03-02
-
13.2.3 - 2023-03-01
-
13.2.3-canary.1 - 2023-03-01
-
13.2.3-canary.0 - 2023-03-01
-
13.2.2 - 2023-03-01
-
13.2.2-canary.5 - 2023-03-01
-
13.2.2-canary.4 - 2023-02-28
-
13.2.2-canary.3 - 2023-02-28
-
13.2.2-canary.2 - 2023-02-28
-
13.2.2-canary.1 - 2023-02-25
-
13.2.2-canary.0 - 2023-02-25
-
13.2.1 - 2023-02-24
-
13.2.1-canary.0 - 2023-02-24
-
13.2.0 - 2023-02-23
-
13.1.7-canary.32 - 2023-02-23
-
13.1.7-canary.30 - 2023-02-23
-
13.1.7-canary.29 - 2023-02-23
-
13.1.7-canary.28 - 2023-02-23
-
13.1.7-canary.27 - 2023-02-22
-
13.1.7-canary.26 - 2023-02-22
-
13.1.7-canary.25 - 2023-02-22
-
13.1.7-canary.24 - 2023-02-22
-
13.1.7-canary.23 - 2023-02-22
-
13.1.7-canary.22 - 2023-02-21
-
13.1.7-canary.21 - 2023-02-18
-
13.1.7-canary.20 - 2023-02-18
-
13.1.7-canary.19 - 2023-02-18
-
13.1.7-canary.18 - 2023-02-17
-
13.1.7-canary.17 - 2023-02-17
-
13.1.7-canary.16 - 2023-02-16
-
13.1.7-canary.15 - 2023-02-15
-
13.1.7-canary.14 - 2023-02-15
-
13.1.7-canary.13 - 2023-02-14
-
13.1.7-canary.12 - 2023-02-14
-
13.1.7-canary.11 - 2023-02-13
-
13.1.7-canary.10 - 2023-02-11
-
13.1.7-canary.9 - 2023-02-11
-
13.1.7-canary.8 - 2023-02-09
-
13.1.7-canary.7 - 2023-02-07
-
13.1.7-canary.6 - 2023-02-06
-
13.1.7-canary.5 - 2023-02-04
-
13.1.7-canary.4 - 2023-02-02
-
13.1.7-canary.3 - 2023-02-02
-
13.1.7-canary.2 - 2023-02-01
-
13.1.7-canary.1 - 2023-01-31
-
13.1.7-canary.0 - 2023-01-31
-
13.1.6 - 2023-01-28
from eslint-config-next GitHub release notesNote
This release is backporting bug fixes. It does not include all pending features/changes on canary.
Core Changes
Note
This release is backporting bug fixes. It does not include all pending features/changes on canary.
Core Changes
Important
Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.
For more information: