@appland/appmap 3.24.0 → 3.25.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/built/appmap.html +1 -1
  3. package/built/main.js.map +1 -1
  4. package/built/package.json +1 -1
  5. package/built/src/cmds/agentInstaller/agentInstallerProcedure.js +1 -2
  6. package/built/src/cmds/agentInstaller/agentInstallerProcedure.js.map +1 -1
  7. package/built/src/cmds/record/action/countAppMaps.js +14 -0
  8. package/built/src/cmds/record/action/countAppMaps.js.map +1 -0
  9. package/built/src/cmds/record/action/printAppMapCount.js +4 -13
  10. package/built/src/cmds/record/action/printAppMapCount.js.map +1 -1
  11. package/built/src/cmds/record/action/saveRecording.js +3 -1
  12. package/built/src/cmds/record/action/saveRecording.js.map +1 -1
  13. package/built/src/cmds/record/configuration.js +13 -1
  14. package/built/src/cmds/record/configuration.js.map +1 -1
  15. package/built/src/cmds/record/prompt/obtainTestCommands.js +9 -6
  16. package/built/src/cmds/record/prompt/obtainTestCommands.js.map +1 -1
  17. package/built/src/cmds/record/record.js +34 -13
  18. package/built/src/cmds/record/record.js.map +1 -1
  19. package/built/src/cmds/record/recordContext.js +54 -0
  20. package/built/src/cmds/record/recordContext.js.map +1 -0
  21. package/built/src/cmds/record/state/agentIsRecording.js +2 -2
  22. package/built/src/cmds/record/state/agentIsRecording.js.map +1 -1
  23. package/built/src/cmds/record/state/agentNotAvailable.js +2 -1
  24. package/built/src/cmds/record/state/agentNotAvailable.js.map +1 -1
  25. package/built/src/cmds/record/state/initial.js +2 -1
  26. package/built/src/cmds/record/state/initial.js.map +1 -1
  27. package/built/src/cmds/record/state/record_remote.js +2 -1
  28. package/built/src/cmds/record/state/record_remote.js.map +1 -1
  29. package/built/src/cmds/record/state/record_test.js +2 -1
  30. package/built/src/cmds/record/state/record_test.js.map +1 -1
  31. package/built/src/cmds/record/state/recordingStopped.js +2 -2
  32. package/built/src/cmds/record/state/recordingStopped.js.map +1 -1
  33. package/built/src/cmds/record/state/testCasesComplete.js +3 -2
  34. package/built/src/cmds/record/state/testCasesComplete.js.map +1 -1
  35. package/built/src/cmds/record/state/testCasesRunning.js +9 -2
  36. package/built/src/cmds/record/state/testCasesRunning.js.map +1 -1
  37. package/built/src/cmds/record/state/testCommandsAvailable.js +2 -1
  38. package/built/src/cmds/record/state/testCommandsAvailable.js.map +1 -1
  39. package/built/src/cmds/record/state/testCommandsNeeded.js +2 -1
  40. package/built/src/cmds/record/state/testCommandsNeeded.js.map +1 -1
  41. package/built/src/cmds/record/test/isAgentAvailable.js +3 -4
  42. package/built/src/cmds/record/test/isAgentAvailable.js.map +1 -1
  43. package/built/src/cmds/record/testCaseRecording.js +4 -1
  44. package/built/src/cmds/record/testCaseRecording.js.map +1 -1
  45. package/built/src/cmds/runCommand.js +2 -1
  46. package/built/src/cmds/runCommand.js.map +1 -1
  47. package/built/src/fingerprint/canonicalize/classes.js +1 -1
  48. package/built/src/fingerprint/canonicalize/classes.js.map +1 -1
  49. package/built/src/openapi/command.js.map +1 -1
  50. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,24 @@
1
+ # [@appland/appmap-v3.25.2](https://github.com/applandinc/appmap-js/compare/@appland/appmap-v3.25.1...@appland/appmap-v3.25.2) (2022-05-10)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Safely handle code object with no classObject ([10cb8a7](https://github.com/applandinc/appmap-js/commit/10cb8a7c4de6760cc6a9ed43a0408586ebb23970))
7
+
8
+ # [@appland/appmap-v3.25.1](https://github.com/applandinc/appmap-js/compare/@appland/appmap-v3.25.0...@appland/appmap-v3.25.1) (2022-05-02)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Test commands must not be blank ([f7a6e21](https://github.com/applandinc/appmap-js/commit/f7a6e2119f32a988826aa0a3a0558213a23beb67))
14
+
15
+ # [@appland/appmap-v3.25.0](https://github.com/applandinc/appmap-js/compare/@appland/appmap-v3.24.0...@appland/appmap-v3.25.0) (2022-04-28)
16
+
17
+
18
+ ### Features
19
+
20
+ * Extended telemetry for the 'record' command ([99f1450](https://github.com/applandinc/appmap-js/commit/99f145038dda0ff91c3def394529edfd6b1fbff7))
21
+
1
22
  # [@appland/appmap-v3.24.0](https://github.com/applandinc/appmap-js/compare/@appland/appmap-v3.23.1...@appland/appmap-v3.24.0) (2022-04-27)
2
23
 
3
24