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
6 changes: 3 additions & 3 deletions plugins/github-issues/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
},
"dependencies": {
"@backstage/catalog-model": "workspace:^",
"@backstage/core-components": "workspace:^",
"@backstage/core-components": "0.8.6",
"@backstage/core-plugin-api": "workspace:^",
"@backstage/errors": "workspace:^",
"@backstage/integration": "workspace:^",
"@backstage/plugin-catalog-react": "workspace:^",
"@backstage/integration": "0.1.0",
"@backstage/plugin-catalog-react": "0.0.1",
Comment on lines +26 to +30

Choose a reason for hiding this comment

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

critical

Pinning these dependencies to old, specific versions instead of using workspace:^ is incorrect for this monorepo setup. This change will likely break the application because it forces the use of outdated packages instead of the local versions from the workspace, leading to API incompatibilities and other issues. For example, @backstage/core-components is being downgraded to 0.8.6 while the workspace version is 0.13.4-next.0.

To properly fix the security vulnerabilities, you should update the underlying dependencies across the entire monorepo and regenerate the yarn.lock file. This automated change should be rejected.

    "@backstage/core-components": "workspace:^",
    "@backstage/core-plugin-api": "workspace:^",
    "@backstage/errors": "workspace:^",
    "@backstage/integration": "workspace:^",
    "@backstage/plugin-catalog-react": "workspace:^"

"@backstage/theme": "workspace:^",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.9.1",
Expand Down
Loading