@crawlee/browser-pool 4.0.0-beta.124 → 4.0.0-beta.126

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crawlee/browser-pool",
3
- "version": "4.0.0-beta.124",
3
+ "version": "4.0.0-beta.126",
4
4
  "description": "Rotate multiple browsers using popular automation libraries such as Playwright or Puppeteer.",
5
5
  "engines": {
6
6
  "node": ">=22.0.0"
@@ -31,8 +31,8 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@apify/timeout": "^0.4.4",
34
- "@crawlee/core": "4.0.0-beta.124",
35
- "@crawlee/types": "4.0.0-beta.124",
34
+ "@crawlee/core": "4.0.0-beta.126",
35
+ "@crawlee/types": "4.0.0-beta.126",
36
36
  "fingerprint-generator": "^2.1.68",
37
37
  "fingerprint-injector": "^2.1.68",
38
38
  "lodash.merge": "^4.6.2",
@@ -63,5 +63,5 @@
63
63
  }
64
64
  }
65
65
  },
66
- "gitHead": "0694ee1b94c755b98141671baa93cc363f2bf8e3"
66
+ "gitHead": "5f0a8c1a43d4587f8640881fc55836a23e1c4f30"
67
67
  }
@@ -95,10 +95,10 @@ export interface RemoteBrowserPoolOptions {
95
95
  slotPollIntervalMillis?: number;
96
96
  }
97
97
  /**
98
- * The remote-connection configuration a browser crawler accepts on its `remoteBrowser` option. It is the
99
- * {@link RemoteBrowserPoolOptions} a user supplies *minus* the parts the crawler provides itself the
100
- * `browserPlugins` (the crawler builds the correct one for its browser) and `browserPoolOptions` (taken from
101
- * the crawler's own `browserPoolOptions`). This is what makes the crawler path both terse and mismatch-proof.
98
+ * The remote-connection configuration a browser crawler accepts on its `remoteBrowser` option: the
99
+ * {@link RemoteBrowserPoolOptions} minus the `browserPlugins` (the crawler builds the correct one for its
100
+ * browser, which is what makes this path mismatch-proof) and minus `browserPoolOptions` tuning the wrapping
101
+ * pool means building the pool yourself, through the `remote*BrowserPool()` factory for your crawler.
102
102
  */
103
103
  export type CrawlerRemoteBrowserOptions = Omit<RemoteBrowserPoolOptions, 'browserPlugins' | 'browserPoolOptions'>;
104
104
  /**