@appland/scanner 1.75.1 → 1.76.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/CHANGELOG.md +7 -0
- package/built/cli/scan/watchScan.js +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@appland/scanner-v1.76.0](https://github.com/getappmap/appmap-js/compare/@appland/scanner-v1.75.1...@appland/scanner-v1.76.0) (2023-02-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* Show a warning when watch scanning fails ([19e782c](https://github.com/getappmap/appmap-js/commit/19e782c4ab4571b428c98c4b2a3957fac5d57c93))
|
|
7
|
+
|
|
1
8
|
# [@appland/scanner-v1.75.1](https://github.com/getappmap/appmap-js/compare/@appland/scanner-v1.75.0...@appland/scanner-v1.75.1) (2023-02-01)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -77,6 +77,7 @@ class Watcher {
|
|
|
77
77
|
// passing plain async function doesn't work (?)
|
|
78
78
|
this.queue = (0, async_1.queue)((0, node_util_1.callbackify)(this.scan.bind(this)), 2);
|
|
79
79
|
watchScanTelemetry_1.WatchScanTelemetry.watch(this.scanEventEmitter);
|
|
80
|
+
this.queue.error((error, task) => console.warn(`Problem processing ${task}:\n`, error));
|
|
80
81
|
}
|
|
81
82
|
watch() {
|
|
82
83
|
return __awaiter(this, void 0, void 0, function* () {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appland/scanner",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.76.0",
|
|
4
4
|
"description": "Analyze AppMaps for code flaws",
|
|
5
5
|
"bin": "built/cli.js",
|
|
6
6
|
"files": [
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@appland/client": "^1.5.0",
|
|
64
64
|
"@appland/models": "^2.0.0",
|
|
65
|
-
"@appland/openapi": "1.
|
|
65
|
+
"@appland/openapi": "1.4.1",
|
|
66
66
|
"@appland/sql-parser": "^1.5.0",
|
|
67
67
|
"@types/cli-progress": "^3.9.2",
|
|
68
68
|
"ajv": "^8.8.2",
|