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/adr-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/catalog-model": "workspace:^",
"@backstage/catalog-model": "0.1.1",
"@backstage/integration": "workspace:^",
"@backstage/plugin-search-common": "workspace:^",
"@backstage/plugin-search-common": "0.3.1",
Comment on lines +32 to +34
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

These changes incorrectly replace workspace-local dependencies with old, pinned versions from the public registry. This project uses yarn workspaces, and dependencies between packages in the monorepo should use workspace:^.

  • @backstage/catalog-model is being downgraded from workspace version 1.4.1 to 0.1.1.
  • @backstage/plugin-search-common is being downgraded from workspace version 1.2.5 to 0.3.1.

This is a significant downgrade that will almost certainly break the application. The correct way to fix the underlying vulnerabilities (in ajv and qs) is to update the transitive dependencies, not to downgrade these direct dependencies. Please reject this change and address the vulnerabilities by updating the yarn.lock file or adding resolutions to the root package.json.

    "@backstage/catalog-model": "workspace:^",
    "@backstage/integration": "workspace:^",
    "@backstage/plugin-search-common": "workspace:^"

"front-matter": "^4.0.2",
"luxon": "^3.0.0"
},
Expand Down
Loading