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
10 changes: 5 additions & 5 deletions plugins/linguist-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/backend-common": "workspace:^",
"@backstage/backend-plugin-api": "workspace:^",
"@backstage/backend-common": "0.25.0",
"@backstage/backend-plugin-api": "1.6.1",
"@backstage/backend-tasks": "workspace:^",
"@backstage/catalog-client": "workspace:^",
"@backstage/catalog-client": "0.2.0",
"@backstage/catalog-model": "workspace:^",
"@backstage/config": "workspace:^",
"@backstage/config": "0.1.1",
"@backstage/errors": "workspace:^",
"@backstage/plugin-auth-node": "workspace:^",
"@backstage/plugin-auth-node": "0.6.0",
Comment on lines +25 to +32

Choose a reason for hiding this comment

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

security-critical critical

This change pins several dependencies to specific versions, moving away from workspace:^. This has two critical implications:

  • Dependency Strategy Change: This alters the monorepo dependency strategy. Using pinned versions instead of workspace packages can lead to version duplication, increased bundle sizes, and potential runtime conflicts. Please confirm this is the intended approach.

  • yarn.lock is Missing: The PR description correctly warns that yarn.lock has not been updated. Without this file, the dependency changes will not take effect, and the security vulnerabilities will not be fixed.

Required Action: Before merging, you must run yarn install to generate the yarn.lock file, commit it to this PR, and then thoroughly test to ensure no regressions have been introduced.

"@backstage/plugin-linguist-common": "workspace:^",
"@backstage/types": "workspace:^",
"@types/express": "*",
Expand Down
Loading