-
Notifications
You must be signed in to change notification settings - Fork 1
Release 0.0.109 #383
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
Release 0.0.109 #383
Conversation
|
Note Reviews pausedUse the following commands to manage reviews:
📝 WalkthroughWalkthroughThis pull request updates the version number from 0.0.108 to 0.0.109 across all package.json files in the monorepo, including the root package and all individual app and package manifests. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Pre-merge checks and finishing touches✅ Passed checks (1 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
Comment |
|
@coderabbitai pause |
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)
packages/evals/package.json (1)
32-32: Consider pinning dependency versions for reproducible builds.Using
"latest"for dependencies can lead to non-deterministic builds and unexpected breaking changes. While this is more critical for runtime dependencies like@ai-sdk/groq(line 32), it also applies to dev dependencies (lines 37-38).Consider pinning to specific versions or using range specifiers like
^to ensure build reproducibility.Also applies to: 37-38
packages/runtime/package.json (1)
54-54: Consider pinning dev dependency versions.Using
"latest"for dev dependencies (lines 54, 58) can lead to non-deterministic builds. While less critical than runtime dependencies, pinning versions improves build reproducibility.Also applies to: 58-58
📜 Review details
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (2)
apps/testing/e2e-web/src/generated/app.tsis excluded by!**/generated/**bun.lockis excluded by!**/*.lock
📒 Files selected for processing (15)
apps/create-agentuity/package.jsonapps/testing/package.jsonpackage.jsonpackages/auth/package.jsonpackages/cli/package.jsonpackages/core/package.jsonpackages/evals/package.jsonpackages/frontend/package.jsonpackages/react/package.jsonpackages/runtime/package.jsonpackages/schema/package.jsonpackages/server/package.jsonpackages/test-utils/package.jsonpackages/vscode/package.jsonpackages/workbench/package.json
🧰 Additional context used
📓 Path-based instructions (4)
**/*.{ts,tsx,js,jsx,json}
📄 CodeRabbit inference engine (AGENTS.md)
Use Prettier for code formatting with tabs (width 3), single quotes, and semicolons
Files:
packages/frontend/package.jsonpackages/server/package.jsonpackage.jsonapps/create-agentuity/package.jsonpackages/schema/package.jsonpackages/react/package.jsonpackages/evals/package.jsonpackages/test-utils/package.jsonpackages/auth/package.jsonpackages/cli/package.jsonpackages/workbench/package.jsonpackages/runtime/package.jsonpackages/core/package.jsonpackages/vscode/package.jsonapps/testing/package.json
packages/react/**/package.json
📄 CodeRabbit inference engine (packages/react/AGENTS.md)
Peer dependencies must include React 18+ or 19+
Files:
packages/react/package.json
packages/test-utils/**/package.json
📄 CodeRabbit inference engine (packages/test-utils/AGENTS.md)
packages/test-utils/**/package.json: Ensure"private": trueis set in package.json to prevent accidental npm publishing
List devDependencies with"@agentuity/test-utils": "workspace:*"format for workspace imports
Use only @agentuity/core and bun-types as dependencies to minimize dependency footprint
Files:
packages/test-utils/package.json
packages/core/**/package.json
📄 CodeRabbit inference engine (packages/core/AGENTS.md)
No runtime dependencies - keep this package lean with zero external dependencies
Files:
packages/core/package.json
🔇 Additional comments (18)
packages/schema/package.json (1)
3-3: LGTM! Version bump looks good.The version increment to 0.0.109 is consistent with the release objective.
packages/test-utils/package.json (1)
3-3: LGTM! Version bump and package configuration are correct.The version increment to 0.0.109 is appropriate. The package correctly maintains
"private": true(line 5), usesworkspace:*format for internal dependencies (line 14), and adheres to the minimal dependency footprint guideline with only@agentuity/coreandbun-types.packages/frontend/package.json (1)
3-3: LGTM! Version bump is consistent.The version update to 0.0.109 aligns with the repository-wide release.
packages/workbench/package.json (1)
3-3: LGTM! Version bump is correct.The version update to 0.0.109 is consistent with the monorepo-wide release.
package.json (1)
3-3: LGTM! Root version bump is consistent.The monorepo root version update to 0.0.109 correctly matches all package versions in the workspace.
apps/create-agentuity/package.json (1)
3-3: Version bump looks good.Clean version update from 0.0.108 to 0.0.109 with no other changes.
apps/testing/package.json (1)
3-3: Version bump looks good.Straightforward version update to 0.0.109 aligned with the release.
packages/auth/package.json (1)
3-3: Version bump looks good.Version incremented to 0.0.109 with no changes to dependencies, exports, or configuration.
packages/server/package.json (1)
3-3: LGTM - Version bump is correct.The version update from 0.0.108 to 0.0.109 is consistent with the release objective.
packages/cli/package.json (1)
3-3: LGTM - Version bump is correct.The version update aligns with the release objective.
packages/core/package.json (2)
3-3: LGTM - Version bump is correct.The version update is consistent with the release objective.
31-32: Verify runtime dependency compliance with coding guidelines.The coding guidelines specify that
packages/core/**/package.jsonshould have "No runtime dependencies - keep this package lean with zero external dependencies." However,zodis listed as a runtime dependency.Please confirm whether this is an intentional exception or if the guideline needs updating.
As per coding guidelines, the core package should maintain zero external dependencies.
packages/vscode/package.json (1)
5-5: LGTM - Version bump is correct.The version update is consistent with the release objective.
packages/react/package.json (2)
3-3: LGTM - Version bump is correct.The version update aligns with the release objective.
39-41: Verify React peer dependency range against coding guidelines.The coding guidelines specify that peer dependencies "must include React 18+ or 19+." The current configuration specifies
^19.0.0, which only supports React 19 and above, excluding React 18.Consider whether the peer dependency should be broadened to support both React 18 and 19, for example:
"react": "^18.0.0 || ^19.0.0".As per coding guidelines, the React package should support React 18+ or 19+.
packages/evals/package.json (1)
3-3: LGTM: Version bump is consistent with the release.The version update to 0.0.109 aligns correctly with the PR objective and maintains consistency across the monorepo.
packages/runtime/package.json (2)
3-3: LGTM: Version bump is consistent with the release.The version update to 0.0.109 aligns correctly with the PR objective and maintains consistency across the monorepo.
50-50: Zod version 4.1.12 is valid and is the latest stable version.The specified version exists and is stable as of January 2026.
✅ Actions performedReviews paused. |
@coderabbitai pause
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.