@appland/scanner 1.80.0 → 1.80.2
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 +14 -0
- package/built/telemetry.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@appland/scanner-v1.80.2](https://github.com/getappmap/appmap-js/compare/@appland/scanner-v1.80.1...@appland/scanner-v1.80.2) (2023-07-20)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Bump version ([aa73cc2](https://github.com/getappmap/appmap-js/commit/aa73cc25a271d83c3334c501ca2f9c722a130327))
|
|
7
|
+
|
|
8
|
+
# [@appland/scanner-v1.80.1](https://github.com/getappmap/appmap-js/compare/@appland/scanner-v1.80.0...@appland/scanner-v1.80.1) (2023-07-20)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Prevent `git status` from potentially hanging ([41f4a08](https://github.com/getappmap/appmap-js/commit/41f4a087d382e1f3ef7d942c4dd83df1cd75585f))
|
|
14
|
+
|
|
1
15
|
# [@appland/scanner-v1.80.0](https://github.com/getappmap/appmap-js/compare/@appland/scanner-v1.79.0...@appland/scanner-v1.80.0) (2023-07-19)
|
|
2
16
|
|
|
3
17
|
|
package/built/telemetry.js
CHANGED
|
@@ -274,8 +274,10 @@ class GitProperties {
|
|
|
274
274
|
const commandProcess = (0, child_process_1.spawn)('git', ['status'], {
|
|
275
275
|
shell: true,
|
|
276
276
|
cwd: cwd === null || cwd === void 0 ? void 0 : cwd.toString(),
|
|
277
|
+
stdio: 'ignore',
|
|
278
|
+
timeout: 2000,
|
|
277
279
|
});
|
|
278
|
-
commandProcess.on('
|
|
280
|
+
commandProcess.on('exit', (code) => {
|
|
279
281
|
switch (code) {
|
|
280
282
|
case 127:
|
|
281
283
|
return resolve(GitState.NotInstalled);
|