@crawlee/linkedom 3.12.3-beta.8 → 3.13.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
@@ -80,6 +80,28 @@ await crawler.run(['https://crawlee.dev']);
80
80
 
81
81
  By default, Crawlee stores data to `./storage` in the current working directory. You can override this directory via Crawlee configuration. For details, see [Configuration guide](https://crawlee.dev/docs/guides/configuration), [Request storage](https://crawlee.dev/docs/guides/request-storage) and [Result storage](https://crawlee.dev/docs/guides/result-storage).
82
82
 
83
+ ### Installing pre-release versions
84
+
85
+ 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:
86
+
87
+ ```bash
88
+ npm install crawlee@3.12.3-beta.13
89
+ ```
90
+
91
+ 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:
92
+
93
+ ```json
94
+ {
95
+ "overrides": {
96
+ "apify": {
97
+ "@crawlee/core": "3.12.3-beta.13",
98
+ "@crawlee/types": "3.12.3-beta.13",
99
+ "@crawlee/utils": "3.12.3-beta.13"
100
+ }
101
+ }
102
+ }
103
+ ```
104
+
83
105
  ## 🛠 Features
84
106
 
85
107
  - Single interface for **HTTP and headless browser** crawling
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crawlee/linkedom",
3
- "version": "3.12.3-beta.8",
3
+ "version": "3.13.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.12.3-beta.8",
59
- "@crawlee/types": "3.12.3-beta.8",
58
+ "@crawlee/http": "3.13.0",
59
+ "@crawlee/types": "3.13.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": "bb6e3e75781a2d81ca426937c30eb0b87393e568"
71
+ "gitHead": "6d5b13ae318909a66001cfc4daa1425ca88b3bb3"
72
72
  }