@appland/appmap 3.21.0 → 3.23.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/CHANGELOG.md +36 -0
- package/built/appmap.html +1 -1
- package/built/main.js.map +1 -1
- package/built/package.json +1 -1
- package/built/src/cmds/record/action/guessTestCommands.js +26 -0
- package/built/src/cmds/record/action/guessTestCommands.js.map +1 -0
- package/built/src/cmds/record/action/printAppMapCount.js +18 -0
- package/built/src/cmds/record/action/printAppMapCount.js.map +1 -0
- package/built/src/cmds/record/action/startRecording.js +1 -1
- package/built/src/cmds/record/action/startRecording.js.map +1 -1
- package/built/src/cmds/record/action/startTestCases.js +24 -0
- package/built/src/cmds/record/action/startTestCases.js.map +1 -0
- package/built/src/cmds/record/action/stopRecording.js +1 -1
- package/built/src/cmds/record/action/stopRecording.js.map +1 -1
- package/built/src/cmds/record/configuration.js +22 -10
- package/built/src/cmds/record/configuration.js.map +1 -1
- package/built/src/cmds/record/prompt/obtainTestCommands.js +73 -0
- package/built/src/cmds/record/prompt/obtainTestCommands.js.map +1 -0
- package/built/src/cmds/record/record.js +48 -4
- package/built/src/cmds/record/record.js.map +1 -1
- package/built/src/cmds/record/state/agentNotAvailable.js +3 -3
- package/built/src/cmds/record/state/agentNotAvailable.js.map +1 -1
- package/built/src/cmds/record/state/agentProcessNotRunning.js +6 -6
- package/built/src/cmds/record/state/agentProcessNotRunning.js.map +1 -1
- package/built/src/cmds/record/state/initial.js +32 -18
- package/built/src/cmds/record/state/initial.js.map +1 -1
- package/built/src/cmds/record/state/record_remote.js +27 -0
- package/built/src/cmds/record/state/record_remote.js.map +1 -0
- package/built/src/cmds/record/state/record_test.js +20 -0
- package/built/src/cmds/record/state/record_test.js.map +1 -0
- package/built/src/cmds/record/state/testCasesComplete.js +15 -0
- package/built/src/cmds/record/state/testCasesComplete.js.map +1 -0
- package/built/src/cmds/record/state/testCasesRunning.js +13 -0
- package/built/src/cmds/record/state/testCasesRunning.js.map +1 -0
- package/built/src/cmds/record/state/testCommandsAvailable.js +14 -0
- package/built/src/cmds/record/state/testCommandsAvailable.js.map +1 -0
- package/built/src/cmds/record/state/testCommandsNeeded.js +13 -0
- package/built/src/cmds/record/state/testCommandsNeeded.js.map +1 -0
- package/built/src/cmds/record/test/areTestCommandsConfigured.js +32 -0
- package/built/src/cmds/record/test/areTestCommandsConfigured.js.map +1 -0
- package/built/src/cmds/record/test/isAgentAvailable.js +4 -3
- package/built/src/cmds/record/test/isAgentAvailable.js.map +1 -1
- package/built/src/cmds/record/testCaseRecording.js +112 -0
- package/built/src/cmds/record/testCaseRecording.js.map +1 -0
- package/built/src/cmds/userInteraction.js +9 -1
- package/built/src/cmds/userInteraction.js.map +1 -1
- package/built/src/search/findEvents.js +3 -1
- package/built/src/search/findEvents.js.map +1 -1
- package/built/src/telemetry.js.map +1 -1
- package/built/src/utils.js +1 -1
- package/built/src/utils.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,39 @@
|
|
|
1
|
+
# [@appland/appmap-v3.23.1](https://github.com/applandinc/appmap-js/compare/@appland/appmap-v3.23.0...@appland/appmap-v3.23.1) (2022-04-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Don't match events that have no return event ([31dca43](https://github.com/applandinc/appmap-js/commit/31dca43b25af18a8927fda0ebfec3f52dca8268f))
|
|
7
|
+
|
|
8
|
+
# [@appland/appmap-v3.23.0](https://github.com/applandinc/appmap-js/compare/@appland/appmap-v3.22.0...@appland/appmap-v3.23.0) (2022-04-27)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Prompt for test command ([b9abca2](https://github.com/applandinc/appmap-js/commit/b9abca2352904f9692c49b7fced893f4be351a6d))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* Add UI.continue ([36d948f](https://github.com/applandinc/appmap-js/commit/36d948f7257671d2cb64d8eee09058d07a180a77))
|
|
19
|
+
* Boldly print if the agent is available or not ([5c25abd](https://github.com/applandinc/appmap-js/commit/5c25abdf4c3c223113e7923a66caed53771f369b))
|
|
20
|
+
* Guess 'mvn test' command ([65534a8](https://github.com/applandinc/appmap-js/commit/65534a8c356450eab92bb9568edad413b17f9ba8))
|
|
21
|
+
|
|
22
|
+
# [@appland/appmap-v3.22.0](https://github.com/applandinc/appmap-js/compare/@appland/appmap-v3.21.0...@appland/appmap-v3.22.0) (2022-04-26)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* Fix hash key of saved settings ([26f54f4](https://github.com/applandinc/appmap-js/commit/26f54f479047b38b667c27b7d12c280d4d91413c))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Features
|
|
31
|
+
|
|
32
|
+
* 'record test' sub-command ([9471f7f](https://github.com/applandinc/appmap-js/commit/9471f7f5de90a0f7ba52086d7385371ee50ecf23))
|
|
33
|
+
* Prompt for test commands ([93ae6f6](https://github.com/applandinc/appmap-js/commit/93ae6f6a4b0d97c4338480c1943d1ac32a0cd6d7))
|
|
34
|
+
* Recording mode argument is optional ([44b3575](https://github.com/applandinc/appmap-js/commit/44b35751ea025c6c4a33b60f6e51089ea0a709bc))
|
|
35
|
+
* Set a time limit on test case execution ([a6c2803](https://github.com/applandinc/appmap-js/commit/a6c28037123f087e7d40deecc6de1b2274820f43))
|
|
36
|
+
|
|
1
37
|
# [@appland/appmap-v3.21.0](https://github.com/applandinc/appmap-js/compare/@appland/appmap-v3.20.0...@appland/appmap-v3.21.0) (2022-04-14)
|
|
2
38
|
|
|
3
39
|
|