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/catalog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@
"@backstage/catalog-client": "workspace:^",
"@backstage/catalog-model": "workspace:^",
"@backstage/core-components": "workspace:^",
"@backstage/core-plugin-api": "workspace:^",
"@backstage/core-plugin-api": "0.1.0",

Choose a reason for hiding this comment

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

critical

The dependency @backstage/core-plugin-api is being downgraded from workspace:^ (which resolves to a much newer version like 1.5.3) to 0.1.0. This is a significant downgrade and will likely cause severe compatibility issues and runtime errors, potentially reintroducing vulnerabilities instead of fixing them. Please ensure the dependency is upgraded to a secure and compatible version, not downgraded.

Suggested change
"@backstage/core-plugin-api": "0.1.0",
"@backstage/core-plugin-api": "^1.5.3",

"@backstage/errors": "workspace:^",
"@backstage/integration-react": "workspace:^",
"@backstage/plugin-catalog-common": "workspace:^",
"@backstage/plugin-catalog-react": "workspace:^",
"@backstage/plugin-scaffolder-common": "workspace:^",
"@backstage/plugin-search-common": "workspace:^",
"@backstage/plugin-search-react": "workspace:^",
"@backstage/plugin-search-react": "0.1.0",

Choose a reason for hiding this comment

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

critical

Similar to @backstage/core-plugin-api, the @backstage/plugin-search-react dependency is being downgraded from workspace:^ (which resolves to a much newer version like 1.6.4-next.0) to 0.1.0. This will almost certainly lead to breakage. Please update this dependency to a compatible and secure version.

Suggested change
"@backstage/plugin-search-react": "0.1.0",
"@backstage/plugin-search-react": "^1.6.4",

"@backstage/theme": "workspace:^",
"@backstage/types": "workspace:^",
"@material-ui/core": "^4.12.2",
Expand Down
Loading