5.0 KiB
5.0 KiB
Changelog
All notable changes to this project will be documented in this file.
[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.jsonas 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
createIncognitoBrowserContexttocreateBrowserContext)
[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
puppeteerandpuppeteer-corereceived a major upgrade (to version5) peerDependencieswas changed accordingly.
- In particular the devDependencies
[0.21.0] - 2020-05-24
Changed
- Updated dependencies to their latest versions
- In particular the devDependencies
puppeteerandpuppeteer-corereceived a major upgrade (to version3)
- In particular the devDependencies
peerDependencieswas changed to^1.5.0 || ^2.0.0 || ^3.0.0as there were no changes regarding the API that this library uses.- Removed support for Node.js version 8 as puppeteer dropped support for it.
- Added check to ensure
maxConcurrencyis set (#243)
[0.20.0] - 2020-03-26
Added
- Add a new option
perBrowserOptionsfor 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
jobWillRetryto the'taskerror'Event
[0.18.0] - 2019-12-05
Changed
- Updated dependencies to their latest versions
- In particular the devDependencies
puppeteerandpuppeteer-corereceived a major upgrade (to version2)
- In particular the devDependencies
peerDependencieswas changed to^1.5.0 || ^2.0.0as there were no changes regarding the API that this library uses.- Removed support for Node.js version 6 as puppeteer dropped support 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
queueevent is emitted (after the job is queued into the internal queue).
[0.15.0] - 2019-03-06
Added
- Event
queueadded
[0.14.0] - 2019-02-28
Added
- Support for generics via
Cluster<InType, OutType>
[0.13.2] - 2019-02-26
Fixed
package-lock.jsonfile 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.executefunction added- Examples for
Cluster.executeadded
[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
sameDomainDelaybug (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)toCluster.task({ page, data }).Cluster.queuecan 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.)