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 packages/core-app-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/config": "workspace:^",
"@backstage/core-plugin-api": "workspace:^",
"@backstage/config": "0.1.1",
"@backstage/core-plugin-api": "0.1.0",
"@backstage/types": "workspace:^",
"@backstage/version-bridge": "workspace:^",
"@backstage/version-bridge": "0.1.0",
Comment on lines +35 to +38
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

This change replaces workspace references with fixed versions, which breaks the monorepo's dependency management. Fixed versions prevent packages from using local workspace dependencies, potentially causing version inconsistencies and development issues.

The vulnerabilities in webpack-dev-server should be addressed without modifying the workspace references. Consider:

  1. Upgrading the affected dependency directly rather than changing workspace references
  2. Maintaining the workspace:^ syntax to preserve monorepo integrity
  3. Updating the root package.json or yarn.lock if needed

These fixed versions (0.1.0, 0.1.1) appear to be quite old, which may introduce additional compatibility issues with the current codebase.

Spotted by Diamond

Is this helpful? React 👍 or 👎 to let us know.

"@types/prop-types": "^15.7.3",
"@types/react": "^16.13.1 || ^17.0.0",
"history": "^5.0.0",
Expand Down
Loading