UNPKG

puppeteer-cluster

Version:
151 lines (121 loc) 5.47 kB
# Changelog All notable changes to this project will be documented in this file. ## [0.25.0] - 2025-11-13 Note: Use a version older than `0.25.0` if you want to use a puppeteer version older than 24.0.0. ### Changed - Updated puppeteer types to version 24 - Updated dependencies to their latest versions - Exported more types for improved TypeScript use ### Fixed - Cluster retrying in error cases when it was already closed ## [0.24.0] - 2024-03-17 Note: Use a version older than `0.24.0` if you want to use a puppeteer version older than 22.0.0. ### Changed - Updated all dependencies to their latest versions - Added a missing timeout case when closing the browser - Removed `package-lock.json` as otherwise yarn complains (`warning package-lock.json found. Your project contains lock files generated by tools other than Yarn. It is advised not to mix package managers in order to avoid resolution inconsistencies caused by unsynchronized lock files. To clear this warning, remove package-lock.json.`). - Dropped support (in tests) for Node.js <=16 as puppeteer also support for these versions ### Fixed - Fixed breaking puppeteer changes introduced in version 22 (renamed `createIncognitoBrowserContext` to `createBrowserContext`) ## [0.23.0] - 2022-01-23 ### Changed - Updated dependencies which haven't been updated for more than one year - Moved from Travis to Github Actions - Remove the linter for now, but will probably add it back later after having a look at the pull requests. ### Fixed - Fixed bug #395 not using `perBrowserOptions` ## [0.22.0] - 2020-08-06 ### Changed - Updated dependencies to their latest versions - In particular the devDependencies `puppeteer` and `puppeteer-core` received a major upgrade (to version `5`) - `peerDependencies` was changed accordingly. ## [0.21.0] - 2020-05-24 ### Changed - Updated dependencies to their latest versions - In particular the devDependencies `puppeteer` and `puppeteer-core` received a major upgrade (to version `3`) - `peerDependencies` was changed to `^1.5.0 || ^2.0.0 || ^3.0.0` as there were no changes regarding the API that this library uses. - Removed support for Node.js version 8 as puppeteer [dropped support](https://github.com/puppeteer/puppeteer/releases/tag/v3.0.0) for it. - Added check to ensure `maxConcurrency` is set (#243) ## [0.20.0] - 2020-03-26 ### Added - Add a new option `perBrowserOptions` for using different args for each puppeteer instance - Allowing to use a different proxy for each worker ### Changed - Updated dev dependencies to their latest versions ## [0.19.0] - 2020-02-16 ### Changed - Added the parameter `jobWillRetry` to the `'taskerror'` Event ## [0.18.0] - 2019-12-05 ### Changed - Updated dependencies to their latest versions - In particular the devDependencies `puppeteer` and `puppeteer-core` received a major upgrade (to version `2`) - `peerDependencies` was changed to `^1.5.0 || ^2.0.0` as there were no changes regarding the API that this library uses. - Removed support for Node.js version 6 as puppeteer [dropped support](https://github.com/puppeteer/puppeteer/pull/5045) for it. ## [0.17.0] - 2019-08-03 ### Changed - Updated dependencies to their latest versions ### Fixed - Fixed bug making it impossible to queue `null` (issue #178) ## [0.16.0] - 2019-05-11 ### Changed - License changed to MIT - Updated dependencies to their latest versions ## [0.15.2] - 2019-03-09 ### Fixed - Fixed bug, which crashed the cluster in some environments (#113) ## [0.15.1] - 2019-03-06 ### Changed - Changed when the `queue` event is emitted (after the job is queued into the internal queue). ## [0.15.0] - 2019-03-06 ### Added - Event `queue` added ## [0.14.0] - 2019-02-28 ### Added - Support for generics via `Cluster<InType, OutType>` ## [0.13.2] - 2019-02-26 ### Fixed - `package-lock.json` file was not updated ## [0.13.1] - 2019-02-26 ### Fixed - Internal helper function was accidentally set to public ## [0.13.0] - 2019-02-25 ### Added - `Cluster.execute` function added - Examples for `Cluster.execute` added ## [0.12.1] - 2018-11-08 ### Fixed - Fixed support for custom concurrency implementations ## [0.12.0] - 2018-11-07 ### Added - Support for custom puppeteer libraries added - Support for custom concurrency implementations added ### Changed - Updated dependencies to their latest versions ## [0.11.2] - 2018-09-07 ### Fixed - Fixed another sameDomainDelay bug leading to high CPU usage ## [0.11.1] - 2018-09-06 ### Fixed - Fixed `sameDomainDelay` bug (issue #11) ## [0.11.0] - 2018-09-05 ### Fixed - Fixed rarely happening bug (issue #3), which made browser not able to restart ## [0.10.0] - 2018-08-21 ### Added - Node.js support for version 6 and 7 added ## [0.9.1] - 2018-07-18 ### Fixed - Circular structures led to crashs in case of crawling errors. ## [0.9.0] - 2018-07-13 ### Changed - Cluster.task function signature changed from `Cluster.task(page, url)` to `Cluster.task({ page, data })`. `Cluster.queue` can be passed any data instead of a string or object. ## 0.8.1 - 2018-07-08 ### Fixed - The timeout-promise for a task was not canceled when a task threw an error. ## 0.8.0 - 2018-07-04 ### Added - Cluster can be used without defining a Cluster.task function by queuing only functions. ### Fixed - Page errors ("Page crashed!") were not caught so far ### Removed - maxCPU and maxMemory options removed as they made no sense (better to check how much chromium your machine can handle.)