@crawlee/basic 4.0.0-beta.73 → 4.0.0-beta.75

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.
@@ -311,6 +311,8 @@ export class BasicCrawler {
311
311
  extendContext: options.extendContext,
312
312
  };
313
313
  this.#log = serviceLocator.getLogger().child({ prefix: this.constructor.name });
314
+ // Initialize the Configuration instance to avoid lazy loading in the components
315
+ serviceLocator.getConfiguration();
314
316
  // Store whether the user explicitly provided an ID
315
317
  this.hasExplicitId = id !== undefined;
316
318
  // Store the user-provided ID, or generate a unique one for tracking purposes (not for state key)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crawlee/basic",
3
- "version": "4.0.0-beta.73",
3
+ "version": "4.0.0-beta.75",
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"
@@ -42,10 +42,10 @@
42
42
  "@apify/datastructures": "^2.0.0",
43
43
  "@apify/timeout": "^0.3.2",
44
44
  "@apify/utilities": "^2.15.5",
45
- "@crawlee/core": "4.0.0-beta.73",
46
- "@crawlee/http-client": "4.0.0-beta.73",
47
- "@crawlee/types": "4.0.0-beta.73",
48
- "@crawlee/utils": "4.0.0-beta.73",
45
+ "@crawlee/core": "4.0.0-beta.75",
46
+ "@crawlee/http-client": "4.0.0-beta.75",
47
+ "@crawlee/types": "4.0.0-beta.75",
48
+ "@crawlee/utils": "4.0.0-beta.75",
49
49
  "csv-stringify": "^6.5.2",
50
50
  "fs-extra": "^11.3.0",
51
51
  "ow": "^2.0.0",
@@ -54,7 +54,7 @@
54
54
  "type-fest": "^4.41.0"
55
55
  },
56
56
  "optionalDependencies": {
57
- "@crawlee/impit-client": "^4.0.0-beta.73"
57
+ "@crawlee/impit-client": "^4.0.0-beta.75"
58
58
  },
59
59
  "lerna": {
60
60
  "command": {
@@ -63,5 +63,5 @@
63
63
  }
64
64
  }
65
65
  },
66
- "gitHead": "d19ee418b814ada81b1520a6b7c4f889bb540f0c"
66
+ "gitHead": "298b8eeaec01f1d0ab8e6d58461d7268afdafbba"
67
67
  }