Skip to content

Commit 5f15f56

Browse files
author
Apify Release Bot
committed
chore(release): v3.12.2
1 parent fea32cd commit 5f15f56

File tree

37 files changed

+305
-129
lines changed

37 files changed

+305
-129
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,26 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.12.2](https://github.com/apify/crawlee/compare/v3.12.1...v3.12.2) (2025-01-27)
7+
8+
9+
### Bug Fixes
10+
11+
* **core:** type definition of Dataset.reduce ([#2774](https://github.com/apify/crawlee/issues/2774)) ([59bc6d1](https://github.com/apify/crawlee/commit/59bc6d12cbd9e81c06ee18d0a6390b7806e346ae)), closes [#2773](https://github.com/apify/crawlee/issues/2773)
12+
* destructure `CrawlerRunOptions` before passing them to `addRequests` ([#2803](https://github.com/apify/crawlee/issues/2803)) ([02a598c](https://github.com/apify/crawlee/commit/02a598c2a501957f04ca3a2362bcee289ef861c0)), closes [#2802](https://github.com/apify/crawlee/issues/2802)
13+
* graceful `BasicCrawler` tidy-up on `CriticalError` ([#2817](https://github.com/apify/crawlee/issues/2817)) ([53331e8](https://github.com/apify/crawlee/commit/53331e82ee66274316add7cadb4afec1ce2d4bcf)), closes [#2807](https://github.com/apify/crawlee/issues/2807)
14+
15+
16+
### Features
17+
18+
* `impit`-based `HttpClient` implementation ([#2787](https://github.com/apify/crawlee/issues/2787)) ([61d7ffa](https://github.com/apify/crawlee/commit/61d7ffae8aff8dd4451fea63ecc0d25c243a6271))
19+
* add support for parsing comma-separated list environment variables ([#2765](https://github.com/apify/crawlee/issues/2765)) ([4e50c47](https://github.com/apify/crawlee/commit/4e50c474f60df66585c6decf07532c790c8e63a7))
20+
* stopping the crawlers gracefully with `BasicCrawler.stop()` ([#2792](https://github.com/apify/crawlee/issues/2792)) ([af2966f](https://github.com/apify/crawlee/commit/af2966f65caeaf4273fd0a8ab583a7857e4330ab)), closes [#2777](https://github.com/apify/crawlee/issues/2777)
21+
22+
23+
24+
25+
626
## [3.12.1](https://github.com/apify/crawlee/compare/v3.12.0...v3.12.1) (2024-12-04)
727

828

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "3.12.1",
5+
"version": "3.12.2",
66
"command": {
77
"version": {
88
"conventionalCommits": true,

packages/basic-crawler/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.12.2](https://github.com/apify/crawlee/compare/v3.12.1...v3.12.2) (2025-01-27)
7+
8+
9+
### Bug Fixes
10+
11+
* destructure `CrawlerRunOptions` before passing them to `addRequests` ([#2803](https://github.com/apify/crawlee/issues/2803)) ([02a598c](https://github.com/apify/crawlee/commit/02a598c2a501957f04ca3a2362bcee289ef861c0)), closes [#2802](https://github.com/apify/crawlee/issues/2802)
12+
* graceful `BasicCrawler` tidy-up on `CriticalError` ([#2817](https://github.com/apify/crawlee/issues/2817)) ([53331e8](https://github.com/apify/crawlee/commit/53331e82ee66274316add7cadb4afec1ce2d4bcf)), closes [#2807](https://github.com/apify/crawlee/issues/2807)
13+
14+
15+
### Features
16+
17+
* stopping the crawlers gracefully with `BasicCrawler.stop()` ([#2792](https://github.com/apify/crawlee/issues/2792)) ([af2966f](https://github.com/apify/crawlee/commit/af2966f65caeaf4273fd0a8ab583a7857e4330ab)), closes [#2777](https://github.com/apify/crawlee/issues/2777)
18+
19+
20+
21+
22+
623
## [3.12.1](https://github.com/apify/crawlee/compare/v3.12.0...v3.12.1) (2024-12-04)
724

825

packages/basic-crawler/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@crawlee/basic",
3-
"version": "3.12.1",
3+
"version": "3.12.2",
44
"description": "The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.",
55
"engines": {
66
"node": ">=16.0.0"
@@ -48,9 +48,9 @@
4848
"@apify/log": "^2.4.0",
4949
"@apify/timeout": "^0.3.0",
5050
"@apify/utilities": "^2.7.10",
51-
"@crawlee/core": "3.12.1",
52-
"@crawlee/types": "3.12.1",
53-
"@crawlee/utils": "3.12.1",
51+
"@crawlee/core": "^3.12.2",
52+
"@crawlee/types": "^3.12.2",
53+
"@crawlee/utils": "^3.12.2",
5454
"csv-stringify": "^6.2.0",
5555
"fs-extra": "^11.0.0",
5656
"got-scraping": "^4.0.0",

packages/browser-crawler/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.12.2](https://github.com/apify/crawlee/compare/v3.12.1...v3.12.2) (2025-01-27)
7+
8+
**Note:** Version bump only for package @crawlee/browser
9+
10+
11+
12+
13+
614
## [3.12.1](https://github.com/apify/crawlee/compare/v3.12.0...v3.12.1) (2024-12-04)
715

816
**Note:** Version bump only for package @crawlee/browser

packages/browser-crawler/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@crawlee/browser",
3-
"version": "3.12.1",
3+
"version": "3.12.2",
44
"description": "The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.",
55
"engines": {
66
"node": ">=16.0.0"
@@ -54,10 +54,10 @@
5454
},
5555
"dependencies": {
5656
"@apify/timeout": "^0.3.0",
57-
"@crawlee/basic": "3.12.1",
58-
"@crawlee/browser-pool": "3.12.1",
59-
"@crawlee/types": "3.12.1",
60-
"@crawlee/utils": "3.12.1",
57+
"@crawlee/basic": "^3.12.2",
58+
"@crawlee/browser-pool": "^3.12.2",
59+
"@crawlee/types": "^3.12.2",
60+
"@crawlee/utils": "^3.12.2",
6161
"ow": "^0.28.1",
6262
"tslib": "^2.4.0",
6363
"type-fest": "^4.0.0"

packages/browser-pool/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.12.2](https://github.com/apify/crawlee/compare/v3.12.1...v3.12.2) (2025-01-27)
7+
8+
**Note:** Version bump only for package @crawlee/browser-pool
9+
10+
11+
12+
13+
614
## [3.12.1](https://github.com/apify/crawlee/compare/v3.12.0...v3.12.1) (2024-12-04)
715

816
**Note:** Version bump only for package @crawlee/browser-pool

packages/browser-pool/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@crawlee/browser-pool",
3-
"version": "3.12.1",
3+
"version": "3.12.2",
44
"description": "Rotate multiple browsers using popular automation libraries such as Playwright or Puppeteer.",
55
"engines": {
66
"node": ">=16.0.0"
@@ -38,8 +38,8 @@
3838
"dependencies": {
3939
"@apify/log": "^2.4.0",
4040
"@apify/timeout": "^0.3.0",
41-
"@crawlee/core": "3.12.1",
42-
"@crawlee/types": "3.12.1",
41+
"@crawlee/core": "^3.12.2",
42+
"@crawlee/types": "^3.12.2",
4343
"fingerprint-generator": "^2.0.6",
4444
"fingerprint-injector": "^2.0.5",
4545
"lodash.merge": "^4.6.2",

packages/cheerio-crawler/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.12.2](https://github.com/apify/crawlee/compare/v3.12.1...v3.12.2) (2025-01-27)
7+
8+
**Note:** Version bump only for package @crawlee/cheerio
9+
10+
11+
12+
13+
614
## [3.12.1](https://github.com/apify/crawlee/compare/v3.12.0...v3.12.1) (2024-12-04)
715

816
**Note:** Version bump only for package @crawlee/cheerio

packages/cheerio-crawler/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@crawlee/cheerio",
3-
"version": "3.12.1",
3+
"version": "3.12.2",
44
"description": "The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.",
55
"engines": {
66
"node": ">=16.0.0"
@@ -53,9 +53,9 @@
5353
"access": "public"
5454
},
5555
"dependencies": {
56-
"@crawlee/http": "3.12.1",
57-
"@crawlee/types": "3.12.1",
58-
"@crawlee/utils": "3.12.1",
56+
"@crawlee/http": "^3.12.2",
57+
"@crawlee/types": "^3.12.2",
58+
"@crawlee/utils": "^3.12.2",
5959
"cheerio": "1.0.0-rc.12",
6060
"htmlparser2": "^9.0.0",
6161
"tslib": "^2.4.0"

0 commit comments

Comments
 (0)