@appland/appmap 3.16.1 → 3.18.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +35 -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/agentInstaller.js.map +1 -1
  6. package/built/src/cmds/agentInstaller/agentInstallerProcedure.js +1 -4
  7. package/built/src/cmds/agentInstaller/agentInstallerProcedure.js.map +1 -1
  8. package/built/src/cmds/agentInstaller/commandStruct.js +10 -1
  9. package/built/src/cmds/agentInstaller/commandStruct.js.map +1 -1
  10. package/built/src/cmds/agentInstaller/gradleInstaller.js +0 -7
  11. package/built/src/cmds/agentInstaller/gradleInstaller.js.map +1 -1
  12. package/built/src/cmds/agentInstaller/javaScriptAgentInstaller.js +0 -12
  13. package/built/src/cmds/agentInstaller/javaScriptAgentInstaller.js.map +1 -1
  14. package/built/src/cmds/agentInstaller/mavenInstaller.js +0 -7
  15. package/built/src/cmds/agentInstaller/mavenInstaller.js.map +1 -1
  16. package/built/src/cmds/agentInstaller/pythonAgentInstaller.js +0 -12
  17. package/built/src/cmds/agentInstaller/pythonAgentInstaller.js.map +1 -1
  18. package/built/src/cmds/agentInstaller/rubyAgentInstaller.js +0 -6
  19. package/built/src/cmds/agentInstaller/rubyAgentInstaller.js.map +1 -1
  20. package/built/src/cmds/open/openers.js +12 -4
  21. package/built/src/cmds/open/openers.js.map +1 -1
  22. package/built/src/cmds/open/showAppMap.js +13 -1
  23. package/built/src/cmds/open/showAppMap.js.map +1 -1
  24. package/built/src/cmds/record/configureRemainingRequestOptions.js +1 -2
  25. package/built/src/cmds/record/configureRemainingRequestOptions.js.map +1 -1
  26. package/built/src/cmds/record/confirmProcessCharacteristics.js +13 -8
  27. package/built/src/cmds/record/confirmProcessCharacteristics.js.map +1 -1
  28. package/built/src/cmds/record/createRecording.js +7 -1
  29. package/built/src/cmds/record/createRecording.js.map +1 -1
  30. package/built/src/cmds/record/record.js +3 -1
  31. package/built/src/cmds/record/record.js.map +1 -1
  32. package/built/src/fingerprint/canonicalize/info.js +2 -2
  33. package/built/src/fingerprint/canonicalize/info.js.map +1 -1
  34. package/built/src/fingerprint/canonicalize/sqlNormalized.js +2 -2
  35. package/built/src/fingerprint/canonicalize/sqlNormalized.js.map +1 -1
  36. package/built/src/fingerprint/canonicalize/sqlTables.js +2 -2
  37. package/built/src/fingerprint/canonicalize/sqlTables.js.map +1 -1
  38. package/built/src/fingerprint/canonicalize/trace.js +3 -3
  39. package/built/src/fingerprint/canonicalize/trace.js.map +1 -1
  40. package/built/src/fingerprint/canonicalize/update.js +3 -3
  41. package/built/src/fingerprint/canonicalize/update.js.map +1 -1
  42. package/built/src/functionStats.js +3 -3
  43. package/built/src/functionStats.js.map +1 -1
  44. package/built/src/search/matchSpec.js +5 -5
  45. package/built/src/search/matchSpec.js.map +1 -1
  46. package/built/src/search/trigram.js +2 -2
  47. package/built/src/search/trigram.js.map +1 -1
  48. package/package.json +2 -2
  49. package/built/src/database.js +0 -172
  50. package/built/src/database.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,38 @@
1
+ # [@appland/appmap-v3.18.0](https://github.com/applandinc/appmap-js/compare/@appland/appmap-v3.17.2...@appland/appmap-v3.18.0) (2022-02-03)
2
+
3
+
4
+ ### Features
5
+
6
+ * Refactor SQL utilities into @appland/models ([ef8a9be](https://github.com/applandinc/appmap-js/commit/ef8a9bebb08f08959272af24f8a8069514107681))
7
+
8
+ # [@appland/appmap-v3.17.2](https://github.com/applandinc/appmap-js/compare/@appland/appmap-v3.17.1...@appland/appmap-v3.17.2) (2022-02-01)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Fix JS post-install message ([3821584](https://github.com/applandinc/appmap-js/commit/3821584c045cbb1f70c148a48d3df1cb10d7f2a7))
14
+ * Remove post-install message ([716c5a9](https://github.com/applandinc/appmap-js/commit/716c5a96a1d587496921e756995e7cd8831ff616))
15
+
16
+ # [@appland/appmap-v3.17.1](https://github.com/applandinc/appmap-js/compare/@appland/appmap-v3.17.0...@appland/appmap-v3.17.1) (2022-01-27)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * Handle spaces in CommandStruct.args ([30c65cc](https://github.com/applandinc/appmap-js/commit/30c65cc710f8d363c94f24ad697617452d4c5192))
22
+
23
+ # [@appland/appmap-v3.17.0](https://github.com/applandinc/appmap-js/compare/@appland/appmap-v3.16.1...@appland/appmap-v3.17.0) (2022-01-27)
24
+
25
+
26
+ ### Bug Fixes
27
+
28
+ * Don't prompt the user for confirmation if the process was obviously not found ([c1e7aea](https://github.com/applandinc/appmap-js/commit/c1e7aea7977b2e74b1b8f137b78435b980d0e997))
29
+ * Handle the case when no data is obtained from recording ([16b0a98](https://github.com/applandinc/appmap-js/commit/16b0a98b9676f7491144948c370d2f4c6eba60ff))
30
+
31
+
32
+ ### Features
33
+
34
+ * Shortcut the record 'open' step when running in the VSCode terminal ([85d7a75](https://github.com/applandinc/appmap-js/commit/85d7a754a2da457aa39719ebdd0f75416f04e3dd))
35
+
1
36
  # [@appland/appmap-v3.16.1](https://github.com/applandinc/appmap-js/compare/@appland/appmap-v3.16.0...@appland/appmap-v3.16.1) (2022-01-25)
2
37
 
3
38