-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Pinning docs to Nextra 3.X #15291
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
Pinning docs to Nextra 3.X #15291
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 3 Skipped Deployments
|
|
Important Review skippedReview was skipped due to path filters ⛔ Files ignored due to path filters (1)
CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including You can disable this status message by setting the WalkthroughThe pull request introduces two minor changes: updating the version specifications for Nextra dependencies in the Changes
Poem
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
CodeRabbit Configuration File (
|
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: 0
🧹 Nitpick comments (1)
docs-v2/package.json (1)
27-28: LGTM! Good practice to pin major versions.The change from "latest" to "^3" is a good practice as it prevents unexpected breaking changes while still allowing minor and patch updates within version 3.
Consider using exact versions (e.g., "3.0.0") instead of the caret range for even better reproducibility. This would ensure all environments use the exact same version.
- "nextra": "^3", - "nextra-theme-docs": "^3", + "nextra": "3.0.0", + "nextra-theme-docs": "3.0.0",
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
pnpm-lock.yamlis excluded by!**/pnpm-lock.yaml
📒 Files selected for processing (2)
docs-v2/package.json(1 hunks)scripts/.gitignore(1 hunks)
✅ Files skipped from review due to trivial changes (1)
- scripts/.gitignore
⏰ Context from checks skipped due to timeout of 90000ms (2)
- GitHub Check: pnpm publish
- GitHub Check: Lint Code Base
🔇 Additional comments (1)
docs-v2/package.json (1)
27-28: Verify compatibility with Next.js.Let's verify that Nextra 3.x is compatible with Next.js 14.2.5 and check for any known issues.
✅ Verification successful
Nextra 3.x is compatible with Next.js 14.2.5
The specified version range
^3for bothnextraandnextra-theme-docsis compatible with Next.js 14.2.5, as Nextra 3.x requires Next.js >=13. No critical version compatibility issues were found.🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Check Nextra's package.json for peer dependencies and known issues # Check Nextra's package.json for peer dependencies curl -s https://registry.npmjs.org/nextra/3.0.0 | jq '.peerDependencies' # Check for recent issues related to Next.js compatibility gh api graphql -f query=' { search(query: "repo:shuding/nextra is:issue state:open next.js", type: ISSUE, first: 5) { nodes { ... on Issue { title url createdAt } } } }'Length of output: 1087
Summary by CodeRabbit
Dependency Updates
nextraandnextra-theme-docsdependencies to version 3.xConfiguration
.envto.gitignoreto exclude environment files from version control