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/events-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/backend-plugin-api": "workspace:^"
"@backstage/backend-plugin-api": "0.6.19"
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 from workspace:^ to a fixed version 0.6.19 breaks the monorepo's workspace dependency structure. In Backstage monorepos, workspace references ensure all internal packages use consistent versions during development.

The failed yarn.lock update mentioned in the PR description confirms there are compatibility issues with this approach.

To properly address the security vulnerability:

  1. Maintain the workspace:^ format
  2. Update the vulnerable dependency at the root level
  3. Ensure the fix propagates through the workspace

This ensures the security fix is applied while preserving the monorepo's integrity and version consistency across all packages.

Suggested change
"@backstage/backend-plugin-api": "0.6.19"
"@backstage/backend-plugin-api": "workspace:^"

Spotted by Diamond

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

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