Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/jenkins-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"dependencies": {
"@backstage/plugin-catalog-common": "workspace:^",
"@backstage/plugin-permission-common": "workspace:^"
"@backstage/plugin-permission-common": "0.1.0"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change replaces the workspace dependency pattern (workspace:^) with a fixed version (0.1.0), which breaks consistency with the monorepo's dependency management approach. Other Backstage packages in this repository use workspace references to maintain internal dependency alignment.

Using a fixed version instead of a workspace reference can lead to:

  1. Version conflicts during dependency resolution
  2. Difficulties when updating internal packages
  3. Inconsistent behavior across the monorepo

The dependency should remain as workspace:^ to preserve the intended workspace dependency pattern used throughout the project.

Suggested change
"@backstage/plugin-permission-common": "0.1.0"
"@backstage/plugin-permission-common": "workspace:^"

Spotted by Diamond

Is this helpful? React 👍 or 👎 to let us know.

},
"devDependencies": {
"@backstage/cli": "workspace:^"
Expand Down
Loading