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
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"@backstage/catalog-model": "workspace:^",
"@backstage/config": "workspace:^",
"@backstage/errors": "workspace:^",
"@backstage/plugin-catalog-backend": "workspace:^",
"@backstage/plugin-catalog-backend": "2.0.0",
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Replacing a workspace reference (workspace:^) with a fixed version (2.0.0) breaks the monorepo dependency management pattern. This change will likely cause compatibility issues with other Backstage packages that expect consistent versioning through workspace references.

The PR description already indicates that the yarn.lock update failed, which is a warning sign. In Backstage's monorepo architecture, packages should maintain workspace references to ensure proper version alignment during development.

Consider either:

  1. Maintaining the workspace reference pattern (workspace:^)
  2. Updating all related packages consistently if fixed versions are required
  3. Using the Backstage-recommended approach for security updates in monorepos

This change as-is risks breaking the build or creating subtle runtime compatibility issues.

Suggested change
"@backstage/plugin-catalog-backend": "2.0.0",
"@backstage/plugin-catalog-backend": "workspace:^",

Spotted by Diamond

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

"@backstage/plugin-catalog-node": "workspace:^",
"@backstage/plugin-events-node": "workspace:^",
"@backstage/plugin-permission-common": "workspace:^",
Expand Down
Loading