Conversation
|
Closing - version already set to 0.5.1 manually |
| { | ||
| "name": "@agi_inc/agi-js", | ||
| "version": "0.5.1", | ||
| "version": "0.4.3", |
There was a problem hiding this comment.
Version downgrade from 0.5.1 to 0.4.3 breaks semantic versioning and will cause package registry conflicts. The base branch (main) is at version 0.5.1 after commit b5a290f, but this PR attempts to publish 0.4.3. This indicates a conflict between Release Please's version tracking and manual version bumps. The .release-please-manifest.json needs to be synchronized with the actual package version before merging.
Prompt To Fix With AI
This is a comment left during a code review.
Path: package.json
Line: 3:3
Comment:
Version downgrade from 0.5.1 to 0.4.3 breaks semantic versioning and will cause package registry conflicts. The base branch (`main`) is at version 0.5.1 after commit b5a290f, but this PR attempts to publish 0.4.3. This indicates a conflict between Release Please's version tracking and manual version bumps. The `.release-please-manifest.json` needs to be synchronized with the actual package version before merging.
How can I resolve this? If you propose a fix, please make it concise.| @@ -1,3 +1,3 @@ | |||
| { | |||
| ".": "0.4.2" | |||
| ".": "0.4.3" | |||
There was a problem hiding this comment.
Manifest version 0.4.3 conflicts with current package.json version 0.5.1 on main. Update this to "0.5.1" to sync with the actual published version, then let Release Please calculate the next version based on the new feature in PR #11.
Prompt To Fix With AI
This is a comment left during a code review.
Path: .release-please-manifest.json
Line: 2:2
Comment:
Manifest version 0.4.3 conflicts with current `package.json` version 0.5.1 on `main`. Update this to "0.5.1" to sync with the actual published version, then let Release Please calculate the next version based on the new feature in PR #11.
How can I resolve this? If you propose a fix, please make it concise.
🤖 I have created a release beep boop
0.4.3 (2026-02-11)
Features
This PR was generated with Release Please. See documentation.
Greptile Overview
Greptile Summary
This automated release PR attempts to publish version 0.4.3, but the base branch is already at version 0.5.1 (from PR #13). This creates a critical version downgrade that violates semantic versioning and will cause conflicts in the npm registry.
Key Issues:
.release-please-manifest.jsonis out of sync with actualpackage.jsonversionRoot Cause: The manifest was at 0.4.2 when PR #13 manually bumped the version to 0.5.1, bypassing Release Please. Now Release Please is calculating the next version as 0.4.2 → 0.4.3, unaware of the 0.5.1 bump.
Resolution Required: Update
.release-please-manifest.jsonto "0.5.1" to sync with the current state, then let Release Please recalculate the next version (likely 0.6.0 for the new feature from PR #11). Alternatively, establish a policy to either use Release Please exclusively or manual versioning exclusively to prevent future conflicts.Confidence Score: 0/5
package.json,package-lock.json, and.release-please-manifest.jsondue to version downgrade issueImportant Files Changed