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/techdocs-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
"dependencies": {
"@backstage/catalog-model": "workspace:^",
"@backstage/config": "workspace:^",
"@backstage/core-components": "workspace:^",
"@backstage/core-plugin-api": "workspace:^",
"@backstage/core-components": "0.8.6",
"@backstage/core-plugin-api": "0.1.0",
Comment on lines +38 to +39

Choose a reason for hiding this comment

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

critical

These changes incorrectly replace workspace-local dependencies (workspace:^) with old, pinned versions from the public registry. This is a significant downgrade and will likely break the application. @backstage/core-components is being downgraded from a workspace version (which is 0.13.4-next.0 in this monorepo) to 0.8.6, and @backstage/core-plugin-api from a workspace version (1.5.3) to 0.1.0.

This change should be reverted. To fix the underlying vulnerabilities, the dependencies within the monorepo should be updated, not by pinning to old versions from an external registry.

    "@backstage/core-components": "workspace:^",
    "@backstage/core-plugin-api": "workspace:^"

"@backstage/version-bridge": "workspace:^",
"@material-ui/core": "^4.12.2",
"@material-ui/lab": "4.0.0-alpha.61",
Expand Down
Loading