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-aws-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@aws-sdk/types": "^3.347.0",
"@aws-sdk/util-arn-parser": "^3.310.0",
"@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 incorrectly replaces the workspace:^ protocol with a hardcoded version 0.1.1 for @backstage/errors. In a monorepo using Yarn workspaces, workspace:^ ensures that the package uses the version of @backstage/errors from this repository. The current version of @backstage/errors in this workspace is 1.2.1. By pinning to 0.1.1, you are introducing a significant downgrade and breaking the monorepo's internal dependency linking. This will likely cause build failures or runtime errors. The dependency should be kept as workspace:^ to correctly resolve to the local package.

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

},
"devDependencies": {
"@backstage/cli": "workspace:^",
Expand Down
Loading