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
4 changes: 2 additions & 2 deletions plugins/catalog-backend-module-github/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@backstage/backend-plugin-api": "workspace:^",
"@backstage/backend-tasks": "workspace:^",
"@backstage/catalog-client": "workspace:^",
"@backstage/catalog-model": "workspace:^",
"@backstage/catalog-model": "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.

Replacing workspace:^ with a fixed version 0.1.1 for @backstage/catalog-model is problematic. This appears to be a significantly older version that will likely be incompatible with other Backstage components in the project.

For Backstage monorepos, workspace references ensure all components use consistent versions. Either:

  1. Maintain the original workspace:^ reference to preserve compatibility
  2. If a version upgrade is necessary, select a more recent version that aligns with other Backstage components

Fixed versions should only be used when there's a specific reason to pin to that exact version.

Suggested change
"@backstage/catalog-model": "0.1.1",
"@backstage/catalog-model": "workspace:^",

Spotted by Diamond

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

"@backstage/config": "workspace:^",
"@backstage/errors": "workspace:^",
"@backstage/integration": "workspace:^",
Expand All @@ -59,7 +59,7 @@
"@backstage/plugin-events-node": "workspace:^",
"@backstage/types": "workspace:^",
"@octokit/graphql": "^5.0.0",
"@octokit/rest": "^19.0.3",
"@octokit/rest": "^22.0.0",
"git-url-parse": "^13.0.0",
"lodash": "^4.17.21",
"minimatch": "^5.1.2",
Expand Down
Loading