puppeteer icon indicating copy to clipboard operation
puppeteer copied to clipboard

Puppeteer Core fork that works with Cloudflare Browser Workers

Results 34 puppeteer issues
Sort by recently updated
recently updated
newest added

Bumps [@sideway/formula](https://github.com/sideway/formula) from 3.0.0 to 3.0.1. Commits 5b44c1b 3.0.1 9fbc20a chore: better number regex 41ae98e Cleanup c59f35e Move to Sideway See full diff in compare view Maintainer changes This version...

dependencies

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.4. Release notes Sourced from loader-utils's releases. v2.0.4 2.0.4 (2022-11-11) Bug Fixes ReDoS problem (#225) (ac09944) v2.0.3 2.0.3 (2022-10-20) Bug Fixes security: prototype pollution exploit...

dependencies

Bumps [ua-parser-js](https://github.com/faisalman/ua-parser-js) from 0.7.31 to 0.7.35. Changelog Sourced from ua-parser-js's changelog. Version 0.7.35 / 1.0.35 Fix result from user-supplied user-agent being altered Add new browser: Heytap, TikTok Add new engine:...

dependencies

Bumps [webpack](https://github.com/webpack/webpack) from 5.73.0 to 5.80.0. Release notes Sourced from webpack's releases. v5.80.0 New Features Support destructuring assignment in import.meta by @​vankop in webpack/webpack#16996 Support treeshaking for destructuring assignment with...

dependencies

Bumps [http-cache-semantics](https://github.com/kornelski/http-cache-semantics) from 4.1.0 to 4.1.1. Commits 2449650 Update mocha 560b2d8 Don't use regex to trim whitespace b1bdb92 Remove linting package zoo c20dc7e Cache 308 See full diff in compare...

dependencies

**What kind of change does this PR introduce?** **Did you add tests for your changes?** **If relevant, did you update the documentation?** **Summary** **Does this PR introduce a breaking change?**...

### Minimal, reproducible example Steps to reproduce: 1. Set up the browser rendering example from [here](https://developers.cloudflare.com/browser-rendering/get-started/browser-rendering-with-do/). 2. Add this line inside the durable object's `fetch` method: ```ts let limits =...

bug

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. Release notes Sourced from actions/checkout's releases. v4.0.0 What's Changed Update default runtime to node20 by @​takost in actions/checkout#1436 Support fetching without the --progress option...

dependencies
github_actions

Bumps [ws](https://github.com/websockets/ws) from 8.13.0 to 8.17.1. Release notes Sourced from ws's releases. 8.17.1 Bug fixes Fixed a DoS vulnerability (#2231). A request with a number of headers exceeding the[server.maxHeadersCount][] threshold...

dependencies
javascript

### Minimal, reproducible example ```TypeScript import puppeteer from "@cloudflare/puppeteer"; interface Env { MYBROWSER: Fetcher; } export default { async fetch(request, env): Promise { const browser = await puppeteer.launch(env.MYBROWSER); const page...

bug