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.

critical

This change incorrectly downgrades @backstage/plugin-permission-common from the workspace version (which is 0.7.7) to a hardcoded, much older version (0.1.0). In a monorepo using Yarn workspaces, dependencies between packages should use workspace:^ to ensure consistency and use the code from within the repository. Pinning to an old, external version will likely cause build failures or runtime issues and defeats the purpose of a monorepo. This change should be reverted.

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

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