Skip to content
Open
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 plugins/catalog-backend-module-bitbucket/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/backend-common": "workspace:^",
"@backstage/backend-common": "0.24.1",
"@backstage/catalog-model": "workspace:^",
"@backstage/config": "workspace:^",
"@backstage/errors": "workspace:^",
"@backstage/integration": "workspace:^",
"@backstage/plugin-bitbucket-cloud-common": "workspace:^",
"@backstage/plugin-catalog-node": "workspace:^",
"@backstage/integration": "0.1.0",
"@backstage/plugin-bitbucket-cloud-common": "0.1.0",
"@backstage/plugin-catalog-node": "1.13.0",
"@backstage/types": "workspace:^",
"lodash": "^4.17.21",
"lodash": "^4.17.23",
Comment on lines +36 to +44

Choose a reason for hiding this comment

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

critical

This automated dependency update is incorrect for a yarn workspace monorepo and should be reverted.

  • Broken Workspace Links: Changing workspace:^ to pinned versions breaks the monorepo structure. It forces this package to use published versions from the npm registry instead of local workspace versions, which can lead to major inconsistencies.
  • Dependency Downgrades: Some pinned versions are severe downgrades (e.g., @backstage/integration from workspace version 1.5.1 to 0.1.0), which will likely break the build.
  • Missing Lockfile Update: The yarn.lock file hasn't been updated, so these changes would have no effect.

The correct approach is to update dependencies across the workspace and regenerate yarn.lock by running yarn install. I've suggested reverting these changes.

Suggested change
"@backstage/backend-common": "0.24.1",
"@backstage/catalog-model": "workspace:^",
"@backstage/config": "workspace:^",
"@backstage/errors": "workspace:^",
"@backstage/integration": "workspace:^",
"@backstage/plugin-bitbucket-cloud-common": "workspace:^",
"@backstage/plugin-catalog-node": "workspace:^",
"@backstage/integration": "0.1.0",
"@backstage/plugin-bitbucket-cloud-common": "0.1.0",
"@backstage/plugin-catalog-node": "1.13.0",
"@backstage/types": "workspace:^",
"lodash": "^4.17.21",
"lodash": "^4.17.23",
"@backstage/backend-common": "workspace:^",
"@backstage/catalog-model": "workspace:^",
"@backstage/config": "workspace:^",
"@backstage/errors": "workspace:^",
"@backstage/integration": "workspace:^",
"@backstage/plugin-bitbucket-cloud-common": "workspace:^",
"@backstage/plugin-catalog-node": "workspace:^",
"@backstage/types": "workspace:^",
"lodash": "^4.17.21",

"node-fetch": "^2.6.7",
"winston": "^3.2.1"
},
Expand Down
Loading