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
6 changes: 3 additions & 3 deletions plugins/periskop-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-common": "workspace:^",
"@backstage/backend-common": "0.24.1",
"@backstage/backend-plugin-api": "workspace:^",
"@backstage/config": "workspace:^",
"@backstage/config": "0.1.1",
Comment on lines +27 to +29
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

high

It seems the automated Snyk fix has replaced the workspace:^ protocol with specific versions for @backstage/backend-common and @backstage/config. In a monorepo using Yarn workspaces, this is generally undesirable as it pins the dependencies to published versions instead of using the local code from the workspace. This can lead to inconsistencies and prevent local changes in these packages from being picked up. It's best to revert these to use workspace:^ to maintain consistency with other workspace dependencies in this file.

    "@backstage/backend-common": "workspace:^",
    "@backstage/backend-plugin-api": "workspace:^",
    "@backstage/config": "workspace:^"

"@types/express": "*",
"express": "^4.17.1",
"express": "^4.22.0",
"express-promise-router": "^4.1.0",
"node-fetch": "^2.6.7",
"winston": "^3.2.1",
Expand Down
Loading