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
10 changes: 5 additions & 5 deletions packages/core-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/config": "workspace:^",
"@backstage/core-plugin-api": "workspace:^",
"@backstage/config": "0.1.1",
"@backstage/core-plugin-api": "0.1.0",
"@backstage/errors": "workspace:^",
"@backstage/theme": "workspace:^",
"@backstage/version-bridge": "workspace:^",
"@backstage/theme": "0.1.1",
"@backstage/version-bridge": "0.1.0",
Comment on lines +35 to +39
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 change from workspace:^ to fixed versions (0.1.1, 0.1.0) for Backstage packages breaks the workspace dependency pattern. This prevents the use of local versions during development and may lead to version inconsistencies across the project.

Unless there's a specific requirement to pin these dependencies to exact versions, these references should remain as workspace:^ to maintain proper workspace functionality and development workflow.

The vulnerability fix for @material-table/core can be applied independently without changing the workspace references for the Backstage packages.

Suggested change
"@backstage/config": "0.1.1",
"@backstage/core-plugin-api": "0.1.0",
"@backstage/errors": "workspace:^",
"@backstage/theme": "workspace:^",
"@backstage/version-bridge": "workspace:^",
"@backstage/theme": "0.1.1",
"@backstage/version-bridge": "0.1.0",
+ "@backstage/config": "workspace:^",
+ "@backstage/core-plugin-api": "workspace:^",
"@backstage/errors": "workspace:^",
+ "@backstage/theme": "workspace:^",
+ "@backstage/version-bridge": "workspace:^",

Spotted by Diamond

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

"@date-io/core": "^1.3.13",
"@material-table/core": "^3.1.0",
"@material-table/core": "^4.3.45",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.61",
Expand Down
Loading