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
6 changes: 3 additions & 3 deletions plugins/app-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-common": "workspace:^",
"@backstage/backend-plugin-api": "workspace:^",
"@backstage/backend-common": "0.24.1",
"@backstage/backend-plugin-api": "0.6.19",
"@backstage/config": "workspace:^",
"@backstage/config-loader": "workspace:^",
"@backstage/config-loader": "0.1.1",
Comment on lines +48 to +51
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Dependency Resolution Issue: Replacing workspace:^ references with specific npm versions breaks the monorepo's internal dependency structure. This change would cause the app to use external package versions rather than the local workspace packages, potentially introducing version mismatches and development workflow issues.

For addressing the vulnerability in tar-fs, the fix should be applied within the workspace packages themselves while maintaining the workspace:^ syntax. This preserves the monorepo's integrity while still addressing the security concern.

Consider reverting these changes to keep workspace:^ and instead update the vulnerable dependency in the appropriate workspace package.

Spotted by Diamond

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

"@backstage/types": "workspace:^",
"@types/express": "^4.17.6",
"express": "^4.17.1",
Expand Down
Loading