-
-
Couldn't load subscription status.
- Fork 126
chore: release 2.17.1 for Prisma 6.12 #2197
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
Conversation
📝 WalkthroughWalkthroughThis change increments the JetBrains IDE package version from 2.17.0 to 2.17.1 and updates the Changes
Possibly related PRs
✨ Finishing Touches
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 (2)
script/test-scaffold.ts (1)
22-22: Consider pinning the exact Prisma patch version to keep test scaffolds reproducibleUsing the semver pattern
6.12.xlets NPM resolve to whatever the latest6.12.*is at install-time. A new patch release could unexpectedly break CI or mask regressions that haven’t been caught yet. For deterministic scaffolds (and easier bisecting) it’s usually safer to lock to the current patch, e.g.6.12.1, and bump intentionally when you’re ready:-run('npm i --no-audit --no-fund typescript prisma@6.12.x @prisma/client@6.12.x zod@^3.22.4 decimal.js @types/node'); +run('npm i --no-audit --no-fund typescript prisma@6.12.1 @prisma/client@6.12.1 zod@^3.22.4 decimal.js @types/node');If you rely on floating patches, please confirm the build pipeline will still cache the resolved versions or that breakages are acceptable.
tests/integration/tests/cli/plugins.test.ts (1)
78-79: Lock Prisma client & CLI to the same fixed patch for consistent test runsGreat to see runtime and dev dependencies kept in sync. Similar to the scaffold script, using
6.12.xcan introduce non-determinism into integration tests as soon as a new patch ships. Suggest locking both packages to the current patch (e.g.6.12.1) or pipingnpm cithrough a lock-file committed to VCS.Also applies to: 88-89
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (20)
package.jsonis excluded by!**/*.jsonpackages/ide/jetbrains/package.jsonis excluded by!**/*.jsonpackages/language/package.jsonis excluded by!**/*.jsonpackages/misc/redwood/package.jsonis excluded by!**/*.jsonpackages/plugins/openapi/package.jsonis excluded by!**/*.jsonpackages/plugins/swr/package.jsonis excluded by!**/*.jsonpackages/plugins/tanstack-query/package.jsonis excluded by!**/*.jsonpackages/plugins/trpc/package.jsonis excluded by!**/*.jsonpackages/plugins/trpc/tests/projects/nuxt-trpc-v10/package.jsonis excluded by!**/*.jsonpackages/plugins/trpc/tests/projects/nuxt-trpc-v11/package.jsonis excluded by!**/*.jsonpackages/plugins/trpc/tests/projects/t3-trpc-v11/package.jsonis excluded by!**/*.jsonpackages/runtime/package.jsonis excluded by!**/*.jsonpackages/schema/package.jsonis excluded by!**/*.jsonpackages/sdk/package.jsonis excluded by!**/*.jsonpackages/server/package.jsonis excluded by!**/*.jsonpackages/testtools/package.jsonis excluded by!**/*.jsonpnpm-lock.yamlis excluded by!**/pnpm-lock.yaml,!**/*.yamltests/integration/test-run/package.jsonis excluded by!**/*.jsontests/integration/tests/frameworks/nextjs/test-project/package.jsonis excluded by!**/*.jsontests/integration/tests/frameworks/trpc/test-project/package.jsonis excluded by!**/*.json
📒 Files selected for processing (3)
packages/ide/jetbrains/build.gradle.kts(1 hunks)script/test-scaffold.ts(1 hunks)tests/integration/tests/cli/plugins.test.ts(2 hunks)
🧰 Additional context used
🧬 Code Graph Analysis (1)
script/test-scaffold.ts (1)
packages/testtools/src/schema.ts (1)
run(45-67)
⏰ 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). (2)
- GitHub Check: dependency-review
- GitHub Check: OSSAR-Scan
🔇 Additional comments (1)
packages/ide/jetbrains/build.gradle.kts (1)
11-13: Version bump looks goodNo other build-script changes are needed for this minor release.
No description provided.