-
-
Notifications
You must be signed in to change notification settings - Fork 864
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
DEPRECATION: Replace or update packages relying on punycode #2862 #2871
DEPRECATION: Replace or update packages relying on punycode #2862 #2871
Conversation
WalkthroughThe pull request focuses on updating the Changes
Possibly related issues
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: .coderabbit.yaml ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (3)
💤 Files with no reviewable changes (1)
✅ Files skipped from review due to trivial changes (1)
🚧 Files skipped from review as they are similar to previous changes (1)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
Our Pull Request Approval ProcessThanks for contributing! Testing Your CodeRemember, your PRs won't be reviewed until these criteria are met:
Our policies make our code better. ReviewersDo not assign reviewers. Our Queue Monitors will review your PR and assign them.
Reviewing Your CodeYour reviewer(s) will have the following roles:
CONTRIBUTING.mdRead our CONTRIBUTING.md file. Most importantly:
Other
|
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.
Actionable comments posted: 1
🔭 Outside diff range comments (1)
package.json (1)
Line range hint
173-177
: Fix lint-staged file pattern syntaxThe file patterns in lint-staged configuration have incorrect spacing which could cause the hooks to fail. Remove spaces after commas in the file extensions.
Apply this diff to fix the syntax:
"lint-staged": { - "**/*.{ts, tsx, json, scss, css}": [ + "**/*.{ts,tsx,json,scss,css}": [ "prettier --write" ], - "**/*.{ts, tsx, json}": "eslint --fix" + "**/*.{ts,tsx,json}": "eslint --fix" }
📜 Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
package-lock.json
is excluded by!**/package-lock.json
📒 Files selected for processing (1)
package.json
(4 hunks)
🔇 Additional comments (3)
package.json (3)
154-154
: Verify jest-preview version downgrade
The downgrade of jest-preview from 0.3.1 to 0.2.3 seems unintentional. This could potentially reintroduce fixed bugs or remove needed features.
178-180
: LGTM: Punycode override addresses deprecation
The addition of the punycode override to version 2.3.0 effectively addresses the deprecation warning mentioned in issue #2862. This ensures all nested dependencies use a stable version of punycode.
142-142
: Review breaking changes in eslint v9
The major version bump of eslint (8.49.0 -> 9.17.0) may introduce breaking changes. Please ensure:
- All existing eslint rules are compatible
- CI pipeline passes with the new version
- Development team is aware of any rule changes
Please fix the failing tests |
Please fix the conflicting file |
You don't have to close the PR when there is a conflicting file.
|
What kind of change does this PR introduce?
This PR will Replace or update packages relying on punycode #2862
Issue Number:
#2862
Did you update for packages?
Yes
Summary by CodeRabbit
New Features
Updates
Configuration Changes