-
-
Notifications
You must be signed in to change notification settings - Fork 2
Fix deps to allow newer versions #16
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
🦋 Changeset detectedLatest commit: fdf08c1 The changes in this PR will be included in the next version bump. This PR includes changesets to release 3 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
WalkthroughThis update modifies dependency version constraints in the workspace configuration and a changeset file. The changes include bumping patch versions for several packages such as Changes
Possibly related PRs
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:
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)
.changeset/light-carrots-taste.md (1)
6-7: Improve changeset summary clarity
The summary is concise but could list the specific packages and new patch versions to make the change more transparent for future readers.
📜 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)
.changeset/light-carrots-taste.md(1 hunks)pnpm-workspace.yaml(1 hunks)
🔇 Additional comments (3)
pnpm-workspace.yaml (2)
17-20: Review minimal catalog version constraints
Thestudiocmsrange>=0.1.0-beta.14may unintentionally allow versions older than the intended patch level, and theviteversion was downgraded from^6.2.6to^6.2.5. Confirm that this aligns with the minimal testing strategy.
2-11:Details
✅ Verification successful
Approve patch-level dependency version bumps in catalog
These updates align with the PR’s objective to allow newer versions. Please verify that the specified versions are published and compatible.
🏁 Script executed:
#!/usr/bin/env bash # Verify that updated versions exist on npm packages=( "@astrojs/[email protected]" "@astrojs/[email protected]" "@studiocms/[email protected]" "@studiocms/[email protected]" "[email protected]" "[email protected]" ) for pkg in "${packages[@]}"; do npm view "$pkg" version || echo "Missing version: $pkg" doneLength of output: 658
🏁 Script executed:
#!/usr/bin/env bash # Verify that the remaining versions exist on npm packages=( "@astrojs/[email protected]" "@types/[email protected]" "[email protected]" "[email protected]" ) for pkg in "${packages[@]}"; do npm view "$pkg" version || echo "Missing version: $pkg" doneLength of output: 407
Approve patch-level dependency updates in pnpm-workspace.yaml
All specified versions have been verified on npm and are available as patch-level releases. These updates can be merged.• File: pnpm-workspace.yaml (lines 2–11)
• Verified versions:
- @astrojs/[email protected]
- @astrojs/[email protected]
- @astrojs/[email protected]
- @studiocms/[email protected]
- @studiocms/[email protected]
- @types/[email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
.changeset/light-carrots-taste.md (1)
1-4: Changeset version metadata looks correct
Patch bumps for@studiocms/socialposterand@studiocms/wysiwygare specified. Ensure these correspond to the actual package.json version increments.
Description
Summary by CodeRabbit