Skip to content

[Snyk] Fix for 9 vulnerabilities#182

Open
Dustin4444 wants to merge 1 commit into
mainfrom
snyk-fix-1ba9d5b1f3a35179ee8a508cc34511b9
Open

[Snyk] Fix for 9 vulnerabilities#182
Dustin4444 wants to merge 1 commit into
mainfrom
snyk-fix-1ba9d5b1f3a35179ee8a508cc34511b9

Conversation

@Dustin4444

Copy link
Copy Markdown
Owner

snyk-top-banner

Snyk has created this PR to fix 9 vulnerabilities in the pnpm dependencies of this project.

Snyk changed the following file(s):

  • apps/webapp/package.json
⚠️ Warning
Failed to update the pnpm-lock.yaml, please update manually before merging.

Vulnerabilities that will be fixed with an upgrade:

Issue Score
medium severity XML Injection
SNYK-JS-FASTXMLBUILDER-16540557
  ****  
medium severity XML External Entity (XXE) Injection
SNYK-JS-FASTXMLBUILDER-16540558
  ****  
medium severity Uncontrolled Recursion
SNYK-JS-POSTCSSSELECTORPARSER-16873882
  ****  
medium severity NULL Pointer Dereference
SNYK-JS-QS-16721866
  ****  
medium severity Use of Uninitialized Resource
SNYK-JS-WS-16722635
  ****  
high severity Command Injection
SNYK-JS-GLOB-14040952
  237  
high severity Regular Expression Denial of Service (ReDoS)
SNYK-JS-MINIMATCH-15353387
  169  
high severity Infinite loop
SNYK-JS-BRACEEXPANSION-15789759
  124  
low severity Regular Expression Denial of Service (ReDoS)
SNYK-JS-BRACEEXPANSION-9789073
  57  

Important

  • Check the changes in this PR to ensure they won't cause issues with your project.
  • Max score is 1000. Note that the real score may have changed since the PR was raised.
  • This PR was automatically created by Snyk using the credentials of a real user.

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)
🦉 XML Injection
🦉 Command Injection
🦉 More lessons are available in Snyk Learn

@coderabbitai

coderabbitai Bot commented Jun 2, 2026

Copy link
Copy Markdown

Important

Review skipped

Auto reviews are limited based on label configuration.

🏷️ Required labels (at least one) (1)
  • 'feature'

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: 7cc87be2-1494-4fd6-82bb-e8268aa206ac

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch snyk-fix-1ba9d5b1f3a35179ee8a508cc34511b9

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@changeset-bot

changeset-bot Bot commented Jun 2, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 1c72e99

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@snyk-io

snyk-io Bot commented Jun 2, 2026

Copy link
Copy Markdown

Snyk checks have passed. No issues have been found so far.

Status Scan Engine Critical High Medium Low Total (0)
🔚 Open Source Security 0 0 0 0 0 issues

💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse.

@snyk-io

snyk-io Bot commented Jun 2, 2026

Copy link
Copy Markdown

Snyk checks have passed. No issues have been found so far.

Status Scan Engine Critical High Medium Low Total (0)
Open Source Security 0 0 0 0 0 issues

💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse.

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Code Review

This pull request updates several dependencies in apps/webapp/package.json, including AWS SDK clients, Express, Socket.io, ESLint, and Tailwind CSS. The review feedback highlights critical issues with these upgrades: upgrading ESLint to v9.0.0 and Tailwind CSS to v4.0.0 are major breaking changes that will break the build and linting processes due to configuration and plugin incompatibilities. Additionally, upgrading some AWS SDK packages while leaving others on older versions could cause version mismatch issues.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

Comment thread apps/webapp/package.json
"engine.io": "^6.6.8",
"esbuild": "^0.15.10",
"eslint": "^8.24.0",
"eslint": "^9.0.0",

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

Upgrading eslint to ^9.0.0 is a major breaking change. ESLint v9 introduces flat config by default, which does not support the eslintIgnore field in package.json (defined on lines 24-28). Additionally, ESLint v9 is incompatible with the project's current @typescript-eslint/eslint-plugin and @typescript-eslint/parser versions (^5.59.6), which will break the npm run lint command. It is recommended to either keep ESLint at ^8.x or perform a full migration of the ESLint configuration and its plugins to support v9.

Suggested change
"eslint": "^9.0.0",
"eslint": "^8.24.0",

Comment thread apps/webapp/package.json
"supertest": "^7.1.3",
"tailwind-scrollbar": "^3.0.1",
"tailwindcss": "3.4.1",
"tailwindcss": "4.0.0",

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

Upgrading tailwindcss to 4.0.0 is a major breaking change. Tailwind CSS v4.0 introduces a new CSS-first configuration engine and removes support for tailwind.config.js in favor of CSS variables and @theme directives. This upgrade will break the build process unless a full migration is performed. Furthermore, prettier-plugin-tailwindcss at ^0.3.0 is incompatible with Tailwind v4. It is recommended to pin tailwindcss to ^3.x (e.g., ^3.4.1) until the project is ready for a full migration to v4.

Suggested change
"tailwindcss": "4.0.0",
"tailwindcss": "3.4.1",

Comment thread apps/webapp/package.json
"@ariakit/react-core": "^0.4.6",
"@aws-sdk/client-ecr": "^3.931.0",
"@aws-sdk/client-s3": "^3.936.0",
"@aws-sdk/client-s3": "^3.974.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

Upgrading @aws-sdk/client-s3 to ^3.974.0 and @aws-sdk/s3-presigned-post to ^3.980.0 while leaving @aws-sdk/s3-request-presigner at ^3.936.0 can lead to version mismatch issues. AWS SDK packages share common internal dependencies (such as @aws-sdk/types), and mismatched versions can cause type errors or runtime failures. It is recommended to upgrade @aws-sdk/s3-request-presigner to a matching version to ensure compatibility.

@socket-security

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Addedmupdf@​0.3.0961001008270

View full report

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants