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
8 changes: 4 additions & 4 deletions plugins/user-settings-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-common": "workspace:^",
"@backstage/backend-common": "0.24.1",
"@backstage/backend-plugin-api": "workspace:^",
"@backstage/catalog-model": "workspace:^",
"@backstage/errors": "workspace:^",
"@backstage/plugin-auth-node": "workspace:^",
"@backstage/catalog-model": "0.1.1",
"@backstage/errors": "0.1.1",
Comment on lines +34 to +35
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

The version numbers 0.1.1 for @backstage/catalog-model and @backstage/errors appear significantly outdated and inconsistent with @backstage/backend-common@0.24.1. These unusually low versions will likely cause compatibility issues or runtime errors when deployed.

Consider using versions that align with the Backstage package ecosystem - typically all core Backstage packages should have relatively similar version numbers to ensure proper compatibility. The current PR might fix the vulnerability but could introduce new integration problems.

Suggested change
"@backstage/catalog-model": "0.1.1",
"@backstage/errors": "0.1.1",
+ "@backstage/catalog-model": "^1.4.0",
+ "@backstage/errors": "^1.2.0",

Spotted by Diamond

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

"@backstage/plugin-auth-node": "0.5.0",
"@backstage/types": "workspace:^",
"@types/express": "^4.17.6",
"express": "^4.17.1",
Expand Down
Loading