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 packages/backend-tasks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/backend-common": "workspace:^",
"@backstage/backend-common": "0.24.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.

Replacing a workspace reference (workspace:^) with a fixed version (0.24.1) in a monorepo can create dependency inconsistencies. This change might result in multiple versions of @backstage/backend-common being used across the project, potentially causing unexpected behaviors.

Consider addressing the vulnerability while maintaining the workspace reference structure by:

  1. Updating the shared @backstage/backend-common package within your workspace
  2. Ensuring all packages reference it using workspace:^
  3. Updating the underlying dependencies in the shared package that contain the vulnerability

This approach maintains the monorepo's dependency consistency while still addressing the security issue in tar-fs.

Suggested change
"@backstage/backend-common": "0.24.1",
"@backstage/backend-common": "workspace:^",

Spotted by Diamond

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

"@backstage/config": "workspace:^",
"@backstage/errors": "workspace:^",
"@backstage/types": "workspace:^",
Expand Down
Loading