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
2 changes: 1 addition & 1 deletion plugins/tech-insights-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/types": "workspace:^",
"@backstage/types": "0.1.1",

Choose a reason for hiding this comment

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

critical

The dependency @backstage/types is being pinned to 0.1.1, which is incorrect. The previous value, workspace:^, is used in this monorepo to ensure that the package from the local workspace is used.

  • Incorrect Downgrade: The version of @backstage/types in this workspace is 1.1.0 (as seen in packages/types/package.json). Changing to 0.1.1 is a significant downgrade.
  • Contradicts Changelog: According to plugins/tech-insights-common/CHANGELOG.md, version 0.2.11 of this package (the current version) should depend on @backstage/types@1.1.0.
  • Breaks Monorepo Strategy: This change breaks the intended monorepo dependency strategy and will likely introduce inconsistencies or build issues.

It appears the Snyk bot has misinterpreted the workspace:^ dependency protocol. The correct value should be workspace:^ to use the in-repo version. I recommend reverting this change.

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

"@types/luxon": "^3.0.0",
"luxon": "^3.0.0"
},
Expand Down
Loading