apify 3.2.0 → 3.2.1
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 +4 -4
- package/actor.d.ts +110 -110
- package/actor.d.ts.map +1 -1
- package/actor.js +90 -89
- package/actor.js.map +1 -1
- package/package.json +3 -2
- package/platform_event_manager.d.ts +8 -8
- package/platform_event_manager.js +9 -9
- package/proxy_configuration.d.ts +2 -2
- package/tsconfig.build.tsbuildinfo +1 -1
- package/utils.d.ts +5 -0
- package/utils.d.ts.map +1 -1
- package/utils.js +36 -1
- package/utils.js.map +1 -1
package/utils.d.ts
CHANGED
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
* @internal
|
|
4
4
|
*/
|
|
5
5
|
export declare function logSystemInfo(): void;
|
|
6
|
+
/**
|
|
7
|
+
* Logs info about system, node version and apify package version.
|
|
8
|
+
* @internal
|
|
9
|
+
*/
|
|
10
|
+
export declare function checkCrawleeVersion(): void;
|
|
6
11
|
/**
|
|
7
12
|
* Prints a warning if this version of Apify SDK is outdated.
|
|
8
13
|
* @ignore
|
package/utils.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AAeA;;;GAGG;AACH,wBAAgB,aAAa,SAQ5B;AAED;;;GAGG;AACH,wBAAgB,mBAAmB,SA8BlC;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,SAOtC"}
|
package/utils.js
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.printOutdatedSdkWarning = exports.logSystemInfo = void 0;
|
|
3
|
+
exports.printOutdatedSdkWarning = exports.checkCrawleeVersion = exports.logSystemInfo = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const node_os_1 = require("node:os");
|
|
6
|
+
const node_path_1 = require("node:path");
|
|
6
7
|
const consts_1 = require("@apify/consts");
|
|
7
8
|
const log_1 = tslib_1.__importDefault(require("@apify/log"));
|
|
8
9
|
// @ts-expect-error if we enable resolveJsonModule, we end up with `src` folder in `dist`
|
|
9
10
|
const package_json_1 = require("@crawlee/core/package.json");
|
|
10
11
|
// @ts-expect-error if we enable resolveJsonModule, we end up with `src` folder in `dist`
|
|
11
12
|
const package_json_2 = require("apify-client/package.json");
|
|
13
|
+
const fs_extra_1 = require("fs-extra");
|
|
12
14
|
const semver_1 = tslib_1.__importDefault(require("semver"));
|
|
13
15
|
// @ts-expect-error if we enable resolveJsonModule, we end up with `src` folder in `dist`
|
|
14
16
|
const package_json_3 = require("./package.json");
|
|
@@ -26,6 +28,39 @@ function logSystemInfo() {
|
|
|
26
28
|
});
|
|
27
29
|
}
|
|
28
30
|
exports.logSystemInfo = logSystemInfo;
|
|
31
|
+
/**
|
|
32
|
+
* Logs info about system, node version and apify package version.
|
|
33
|
+
* @internal
|
|
34
|
+
*/
|
|
35
|
+
function checkCrawleeVersion() {
|
|
36
|
+
const paths = [
|
|
37
|
+
// when users install `crawlee` package, we need to check its core dependency
|
|
38
|
+
(0, node_path_1.normalize)(`${process.cwd()}/node_modules/crawlee/node_modules/@crawlee/core/package.json`),
|
|
39
|
+
// when users install `@crawlee/cheerio` or other crawler package, we need to check the dependency under basic crawler package
|
|
40
|
+
(0, node_path_1.normalize)(`${process.cwd()}/node_modules/@crawlee/basic/node_modules/@crawlee/core/package.json`),
|
|
41
|
+
// also check paths via `require.resolve` to support pnpm
|
|
42
|
+
require.resolve('crawlee/package.json'),
|
|
43
|
+
require.resolve('@crawlee/basic/package.json'),
|
|
44
|
+
];
|
|
45
|
+
for (const path of paths) {
|
|
46
|
+
if (!(0, fs_extra_1.pathExistsSync)(path)) {
|
|
47
|
+
continue;
|
|
48
|
+
}
|
|
49
|
+
let version;
|
|
50
|
+
try {
|
|
51
|
+
version = (0, fs_extra_1.readJSONSync)(path).version;
|
|
52
|
+
}
|
|
53
|
+
catch {
|
|
54
|
+
//
|
|
55
|
+
}
|
|
56
|
+
if (version != null && version !== package_json_1.version) {
|
|
57
|
+
const details = `User installed version (${version}) found in ${path}.\nSDK uses ${package_json_1.version} from ${require.resolve('@crawlee/core')}`;
|
|
58
|
+
// eslint-disable-next-line max-len
|
|
59
|
+
throw new Error(`Detected incompatible Crawlee version used by the SDK. User installed ${version} but the SDK uses ${package_json_1.version}.\n\n${details}`);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
exports.checkCrawleeVersion = checkCrawleeVersion;
|
|
29
64
|
/**
|
|
30
65
|
* Prints a warning if this version of Apify SDK is outdated.
|
|
31
66
|
* @ignore
|
package/utils.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":";;;;AAAA,qCAA+B;
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":";;;;AAAA,qCAA+B;AAC/B,yCAAsC;AAEtC,0CAA+C;AAC/C,6DAA6B;AAC7B,yFAAyF;AACzF,6DAAuE;AACvE,yFAAyF;AACzF,4DAA0E;AAC1E,uCAAwD;AACxD,4DAA4B;AAE5B,yFAAyF;AACzF,kDAA0D;AAE1D;;;GAGG;AACH,SAAgB,aAAa;IACzB,aAAG,CAAC,IAAI,CAAC,aAAa,EAAE;QACpB,YAAY,EAAZ,sBAAY;QACZ,kBAAkB,EAAlB,sBAAkB;QAClB,cAAc,EAAd,sBAAc;QACd,MAAM,EAAE,IAAA,cAAI,GAAE;QACd,WAAW,EAAE,OAAO,CAAC,OAAO;KAC/B,CAAC,CAAC;AACP,CAAC;AARD,sCAQC;AAED;;;GAGG;AACH,SAAgB,mBAAmB;IAC/B,MAAM,KAAK,GAAG;QACV,6EAA6E;QAC7E,IAAA,qBAAS,EAAC,GAAG,OAAO,CAAC,GAAG,EAAE,+DAA+D,CAAC;QAC1F,8HAA8H;QAC9H,IAAA,qBAAS,EAAC,GAAG,OAAO,CAAC,GAAG,EAAE,sEAAsE,CAAC;QACjG,yDAAyD;QACzD,OAAO,CAAC,OAAO,CAAC,sBAAsB,CAAC;QACvC,OAAO,CAAC,OAAO,CAAC,6BAA6B,CAAC;KACjD,CAAC;IAEF,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;QACvB,IAAI,CAAC,IAAA,yBAAc,EAAC,IAAI,CAAC,EAAE,CAAC;YACxB,SAAS;QACb,CAAC;QAED,IAAI,OAAO,CAAC;QAEZ,IAAI,CAAC;YACD,OAAO,GAAG,IAAA,uBAAY,EAAC,IAAI,CAAC,CAAC,OAAO,CAAC;QACzC,CAAC;QAAC,MAAM,CAAC;YACL,EAAE;QACN,CAAC;QAED,IAAI,OAAO,IAAI,IAAI,IAAI,OAAO,KAAK,sBAAc,EAAE,CAAC;YAChD,MAAM,OAAO,GAAG,2BAA2B,OAAO,cAAc,IAAI,eAAe,sBAAc,SAAS,OAAO,CAAC,OAAO,CAAC,eAAe,CAAC,EAAE,CAAC;YAC7I,mCAAmC;YACnC,MAAM,IAAI,KAAK,CAAC,yEAAyE,OAAO,qBAAqB,sBAAc,QAAQ,OAAO,EAAE,CAAC,CAAC;QAC1J,CAAC;IACL,CAAC;AACL,CAAC;AA9BD,kDA8BC;AAED;;;GAGG;AACH,SAAgB,uBAAuB;IACnC,IAAI,OAAO,CAAC,GAAG,CAAC,uBAAc,CAAC,wBAAwB,CAAC;QAAE,OAAO;IACjE,MAAM,kBAAkB,GAAG,OAAO,CAAC,GAAG,CAAC,uBAAc,CAAC,kBAAkB,CAAC,CAAC;IAC1E,IAAI,CAAC,kBAAkB,IAAI,CAAC,gBAAM,CAAC,EAAE,CAAC,sBAAY,EAAE,kBAAkB,CAAC;QAAE,OAAO;IAEhF,aAAG,CAAC,OAAO,CAAC,sCAAsC,sBAAY,qEAAqE,kBAAkB;iIACxB,CAAC,CAAC;AACnI,CAAC;AAPD,0DAOC"}
|