Skip to content

Commit 54133f7

Browse files
author
Apify Release Bot
committed
chore(release): v3.13.4
1 parent a433037 commit 54133f7

37 files changed

+302
-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.13.4](https://github.com/apify/crawlee/compare/v3.13.3...v3.13.4) (2025-05-14)
7+
8+
9+
### Bug Fixes
10+
11+
* **core:** respect `systemInfoV2` in snapshotter ([#2961](https://github.com/apify/crawlee/issues/2961)) ([4100eab](https://github.com/apify/crawlee/commit/4100eabf171d1dfc33ff312cbedf4e178d34ebdf)), closes [#2958](https://github.com/apify/crawlee/issues/2958)
12+
* **core:** use short timeouts for periodic `KVS.setRecord` calls ([#2962](https://github.com/apify/crawlee/issues/2962)) ([d31d90e](https://github.com/apify/crawlee/commit/d31d90e5288ea80b3ed6ec4a75a4b8f87686a2c4))
13+
* Optimize request unlocking to get rid of unnecessary unlock calls ([#2963](https://github.com/apify/crawlee/issues/2963)) ([a433037](https://github.com/apify/crawlee/commit/a433037f307ed3490a1ef5df334f1f9a9044510d))
14+
* **social:** extract emails from each text node separately ([#2952](https://github.com/apify/crawlee/issues/2952)) ([799afc1](https://github.com/apify/crawlee/commit/799afc1dbb6843efa9d585823674ea75b9b352ea))
15+
16+
17+
### Features
18+
19+
* Add Segment analytics [internal] ([#2960](https://github.com/apify/crawlee/issues/2960)) ([ea35685](https://github.com/apify/crawlee/commit/ea356853711c4daf5bbbfa888a1dc92d13d18a4d))
20+
* **impit-client:** bump `impit` version to v0.4 ([#2954](https://github.com/apify/crawlee/issues/2954)) ([7a1bf10](https://github.com/apify/crawlee/commit/7a1bf101250757d3a89f17c8bfd07267a46750bb))
21+
22+
23+
24+
25+
626
## [3.13.3](https://github.com/apify/crawlee/compare/v3.13.2...v3.13.3) (2025-05-05)
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.13.3",
5+
"version": "3.13.4",
66
"command": {
77
"version": {
88
"conventionalCommits": true,

packages/basic-crawler/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.13.4](https://github.com/apify/crawlee/compare/v3.13.3...v3.13.4) (2025-05-14)
7+
8+
9+
### Bug Fixes
10+
11+
* Optimize request unlocking to get rid of unnecessary unlock calls ([#2963](https://github.com/apify/crawlee/issues/2963)) ([a433037](https://github.com/apify/crawlee/commit/a433037f307ed3490a1ef5df334f1f9a9044510d))
12+
13+
14+
15+
16+
617
## [3.13.3](https://github.com/apify/crawlee/compare/v3.13.2...v3.13.3) (2025-05-05)
718

819

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.13.3",
3+
"version": "3.13.4",
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.13.3",
52-
"@crawlee/types": "3.13.3",
53-
"@crawlee/utils": "3.13.3",
51+
"@crawlee/core": "^3.13.4",
52+
"@crawlee/types": "^3.13.4",
53+
"@crawlee/utils": "^3.13.4",
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.13.4](https://github.com/apify/crawlee/compare/v3.13.3...v3.13.4) (2025-05-14)
7+
8+
**Note:** Version bump only for package @crawlee/browser
9+
10+
11+
12+
13+
614
## [3.13.3](https://github.com/apify/crawlee/compare/v3.13.2...v3.13.3) (2025-05-05)
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.13.3",
3+
"version": "3.13.4",
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.13.3",
58-
"@crawlee/browser-pool": "3.13.3",
59-
"@crawlee/types": "3.13.3",
60-
"@crawlee/utils": "3.13.3",
57+
"@crawlee/basic": "^3.13.4",
58+
"@crawlee/browser-pool": "^3.13.4",
59+
"@crawlee/types": "^3.13.4",
60+
"@crawlee/utils": "^3.13.4",
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.13.4](https://github.com/apify/crawlee/compare/v3.13.3...v3.13.4) (2025-05-14)
7+
8+
**Note:** Version bump only for package @crawlee/browser-pool
9+
10+
11+
12+
13+
614
## [3.13.3](https://github.com/apify/crawlee/compare/v3.13.2...v3.13.3) (2025-05-05)
715

816

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.13.3",
3+
"version": "3.13.4",
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.13.3",
42-
"@crawlee/types": "3.13.3",
41+
"@crawlee/core": "^3.13.4",
42+
"@crawlee/types": "^3.13.4",
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.13.4](https://github.com/apify/crawlee/compare/v3.13.3...v3.13.4) (2025-05-14)
7+
8+
**Note:** Version bump only for package @crawlee/cheerio
9+
10+
11+
12+
13+
614
## [3.13.3](https://github.com/apify/crawlee/compare/v3.13.2...v3.13.3) (2025-05-05)
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.13.3",
3+
"version": "3.13.4",
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.13.3",
57-
"@crawlee/types": "3.13.3",
58-
"@crawlee/utils": "3.13.3",
56+
"@crawlee/http": "^3.13.4",
57+
"@crawlee/types": "^3.13.4",
58+
"@crawlee/utils": "^3.13.4",
5959
"cheerio": "1.0.0-rc.12",
6060
"htmlparser2": "^9.0.0",
6161
"tslib": "^2.4.0"

packages/cli/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.13.4](https://github.com/apify/crawlee/compare/v3.13.3...v3.13.4) (2025-05-14)
7+
8+
**Note:** Version bump only for package @crawlee/cli
9+
10+
11+
12+
13+
614
## [3.13.3](https://github.com/apify/crawlee/compare/v3.13.2...v3.13.3) (2025-05-05)
715

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

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@crawlee/cli",
3-
"version": "3.13.3",
3+
"version": "3.13.4",
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"
@@ -51,7 +51,7 @@
5151
"access": "public"
5252
},
5353
"dependencies": {
54-
"@crawlee/templates": "3.13.3",
54+
"@crawlee/templates": "^3.13.4",
5555
"ansi-colors": "^4.1.3",
5656
"fs-extra": "^11.0.0",
5757
"inquirer": "^8.2.4",

packages/core/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
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.13.4](https://github.com/apify/crawlee/compare/v3.13.3...v3.13.4) (2025-05-14)
7+
8+
9+
### Bug Fixes
10+
11+
* **core:** respect `systemInfoV2` in snapshotter ([#2961](https://github.com/apify/crawlee/issues/2961)) ([4100eab](https://github.com/apify/crawlee/commit/4100eabf171d1dfc33ff312cbedf4e178d34ebdf)), closes [#2958](https://github.com/apify/crawlee/issues/2958)
12+
* **core:** use short timeouts for periodic `KVS.setRecord` calls ([#2962](https://github.com/apify/crawlee/issues/2962)) ([d31d90e](https://github.com/apify/crawlee/commit/d31d90e5288ea80b3ed6ec4a75a4b8f87686a2c4))
13+
* Optimize request unlocking to get rid of unnecessary unlock calls ([#2963](https://github.com/apify/crawlee/issues/2963)) ([a433037](https://github.com/apify/crawlee/commit/a433037f307ed3490a1ef5df334f1f9a9044510d))
14+
15+
16+
17+
18+
619
## [3.13.3](https://github.com/apify/crawlee/compare/v3.13.2...v3.13.3) (2025-05-05)
720

821

packages/core/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@crawlee/core",
3-
"version": "3.13.3",
3+
"version": "3.13.4",
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"
@@ -59,9 +59,9 @@
5959
"@apify/pseudo_url": "^2.0.30",
6060
"@apify/timeout": "^0.3.0",
6161
"@apify/utilities": "^2.7.10",
62-
"@crawlee/memory-storage": "3.13.3",
63-
"@crawlee/types": "3.13.3",
64-
"@crawlee/utils": "3.13.3",
62+
"@crawlee/memory-storage": "^3.13.4",
63+
"@crawlee/types": "^3.13.4",
64+
"@crawlee/utils": "^3.13.4",
6565
"@sapphire/async-queue": "^1.5.1",
6666
"@vladfrangu/async_event_emitter": "^2.2.2",
6767
"csv-stringify": "^6.2.0",

packages/crawlee/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.13.4](https://github.com/apify/crawlee/compare/v3.13.3...v3.13.4) (2025-05-14)
7+
8+
**Note:** Version bump only for package crawlee
9+
10+
11+
12+
13+
614
## [3.13.3](https://github.com/apify/crawlee/compare/v3.13.2...v3.13.3) (2025-05-05)
715

816
**Note:** Version bump only for package crawlee

packages/crawlee/package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "crawlee",
3-
"version": "3.13.3",
3+
"version": "3.13.4",
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,18 +54,18 @@
5454
"access": "public"
5555
},
5656
"dependencies": {
57-
"@crawlee/basic": "3.13.3",
58-
"@crawlee/browser": "3.13.3",
59-
"@crawlee/browser-pool": "3.13.3",
60-
"@crawlee/cheerio": "3.13.3",
61-
"@crawlee/cli": "3.13.3",
62-
"@crawlee/core": "3.13.3",
63-
"@crawlee/http": "3.13.3",
64-
"@crawlee/jsdom": "3.13.3",
65-
"@crawlee/linkedom": "3.13.3",
66-
"@crawlee/playwright": "3.13.3",
67-
"@crawlee/puppeteer": "3.13.3",
68-
"@crawlee/utils": "3.13.3",
57+
"@crawlee/basic": "^3.13.4",
58+
"@crawlee/browser": "^3.13.4",
59+
"@crawlee/browser-pool": "^3.13.4",
60+
"@crawlee/cheerio": "^3.13.4",
61+
"@crawlee/cli": "^3.13.4",
62+
"@crawlee/core": "^3.13.4",
63+
"@crawlee/http": "^3.13.4",
64+
"@crawlee/jsdom": "^3.13.4",
65+
"@crawlee/linkedom": "^3.13.4",
66+
"@crawlee/playwright": "^3.13.4",
67+
"@crawlee/puppeteer": "^3.13.4",
68+
"@crawlee/utils": "^3.13.4",
6969
"import-local": "^3.1.0",
7070
"tslib": "^2.4.0"
7171
},

packages/http-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.13.4](https://github.com/apify/crawlee/compare/v3.13.3...v3.13.4) (2025-05-14)
7+
8+
**Note:** Version bump only for package @crawlee/http
9+
10+
11+
12+
13+
614
## [3.13.3](https://github.com/apify/crawlee/compare/v3.13.2...v3.13.3) (2025-05-05)
715

816

packages/http-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/http",
3-
"version": "3.13.3",
3+
"version": "3.13.4",
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"
@@ -55,9 +55,9 @@
5555
"dependencies": {
5656
"@apify/timeout": "^0.3.0",
5757
"@apify/utilities": "^2.7.10",
58-
"@crawlee/basic": "3.13.3",
59-
"@crawlee/types": "3.13.3",
60-
"@crawlee/utils": "3.13.3",
58+
"@crawlee/basic": "^3.13.4",
59+
"@crawlee/types": "^3.13.4",
60+
"@crawlee/utils": "^3.13.4",
6161
"@types/content-type": "^1.1.5",
6262
"cheerio": "1.0.0-rc.12",
6363
"content-type": "^1.0.4",

packages/impit-client/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.13.4](https://github.com/apify/crawlee/compare/v3.13.3...v3.13.4) (2025-05-14)
7+
8+
9+
### Features
10+
11+
* **impit-client:** bump `impit` version to v0.4 ([#2954](https://github.com/apify/crawlee/issues/2954)) ([7a1bf10](https://github.com/apify/crawlee/commit/7a1bf101250757d3a89f17c8bfd07267a46750bb))
12+
13+
14+
15+
16+
617
## [3.13.3](https://github.com/apify/crawlee/compare/v3.13.2...v3.13.3) (2025-05-05)
718

819
**Note:** Version bump only for package @crawlee/impit-client

packages/impit-client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@crawlee/impit-client",
3-
"version": "3.13.3",
3+
"version": "3.13.4",
44
"description": "impit-based HTTP client implementation for Crawlee. Impersonates browser requests to avoid bot detection.",
55
"engines": {
66
"node": ">=20.0.0"
@@ -56,7 +56,7 @@
5656
"@crawlee/core": "^3.12.1"
5757
},
5858
"devDependencies": {
59-
"@crawlee/core": "^3.13.3"
59+
"@crawlee/core": "^3.13.4"
6060
},
6161
"dependencies": {
6262
"@apify/datastructures": "^2.0.3",

packages/jsdom-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.13.4](https://github.com/apify/crawlee/compare/v3.13.3...v3.13.4) (2025-05-14)
7+
8+
**Note:** Version bump only for package @crawlee/jsdom
9+
10+
11+
12+
13+
614
## [3.13.3](https://github.com/apify/crawlee/compare/v3.13.2...v3.13.3) (2025-05-05)
715

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

0 commit comments

Comments
 (0)