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/airbrake-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
"dependencies": {
"@backstage/backend-common": "workspace:^",
"@backstage/backend-plugin-api": "workspace:^",
"@backstage/config": "workspace:^",
"@backstage/config": "0.1.1",
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Changing @backstage/config from workspace:^ to a fixed version 0.1.1 breaks the workspace linking mechanism that ensures consistent versions across the monorepo. This fixed version appears to be significantly older than current releases and may introduce compatibility issues with other Backstage components.

Consider either:

  1. Retaining the workspace:^ reference to maintain proper monorepo linking
  2. Updating to a more recent version that addresses the vulnerability while maintaining compatibility with your other Backstage components

This change could potentially cause more problems than it solves if the version mismatch leads to runtime errors.

Suggested change
"@backstage/config": "0.1.1",
"@backstage/config": "workspace:^",

Spotted by Diamond

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

"@types/express": "*",
"express": "^4.17.1",
"express-promise-router": "^4.1.0",
"http-proxy-middleware": "^2.0.0",
"http-proxy-middleware": "^2.0.9",
"winston": "^3.2.1",
"yn": "^4.0.0"
},
Expand Down
Loading