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
4 changes: 2 additions & 2 deletions plugins/stack-overflow-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-common": "workspace:^",
"@backstage/backend-common": "0.24.1",
"@backstage/config": "workspace:^",
"@backstage/plugin-search-common": "workspace:^",
"@backstage/plugin-search-common": "0.3.1",
Comment on lines +35 to +37

Choose a reason for hiding this comment

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

critical

These automated dependency changes are incorrect and should be rejected for several reasons:

  1. Breaks Monorepo Strategy: Replacing workspace:^ with pinned versions goes against the Yarn workspace dependency strategy, which can lead to version conflicts and maintenance issues.
  2. Critical Downgrade: The version of @backstage/plugin-search-common is being downgraded from 1.2.5 (workspace version) to 0.3.1. This is a major regression that will almost certainly break the application.
  3. Incomplete Change: The PR description states that yarn.lock was not updated, which is a required step after changing dependencies.

These vulnerabilities should be addressed by performing a proper dependency update across the workspace, not through these problematic pinned versions.

"node-fetch": "^2.6.7",
"qs": "^6.9.4",
"winston": "^3.2.1"
Expand Down
Loading