Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Greptile SummaryThis is an automated release PR generated by Release Please, bumping all workspace packages from Key observations:
Confidence Score: 3/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[release-please triggers] --> B[Bump all versions 0.5.9 → 0.5.10]
B --> C[Rust Workspace]
B --> D[TypeScript Packages]
C --> C1[hyperstack-macros Cargo.toml ✅]
C --> C2[hyperstack-interpreter Cargo.toml ✅]
C --> C3[hyperstack-server Cargo.toml ✅]
C --> C4[hyperstack-sdk Cargo.toml ✅]
C --> C5[hyperstack-stacks Cargo.toml ✅]
C --> C6[hyperstack + hyperstack-cli Cargo.toml ✅]
C --> C7[Cargo.lock ✅]
D --> D1[typescript/core package.json ✅]
D --> D2[typescript/core package-lock.json ✅]
D --> D3[typescript/react package.json ✅]
D --> D4[typescript/react package-lock.json ⚠️ stale dep range]
D --> D5[stacks/sdk/typescript package.json ✅]
D --> D6[stacks/sdk/typescript package-lock.json ⚠️ stale peerDep ranges]
D --> D7[packages/hyperstack package.json ✅]
Prompt To Fix All With AIThis is a comment left during a code review.
Path: stacks/sdk/typescript/package-lock.json
Line: 20-21
Comment:
**Stale peerDependencies ranges in lockfile root entry**
The root `packages[""]` entry in `package-lock.json` still records `peerDependencies` as `">=0.5.9"` for both `hyperstack-react` and `hyperstack-typescript`, but `package.json` was updated to `">=0.5.10"` in this same PR. The lockfile root entry is supposed to mirror `package.json` exactly, so they are now out of sync.
This is the same class of problem as the stale lockfile in `typescript/react/package-lock.json` — the lockfile was not regenerated (`npm install`) after bumping the ranges in `package.json`, which means `npm ci --frozen-lockfile` may fail or produce an integrity warning for this package.
```suggestion
"peerDependencies": {
"hyperstack-react": ">=0.5.10",
"hyperstack-typescript": ">=0.5.10"
```
How can I resolve this? If you propose a fix, please make it concise.Last reviewed commit: "chore: release main" |
98ea028 to
804dfd3
Compare
Contributor
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 I have created a release beep boop
hyperstack: 0.5.10
0.5.10 (2026-03-19)
Miscellaneous Chores
Dependencies
hyperstack-cli: 0.5.10
0.5.10 (2026-03-19)
Miscellaneous Chores
Dependencies
hyperstack-interpreter: 0.5.10
0.5.10 (2026-03-19)
Miscellaneous Chores
Dependencies
hyperstack-macros: 0.5.10
0.5.10 (2026-03-19)
Miscellaneous Chores
hyperstack-sdk: 0.5.10
0.5.10 (2026-03-19)
Miscellaneous Chores
hyperstack-server: 0.5.10
0.5.10 (2026-03-19)
Bug Fixes
Dependencies
hyperstack-stacks: 0.5.10
0.5.10 (2026-03-19)
Miscellaneous Chores
Dependencies
hyperstack-npm: 0.5.10
0.5.10 (2026-03-19)
Miscellaneous Chores
hyperstack-react: 0.5.10
0.5.10 (2026-03-19)
Bug Fixes
Dependencies
hyperstack-stacks: 0.5.10
0.5.10 (2026-03-19)
Miscellaneous Chores
Dependencies
hyperstack-typescript: 0.5.10
0.5.10 (2026-03-19)
Miscellaneous Chores
This PR was generated with Release Please. See documentation.