Conversation
…lnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-ANSIREGEX-1583908 - https://snyk.io/vuln/SNYK-JS-SEMVER-3247795 - https://snyk.io/vuln/SNYK-JS-ELLIPTIC-8720086 - https://snyk.io/vuln/SNYK-JS-ELLIPTIC-8187303 - https://snyk.io/vuln/SNYK-JS-ELLIPTIC-7577916 - https://snyk.io/vuln/SNYK-JS-ELLIPTIC-7577917 - https://snyk.io/vuln/SNYK-JS-ELLIPTIC-7577918 - https://snyk.io/vuln/SNYK-JS-BABELTRAVERSE-5962462 - https://snyk.io/vuln/SNYK-JS-IP-6240864 - https://snyk.io/vuln/SNYK-JS-BRACES-6838727 - https://snyk.io/vuln/SNYK-JS-CROSSSPAWN-8303230 - https://snyk.io/vuln/SNYK-JS-HTTPPROXYMIDDLEWARE-8229906 - https://snyk.io/vuln/SNYK-JS-WS-7266574 - https://snyk.io/vuln/SNYK-JS-WEBPACK-7840298 - https://snyk.io/vuln/SNYK-JS-FOLLOWREDIRECTS-6141137 - https://snyk.io/vuln/SNYK-JS-FOLLOWREDIRECTS-6444610 - https://snyk.io/vuln/SNYK-JS-WEBPACKDEVMIDDLEWARE-6476555 - https://snyk.io/vuln/SNYK-JS-BABELHELPERS-9397697 - https://snyk.io/vuln/SNYK-JS-TOUGHCOOKIE-5672873 - https://snyk.io/vuln/SNYK-JS-TAR-6476909 - https://snyk.io/vuln/SNYK-JS-INFLIGHT-6095116 - https://snyk.io/vuln/SNYK-JS-ELLIPTIC-8172694 - https://snyk.io/vuln/SNYK-JS-MICROMATCH-6838728 - https://snyk.io/vuln/SNYK-JS-TARFS-9535930 - https://snyk.io/vuln/SNYK-JS-IP-7148531 - https://snyk.io/vuln/SNYK-JS-BROWSERIFYSIGN-6037026 - https://snyk.io/vuln/SNYK-JS-BODYPARSER-7926860 - https://snyk.io/vuln/SNYK-JS-PRISMJS-9055448 - https://snyk.io/vuln/SNYK-JS-GRAPHQL-5905181 - https://snyk.io/vuln/SNYK-JS-SERIALIZEJAVASCRIPT-6147607 - https://snyk.io/vuln/SNYK-JS-NWSAPI-2841516 - https://snyk.io/vuln/SNYK-JS-EXPRESS-7926867 - https://snyk.io/vuln/SNYK-JS-SEND-7926862 - https://snyk.io/vuln/SNYK-JS-SERVESTATIC-7926865 - https://snyk.io/vuln/SNYK-JS-OCTOKITREQUEST-8730853 - https://snyk.io/vuln/SNYK-JS-PATHTOREGEXP-7925106 - https://snyk.io/vuln/SNYK-JS-PATHTOREGEXP-8482416 - https://snyk.io/vuln/SNYK-JS-EXPRESS-6474509 - https://snyk.io/vuln/SNYK-JS-POSTCSS-5926692 - https://snyk.io/vuln/SNYK-JS-COOKIE-8163060 - https://snyk.io/vuln/SNYK-JS-NANOID-8492085
Review or Edit in CodeSandboxOpen the branch in Web Editor • VS Code • Insiders |
|
No applications have been configured for previews targeting branch: master. To do so go to restack console and configure your applications for previews. |
Reviewer's Guide by SourceryThis pull request upgrades multiple dependencies in the plugins/catalog-backend-module-msgraph/package.json file to address 41 security vulnerabilities identified by Snyk. Updated class diagram for package.json dependenciesclassDiagram
class PackageJson {
- "@azure/identity": string
- "@backstage/backend-common": string
- "@backstage/backend-plugin-api": string
- "@backstage/backend-tasks": string
- "@backstage/catalog-model": string
- "@backstage/config": string
- "@backstage/plugin-catalog-common": string
- "@backstage/plugin-catalog-node": string
- "@microsoft/microsoft-graph-types": string
- "@types/node-fetch": string
- "lodash": string
- "node-fetch": string
- "uuid": string
- devDependencies
}
note for PackageJson "Dependencies were upgraded to fix vulnerabilities."
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
We have skipped reviewing this pull request. Here's why:
- It seems to have been created by a bot ('[Snyk]' found in title). We assume it knows what it's doing!
- We don't review packaging changes - Let us know if you'd like us to change this.
| "@backstage/backend-tasks": "0.6.1", | ||
| "@backstage/catalog-model": "0.1.1", | ||
| "@backstage/config": "workspace:^", | ||
| "@backstage/plugin-catalog-common": "workspace:^", | ||
| "@backstage/plugin-catalog-node": "workspace:^", | ||
| "@backstage/plugin-catalog-common": "0.1.0", | ||
| "@backstage/plugin-catalog-node": "1.0.0", |
There was a problem hiding this comment.
The version numbers being introduced in this PR are concerning. The PR is replacing workspace references with fixed, very old versions:
@backstage/catalog-model: 0.1.1(current stable is ~1.4)@backstage/plugin-catalog-common: 0.1.0(current stable is ~1.0)@backstage/backend-tasks: 0.6.1(current stable is ~0.5)@backstage/plugin-catalog-node: 1.0.0(current stable is ~1.4)
These versions are inconsistent with each other and significantly outdated, which will likely cause compatibility issues with the rest of the codebase.
While fixing vulnerabilities is important, it should be done by updating to recent, compatible versions rather than downgrading to very old ones. Consider either:
- Maintaining the workspace references and updating the root dependencies
- Using recent, compatible fixed versions if workspace references aren't appropriate
This approach would address the vulnerabilities without introducing version incompatibilities.
| "@backstage/backend-tasks": "0.6.1", | |
| "@backstage/catalog-model": "0.1.1", | |
| "@backstage/config": "workspace:^", | |
| "@backstage/plugin-catalog-common": "workspace:^", | |
| "@backstage/plugin-catalog-node": "workspace:^", | |
| "@backstage/plugin-catalog-common": "0.1.0", | |
| "@backstage/plugin-catalog-node": "1.0.0", | |
| "@backstage/backend-tasks": "workspace:^", | |
| "@backstage/catalog-model": "workspace:^", | |
| "@backstage/config": "workspace:^", | |
| "@backstage/plugin-catalog-common": "workspace:^", | |
| "@backstage/plugin-catalog-node": "workspace:^", |
Spotted by Diamond
Is this helpful? React 👍 or 👎 to let us know.
|
This PR has been automatically marked as stale because it has not had recent activity from the author. It will be closed if no further activity occurs. If the PR was closed and you want it re-opened, let us know and we'll re-open the PR so that you can continue the contribution! |
Snyk has created this PR to fix 41 vulnerabilities in the yarn dependencies of this project.
Snyk changed the following file(s):
plugins/catalog-backend-module-msgraph/package.jsonNote for zero-installs users
If you are using the Yarn feature zero-installs that was introduced in Yarn V2, note that this PR does not update the
.yarn/cache/directory meaning this code cannot be pulled and immediately developed on as one would expect for a zero-install project - you will need to runyarnto update the contents of the./yarn/cachedirectory.If you are not using zero-install you can ignore this as your flow should likely be unchanged.
Vulnerabilities that will be fixed with an upgrade:
SNYK-JS-ANSIREGEX-1583908
SNYK-JS-SEMVER-3247795
SNYK-JS-ELLIPTIC-8720086
SNYK-JS-ELLIPTIC-8187303
SNYK-JS-ELLIPTIC-7577916
SNYK-JS-ELLIPTIC-7577917
SNYK-JS-ELLIPTIC-7577918
SNYK-JS-BABELTRAVERSE-5962462
SNYK-JS-IP-6240864
SNYK-JS-BRACES-6838727
SNYK-JS-CROSSSPAWN-8303230
SNYK-JS-HTTPPROXYMIDDLEWARE-8229906
SNYK-JS-WS-7266574
SNYK-JS-WEBPACK-7840298
SNYK-JS-FOLLOWREDIRECTS-6141137
SNYK-JS-FOLLOWREDIRECTS-6444610
SNYK-JS-WEBPACKDEVMIDDLEWARE-6476555
SNYK-JS-BABELHELPERS-9397697
SNYK-JS-TOUGHCOOKIE-5672873
SNYK-JS-TAR-6476909
SNYK-JS-INFLIGHT-6095116
SNYK-JS-ELLIPTIC-8172694
SNYK-JS-MICROMATCH-6838728
SNYK-JS-TARFS-9535930
SNYK-JS-IP-7148531
SNYK-JS-BROWSERIFYSIGN-6037026
SNYK-JS-BODYPARSER-7926860
SNYK-JS-PRISMJS-9055448
SNYK-JS-GRAPHQL-5905181
SNYK-JS-SERIALIZEJAVASCRIPT-6147607
SNYK-JS-NWSAPI-2841516
SNYK-JS-EXPRESS-7926867
SNYK-JS-SEND-7926862
SNYK-JS-SERVESTATIC-7926865
SNYK-JS-OCTOKITREQUEST-8730853
SNYK-JS-PATHTOREGEXP-7925106
SNYK-JS-PATHTOREGEXP-8482416
SNYK-JS-EXPRESS-6474509
SNYK-JS-POSTCSS-5926692
SNYK-JS-COOKIE-8163060
SNYK-JS-NANOID-8492085
Important
Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open fix PRs.
For more information:
🧐 View latest project report
📜 Customise PR templates
🛠 Adjust project settings
📚 Read about Snyk's upgrade logic
Learn how to fix vulnerabilities with free interactive lessons:
🦉 Regular Expression Denial of Service (ReDoS)
🦉 Cross-site Scripting (XSS)
🦉 Open Redirect
🦉 More lessons are available in Snyk Learn
Summary by Sourcery
Update dependencies to fix 41 security vulnerabilities in the project's Yarn dependencies
Bug Fixes:
Enhancements: