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
4 changes: 2 additions & 2 deletions plugins/codescene/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/config": "workspace:^",
"@backstage/core-components": "workspace:^",
"@backstage/config": "0.1.1",
"@backstage/core-components": "0.1.0",
Comment on lines +25 to +26
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 introduces a potential compatibility issue by pinning @backstage/config and @backstage/core-components to very old versions (0.1.1 and 0.1.0) while keeping other related Backstage dependencies as workspace references.

Two concerns with this approach:

  1. These specific versions are significantly older than current Backstage releases, which may introduce incompatibilities with the workspace-referenced dependencies
  2. The PR description notes that the yarn.lock file wasn't updated, which is required for these dependency changes to take effect properly

To address the vulnerability while maintaining compatibility, consider either:

  • Using more recent compatible versions of these packages
  • Updating all related Backstage dependencies consistently
  • Ensuring the yarn.lock file is properly updated before merging

Spotted by Diamond

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

"@backstage/core-plugin-api": "workspace:^",
"@backstage/errors": "workspace:^",
"@backstage/theme": "workspace:^",
Expand Down
Loading