@crawlee/linkedom 4.0.0-beta.87 → 4.0.0-beta.89

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -98,9 +98,9 @@ JSONData extends Dictionary = any> = RequestHandler<LinkeDOMCrawlingContext<User
98
98
  *
99
99
  * New requests are only dispatched when there is enough free CPU and memory available,
100
100
  * using the functionality provided by the {@link AutoscaledPool} class.
101
- * All {@link AutoscaledPool} configuration options can be passed to the `autoscaledPoolOptions`
102
- * parameter of the `CheerioCrawler` constructor. For user convenience, the `minConcurrency` and `maxConcurrency`
103
- * {@link AutoscaledPool} options are available directly in the `CheerioCrawler` constructor.
101
+ * Concurrency is tuned via the `minConcurrency`, `maxConcurrency` and `maxRequestsPerMinute` options of the
102
+ * `LinkeDOMCrawler` constructor, or, for finer control, by injecting a pre-configured
103
+ * {@link ConcurrencySystem|`concurrencySystem`}.
104
104
  *
105
105
  * **Example usage:**
106
106
  *
@@ -52,9 +52,9 @@ import { DOMParser } from 'linkedom/cached';
52
52
  *
53
53
  * New requests are only dispatched when there is enough free CPU and memory available,
54
54
  * using the functionality provided by the {@link AutoscaledPool} class.
55
- * All {@link AutoscaledPool} configuration options can be passed to the `autoscaledPoolOptions`
56
- * parameter of the `CheerioCrawler` constructor. For user convenience, the `minConcurrency` and `maxConcurrency`
57
- * {@link AutoscaledPool} options are available directly in the `CheerioCrawler` constructor.
55
+ * Concurrency is tuned via the `minConcurrency`, `maxConcurrency` and `maxRequestsPerMinute` options of the
56
+ * `LinkeDOMCrawler` constructor, or, for finer control, by injecting a pre-configured
57
+ * {@link ConcurrencySystem|`concurrencySystem`}.
58
58
  *
59
59
  * **Example usage:**
60
60
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crawlee/linkedom",
3
- "version": "4.0.0-beta.87",
3
+ "version": "4.0.0-beta.89",
4
4
  "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.",
5
5
  "engines": {
6
6
  "node": ">=22.0.0"
@@ -49,9 +49,9 @@
49
49
  "dependencies": {
50
50
  "@apify/timeout": "^0.3.2",
51
51
  "@apify/utilities": "^2.15.5",
52
- "@crawlee/http": "4.0.0-beta.87",
53
- "@crawlee/types": "4.0.0-beta.87",
54
- "@crawlee/utils": "4.0.0-beta.87",
52
+ "@crawlee/http": "4.0.0-beta.89",
53
+ "@crawlee/types": "4.0.0-beta.89",
54
+ "@crawlee/utils": "4.0.0-beta.89",
55
55
  "cheerio": "^1.0.0",
56
56
  "linkedom": "^0.18.10",
57
57
  "ow": "^2.0.0",
@@ -64,5 +64,5 @@
64
64
  }
65
65
  }
66
66
  },
67
- "gitHead": "1b7604cd77b694460aac4448b4555444fa1b2bdb"
67
+ "gitHead": "9279941162eb4be0a9113f768b5bd79d27e66eba"
68
68
  }