INQUIRY: why is puppeteer version locked to an older version v1.20.0?
See original GitHub issueAs per
https://github.com/sportradar/aws-azure-login/blob/master/package.json#L41
The puppeteer version is locked to version 1.20
. ( released on Sep 13, 2019)
However, there are much newer and later versions released: https://github.com/puppeteer/puppeteer/releases
This means that users running aws-azure-login
are restricted to an older version, which is likely prone to unpatched security and functionality issues. Further, for those companies that use multi-factor authentication, these systems complain that the browser is “too old” and may prevent authentication on an archaic version.
There may be other tickets/roadmap items to address this (took a quick scan of open issues did not find it). Hoping to glean a bit more information.
Thanks!
Issue Analytics
- State:
- Created 4 years ago
- Comments:5
Top Results From Across the Web
why is puppeteer version locked to an older version v1.20.0 ...
This means that users running aws-azure-login are restricted to an older version, which is likely prone to unpatched security and functionality ...
Read more >/vendor/puppeteer/docs/api.md | puppeteer_plus@0.12.0 | Deno
Puppeteer is a Node library which provides a high-level API to control Chromium or Chrome over the DevTools Protocol. The Puppeteer API is...
Read more >Puppeteer: Headless Chrome Node.js API - Morioh
Create an up-to-date, automated testing environment. Run your tests directly in the latest version of Chrome using the latest JavaScript and browser features....
Read more >JupyterLab Changelog — JupyterLab 3.6.0b0 documentation
Use the root yarn.lock in staging when making a release. #11433 (@jasongrout) ... Update several extensions readme files to delete old content.
Read more >eslint | Yarn - Package Manager
... 97b95c0 chore: upgrade puppeteer v13 (#16151) (唯然). v8.20.0 - July 16, 2022. bbf8df4 chore: Mark autogenerated release blog post as draft (#16130) ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Ah yes definitely - confirmed per:
If we pin it to the latest version, there is no way to guarantee that puppeteer won’t do any breaking changes that could potentially break this tool. Though, with the caret before the version, it will stay updated on minor and patch updates which should be good enough. In this case, it was a major upgrade, which you should always do manually. Sound good?