Skip to content
Open
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/example-todo-list-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/plugin-permission-common": "workspace:^"
"@backstage/plugin-permission-common": "0.1.0"

Choose a reason for hiding this comment

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

critical

This change from workspace:^ to a pinned version 0.1.0 is incorrect and will likely cause issues. The workspace:^ protocol ensures that this package uses the local version of @backstage/plugin-permission-common from this monorepo, which is currently at version 0.7.7. Changing this to 0.1.0 is a significant downgrade and will cause this package to use an old, published version from the registry instead of the local one. This breaks the monorepo development workflow and could introduce bugs or break compatibility. This change should be reverted to keep the workspace dependency.

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

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