-
-
Notifications
You must be signed in to change notification settings - Fork 17
merge dev to main (v3.0.0-beta.33) #517
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
) * fix(orm): operator "!" should only be applicable to boolean fields fixes #510 * address PR comments
Co-authored-by: ymc9 <[email protected]>
* chore: minor typing and export updates to ORM and SDK * update
|
Warning Rate limit exceeded@ymc9 has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 6 minutes and 27 seconds before requesting another review. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (35)
✨ Finishing touches
🧪 Generate unit tests (beta)
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. Comment |
|
Claude finished @ymc9's task —— View job Pull Request Review - v3.0.0-beta.33Tasks:
Review SummaryThis PR merges dev → main for the beta.33 release. The changes look good overall with mostly version bumps and a few key functional improvements. Key Changes Analysis✅ Expression Validator Enhancement (
|
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.
Pull request overview
This PR merges the dev branch to main, bumping the version from 3.0.0-beta.32 to 3.0.0-beta.33. The changes include version updates across all packages, a Next.js dependency update, new SDK exports for AST utilities, improved error handling in the ORM layer, a fix for UnaryExpr validation in the language package, and minor test corrections.
Key Changes:
- Version bump to 3.0.0-beta.33 across all packages
- Next.js updated from 16.0.7 to 16.0.10 in the workspace catalog
- Added new AST export entry point in SDK package for easier access to language AST types
- Improved ORM error handling with centralized query execution error wrapping
- Fixed UnaryExpr validation to ensure boolean type checking with corresponding regression test
Reviewed changes
Copilot reviewed 33 out of 35 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| package.json (root + 18 packages) | Version bumped to 3.0.0-beta.33 |
| pnpm-workspace.yaml | Next.js catalog version updated to 16.0.10 |
| samples/next.js/package.json | Changed next dependency to use catalog version |
| pnpm-lock.yaml | Updated lockfile with Next.js 16.0.10 package resolutions |
| packages/sdk/tsup.config.ts | Added ast entry point to build configuration |
| packages/sdk/src/ast.ts | New file re-exporting from @zenstackhq/language/ast |
| packages/sdk/package.json | Added ./ast export path configuration |
| packages/orm/src/client/plugin.ts | Added @Private annotation to functions field |
| packages/orm/src/client/options.ts | Added @Private annotation to functions field |
| packages/orm/src/client/executor/zenstack-query-executor.ts | Refactored to use centralized internalExecuteQuery for error handling |
| packages/language/src/validators/expression-validator.ts | Added UnaryExpr validation for boolean type enforcement |
| tests/regression/test/issue-510.test.ts | New regression test for UnaryExpr boolean type validation |
| tests/regression/test/issue-505.test.ts | Fixed description text from "issues 505" to "issue 505" |
| tests/regression/test/issue-503/regression.test.ts | Fixed description text from "issues #503" to "issue #503" |
| .gitignore | Added *.vsix pattern to ignore VS Code extension packages |
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
* fix(cli): use correct yarn command to install packages * Update packages/cli/src/actions/init.ts Co-authored-by: Copilot <[email protected]> --------- Co-authored-by: Copilot <[email protected]>
|
Claude finished @ymc9's task —— View job Pull Request Review - v3.0.0-beta.33Tasks:
Review SummaryThis PR merges dev → main for the beta.33 release. The changes look good overall with mostly version bumps and a few key functional improvements. Key Changes Analysis✅ Expression Validator Enhancement (
|
No description provided.