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
2 changes: 1 addition & 1 deletion packages/integration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"dependencies": {
"@azure/identity": "^3.2.1",
"@backstage/config": "workspace:^",
"@backstage/errors": "workspace:^",
"@backstage/errors": "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.

critical

This change from workspace:^ to a fixed version 0.1.1 is incorrect for a monorepo. It breaks the local workspace linking and forces this package to use an old version of @backstage/errors from the npm registry instead of the version from this repository (which is 1.2.1). This will likely introduce inconsistencies and bugs due to multiple versions of the same package being used in the project. This change should be reverted, and the underlying vulnerabilities in transitive dependencies should be addressed directly if possible.

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

"@octokit/auth-app": "^4.0.0",
"@octokit/rest": "^19.0.3",
"cross-fetch": "^3.1.5",
Expand Down
Loading