Skip to content
Open
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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"express": "^4.17.2",
"express-healthcheck": "^0.1.0",
"puppeteer": "^5.5.0",
"puppeteer-cluster": "^0.23.0",
"puppeteer-cluster": "^0.25.0",

Choose a reason for hiding this comment

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

critical

This upgrade to [email protected] is incompatible with the currently used version of puppeteer. As stated in the release notes, [email protected] requires puppeteer@>=24.0.0. Your package.json specifies puppeteer: "^5.5.0". This version mismatch will cause your application to fail. To fix this, you must also upgrade the puppeteer dependency. For example:

"puppeteer": "^24.0.0",
"puppeteer-cluster": "^0.25.0",

Please update the puppeteer version accordingly.

Copy link

Copilot AI Jan 5, 2026

Choose a reason for hiding this comment

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

Upgrading to puppeteer-cluster 0.25.0 will cause compatibility issues with the current puppeteer version. According to the puppeteer-cluster release notes, version 0.25.0 requires puppeteer version 24.0.0 or newer. However, this project is using puppeteer version 5.5.0. Either upgrade puppeteer to version 24.0.0 or newer, or downgrade puppeteer-cluster to version 0.23.0.

Suggested change
"puppeteer-cluster": "^0.25.0",
"puppeteer-cluster": "^0.23.0",

Copilot uses AI. Check for mistakes.
"random-user-agent": "^1.0.0"
}
}
Loading