@crawlee/linkedom 3.15.4-beta.8 → 3.16.0

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.
package/README.md CHANGED
@@ -89,7 +89,7 @@ By default, Crawlee stores data to `./storage` in the current working directory.
89
89
  We provide automated beta builds for every merged code change in Crawlee. You can find them in the npm [list of releases](https://www.npmjs.com/package/crawlee?activeTab=versions). If you want to test new features or bug fixes before we release them, feel free to install a beta build like this:
90
90
 
91
91
  ```bash
92
- npm install crawlee@3.12.3-beta.13
92
+ npm install crawlee@next
93
93
  ```
94
94
 
95
95
  If you also use the [Apify SDK](https://github.com/apify/apify-sdk-js), you need to specify dependency overrides in your `package.json` file so that you don't end up with multiple versions of Crawlee installed:
@@ -98,9 +98,9 @@ If you also use the [Apify SDK](https://github.com/apify/apify-sdk-js), you need
98
98
  {
99
99
  "overrides": {
100
100
  "apify": {
101
- "@crawlee/core": "3.12.3-beta.13",
102
- "@crawlee/types": "3.12.3-beta.13",
103
- "@crawlee/utils": "3.12.3-beta.13"
101
+ "@crawlee/core": "$crawlee",
102
+ "@crawlee/types": "$crawlee",
103
+ "@crawlee/utils": "$crawlee"
104
104
  }
105
105
  }
106
106
  }
@@ -85,8 +85,8 @@ JSONData extends Dictionary = any> = RequestHandler<LinkeDOMCrawlingContext<User
85
85
  * ]
86
86
  * ```
87
87
  *
88
- * By default, `LinkeDOMCrawler` only processes web pages with the `text/html`
89
- * and `application/xhtml+xml` MIME content types (as reported by the `Content-Type` HTTP header),
88
+ * By default, `LinkeDOMCrawler` only processes web pages with the `text/html`, `application/xhtml+xml`, `text/xml`, `application/xml`,
89
+ * and `application/json` MIME content types (as reported by the `Content-Type` HTTP header),
90
90
  * and skips pages with other content types. If you want the crawler to process other content types,
91
91
  * use the {@link LinkeDOMCrawlerOptions.additionalMimeTypes} constructor option.
92
92
  * Beware that the parsing behavior differs for HTML, XML, JSON and other types of content.
@@ -49,8 +49,8 @@ const utilities_1 = require("@apify/utilities");
49
49
  * ]
50
50
  * ```
51
51
  *
52
- * By default, `LinkeDOMCrawler` only processes web pages with the `text/html`
53
- * and `application/xhtml+xml` MIME content types (as reported by the `Content-Type` HTTP header),
52
+ * By default, `LinkeDOMCrawler` only processes web pages with the `text/html`, `application/xhtml+xml`, `text/xml`, `application/xml`,
53
+ * and `application/json` MIME content types (as reported by the `Content-Type` HTTP header),
54
54
  * and skips pages with other content types. If you want the crawler to process other content types,
55
55
  * use the {@link LinkeDOMCrawlerOptions.additionalMimeTypes} constructor option.
56
56
  * Beware that the parsing behavior differs for HTML, XML, JSON and other types of content.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crawlee/linkedom",
3
- "version": "3.15.4-beta.8",
3
+ "version": "3.16.0",
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": ">=16.0.0"
@@ -55,8 +55,8 @@
55
55
  "dependencies": {
56
56
  "@apify/timeout": "^0.3.0",
57
57
  "@apify/utilities": "^2.7.10",
58
- "@crawlee/http": "3.15.4-beta.8",
59
- "@crawlee/types": "3.15.4-beta.8",
58
+ "@crawlee/http": "3.16.0",
59
+ "@crawlee/types": "3.16.0",
60
60
  "linkedom": "^0.18.0",
61
61
  "ow": "^0.28.2",
62
62
  "tslib": "^2.4.0"
@@ -68,5 +68,5 @@
68
68
  }
69
69
  }
70
70
  },
71
- "gitHead": "e5a61207a0be4c77e1f198984104ddb7a2cff583"
71
+ "gitHead": "e6451749f838744d539c81bf9d969c1cfcc9e86b"
72
72
  }