-
-
Notifications
You must be signed in to change notification settings - Fork 117
chore: bump version #2203
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
chore: bump version #2203
Conversation
📝 WalkthroughWalkthroughThe changes update a README example to match the latest Next.js app directory routing and handler conventions, including revised import paths, handler exports, and usage of request types. Separately, the JetBrains IDE plugin's Gradle build script version was incremented from 2.17.1 to 2.17.2, with no other modifications. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~7 minutes Note ⚡️ Unit Test Generation is now available in beta!Learn more here, or try it out under "Finishing Touches" below. ✨ Finishing Touches
🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. 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)
README.md (1)
110-112
: Consider adding HEAD/OPTIONS to the re-export listApp-router automatically sends
HEAD
and sometimesOPTIONS
pre-flight requests. Re-exporting them prevents a 405 for those verbs:-export { handler as GET, handler as POST, handler as PUT, handler as PATCH, handler as DELETE }; +export { + handler as GET, + handler as POST, + handler as PUT, + handler as PATCH, + handler as DELETE, + handler as HEAD, + handler as OPTIONS +};
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (13)
package.json
is excluded by!**/*.json
packages/ide/jetbrains/package.json
is excluded by!**/*.json
packages/language/package.json
is excluded by!**/*.json
packages/misc/redwood/package.json
is excluded by!**/*.json
packages/plugins/openapi/package.json
is excluded by!**/*.json
packages/plugins/swr/package.json
is excluded by!**/*.json
packages/plugins/tanstack-query/package.json
is excluded by!**/*.json
packages/plugins/trpc/package.json
is excluded by!**/*.json
packages/runtime/package.json
is excluded by!**/*.json
packages/schema/package.json
is excluded by!**/*.json
packages/sdk/package.json
is excluded by!**/*.json
packages/server/package.json
is excluded by!**/*.json
packages/testtools/package.json
is excluded by!**/*.json
📒 Files selected for processing (2)
README.md
(1 hunks)packages/ide/jetbrains/build.gradle.kts
(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (6)
- GitHub Check: build-test (20.x)
- GitHub Check: Analyze (javascript-typescript)
- GitHub Check: build-test (20.x)
- GitHub Check: build-test (20.x)
- GitHub Check: OSSAR-Scan
- GitHub Check: dependency-review
🔇 Additional comments (2)
packages/ide/jetbrains/build.gradle.kts (1)
11-13
: Version bump looks goodNo functional or configuration changes accompany the patch-level upgrade from
2.17.1
→2.17.2
; nothing else to flag.README.md (1)
95-96
: Double-check exported symbol name from@zenstackhq/server/next
The snippet imports
NextRequestHandler
. If the package actually exports a different factory (e.g.createNextRequestHandler
,routeHandler
, etc.) the example will break. Please grep the package or docs to confirm the identifier.
No description provided.