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
2 changes: 1 addition & 1 deletion packages/core-plugin-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
},
"dependencies": {
"@backstage/config": "0.1.1",
"@backstage/types": "workspace:^",
"@backstage/types": "0.1.1",
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

critical

This change incorrectly replaces the Yarn workspace dependency (workspace:^) with a fixed, outdated version. The current version of @backstage/types in this monorepo is 1.1.0, so changing this to 0.1.1 is a major downgrade and will likely cause build failures or runtime errors due to API incompatibilities.

To maintain consistency and correctness within the monorepo, this dependency should remain as workspace:^ to resolve to the local @backstage/types package.

Suggested change
"@backstage/types": "0.1.1",
"@backstage/types": "workspace:^",

"@backstage/version-bridge": "0.1.0",
"@types/react": "^16.13.1 || ^17.0.0",
"history": "^5.0.0",
Expand Down
Loading