Skip to content

Commit 72cf62d

Browse files
author
Apify Release Bot
committed
chore(release): v3.15.2
1 parent 8038b7b commit 72cf62d

File tree

37 files changed

+308
-129
lines changed

37 files changed

+308
-129
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,29 @@
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.15.2](https://github.com/apify/crawlee/compare/v3.15.1...v3.15.2) (2025-10-23)
7+
8+
9+
### Bug Fixes
10+
11+
* correctly apply `launchOptions` with `useIncognitoPages` ([#3181](https://github.com/apify/crawlee/issues/3181)) ([84a4b70](https://github.com/apify/crawlee/commit/84a4b709ee59d9edbcdc9a19559fefa4e9139ba4)), closes [/github.com/apify/crawlee/issues/3173#issuecomment-3346728227](https://github.com//github.com/apify/crawlee/issues/3173/issues/issuecomment-3346728227) [#3173](https://github.com/apify/crawlee/issues/3173) [#3173](https://github.com/apify/crawlee/issues/3173)
12+
* enable `systemInfoV2` by default ([#3208](https://github.com/apify/crawlee/issues/3208)) ([617a343](https://github.com/apify/crawlee/commit/617a343d4f594635adfff3c41a3632a19144749a))
13+
* Re-export MemoryStorage from the crawlee package ([#3200](https://github.com/apify/crawlee/issues/3200)) ([e183ea9](https://github.com/apify/crawlee/commit/e183ea9b239a985fe64729dd8132fbe4d13f73d8))
14+
15+
16+
### Features
17+
18+
* export cheerio types in all crawler packages ([#3204](https://github.com/apify/crawlee/issues/3204)) ([f05790b](https://github.com/apify/crawlee/commit/f05790b8c4e77056fd3cdbdd6d6abe3186ddf104))
19+
20+
21+
### Performance Improvements
22+
23+
* don't await `crawler.setStatusMessage` ([#3207](https://github.com/apify/crawlee/issues/3207)) ([1a67ffb](https://github.com/apify/crawlee/commit/1a67ffbf22e0ecf034d30a2215c4bd0f0ecbf41e))
24+
25+
26+
27+
28+
629
## [3.15.1](https://github.com/apify/crawlee/compare/v3.15.0...v3.15.1) (2025-09-26)
730

831

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.15.1",
5+
"version": "3.15.2",
66
"command": {
77
"version": {
88
"conventionalCommits": true,

packages/basic-crawler/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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.15.2](https://github.com/apify/crawlee/compare/v3.15.1...v3.15.2) (2025-10-23)
7+
8+
9+
### Features
10+
11+
* export cheerio types in all crawler packages ([#3204](https://github.com/apify/crawlee/issues/3204)) ([f05790b](https://github.com/apify/crawlee/commit/f05790b8c4e77056fd3cdbdd6d6abe3186ddf104))
12+
13+
14+
### Performance Improvements
15+
16+
* don't await `crawler.setStatusMessage` ([#3207](https://github.com/apify/crawlee/issues/3207)) ([1a67ffb](https://github.com/apify/crawlee/commit/1a67ffbf22e0ecf034d30a2215c4bd0f0ecbf41e))
17+
18+
19+
20+
21+
622
## [3.15.1](https://github.com/apify/crawlee/compare/v3.15.0...v3.15.1) (2025-09-26)
723

824

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.15.1",
3+
"version": "3.15.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.15.1",
52-
"@crawlee/types": "3.15.1",
53-
"@crawlee/utils": "3.15.1",
51+
"@crawlee/core": "^3.15.2",
52+
"@crawlee/types": "^3.15.2",
53+
"@crawlee/utils": "^3.15.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.15.2](https://github.com/apify/crawlee/compare/v3.15.1...v3.15.2) (2025-10-23)
7+
8+
**Note:** Version bump only for package @crawlee/browser
9+
10+
11+
12+
13+
614
## [3.15.1](https://github.com/apify/crawlee/compare/v3.15.0...v3.15.1) (2025-09-26)
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.15.1",
3+
"version": "3.15.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.15.1",
58-
"@crawlee/browser-pool": "3.15.1",
59-
"@crawlee/types": "3.15.1",
60-
"@crawlee/utils": "3.15.1",
57+
"@crawlee/basic": "^3.15.2",
58+
"@crawlee/browser-pool": "^3.15.2",
59+
"@crawlee/types": "^3.15.2",
60+
"@crawlee/utils": "^3.15.2",
6161
"ow": "^0.28.1",
6262
"tslib": "^2.4.0",
6363
"type-fest": "^4.0.0"

packages/browser-pool/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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.15.2](https://github.com/apify/crawlee/compare/v3.15.1...v3.15.2) (2025-10-23)
7+
8+
9+
### Bug Fixes
10+
11+
* correctly apply `launchOptions` with `useIncognitoPages` ([#3181](https://github.com/apify/crawlee/issues/3181)) ([84a4b70](https://github.com/apify/crawlee/commit/84a4b709ee59d9edbcdc9a19559fefa4e9139ba4)), closes [/github.com/apify/crawlee/issues/3173#issuecomment-3346728227](https://github.com//github.com/apify/crawlee/issues/3173/issues/issuecomment-3346728227) [#3173](https://github.com/apify/crawlee/issues/3173) [#3173](https://github.com/apify/crawlee/issues/3173)
12+
13+
14+
15+
16+
617
## [3.15.1](https://github.com/apify/crawlee/compare/v3.15.0...v3.15.1) (2025-09-26)
718

819
**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.15.1",
3+
"version": "3.15.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.15.1",
42-
"@crawlee/types": "3.15.1",
41+
"@crawlee/core": "^3.15.2",
42+
"@crawlee/types": "^3.15.2",
4343
"fingerprint-generator": "^2.1.68",
4444
"fingerprint-injector": "^2.1.68",
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.15.2](https://github.com/apify/crawlee/compare/v3.15.1...v3.15.2) (2025-10-23)
7+
8+
**Note:** Version bump only for package @crawlee/cheerio
9+
10+
11+
12+
13+
614
## [3.15.1](https://github.com/apify/crawlee/compare/v3.15.0...v3.15.1) (2025-09-26)
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.15.1",
3+
"version": "3.15.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.15.1",
57-
"@crawlee/types": "3.15.1",
58-
"@crawlee/utils": "3.15.1",
56+
"@crawlee/http": "^3.15.2",
57+
"@crawlee/types": "^3.15.2",
58+
"@crawlee/utils": "^3.15.2",
5959
"cheerio": "1.0.0-rc.12",
6060
"htmlparser2": "^9.0.0",
6161
"tslib": "^2.4.0"

0 commit comments

Comments
 (0)