Conversation
📦 Draft Release CreatedA draft release v3.0.10 has been created for this PR. Next Steps
|
There was a problem hiding this comment.
Pull request overview
This PR changes the package version from 3.1.0 to 3.0.10, which represents a version downgrade. The PR description indicates this is "correctly setting the package version," but the changes violate semantic versioning principles and include unexplained modifications to the package-lock.json file.
Changes:
- Version downgraded from 3.1.0 to 3.0.10 in package.json
- Corresponding version change in package-lock.json
- Addition of "peer": true flags to multiple dependencies in package-lock.json
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Version changed from 3.1.0 to 3.0.10 (a downgrade) |
| package-lock.json | Version downgraded and multiple peer dependency flags added |
| { | ||
| "name": "azure-devops-work-item-link-enforcer-and-linker", | ||
| "version": "3.1.0", | ||
| "version": "3.0.10", |
There was a problem hiding this comment.
This version change represents a downgrade from 3.1.0 to 3.0.10, which violates semantic versioning principles. According to semantic versioning, versions should always move forward (e.g., 3.1.0 → 3.1.1 or 3.2.0), never backward. If this is intended to be a patch release on the 3.0.x line, it should have been branched from the 3.0.x codebase, not from 3.1.0. If this is meant to be a new release after 3.1.0, it should be 3.1.1 or higher.
📦 Draft Release CreatedA draft release v3.0.10 has been created for this PR. Next Steps
|
This pull request includes a small change to the
package.jsonfile, correctly setting the package version.