@appland/scanner 1.76.5 → 1.76.8

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 CHANGED
@@ -1,3 +1,24 @@
1
+ # [@appland/scanner-v1.76.8](https://github.com/getappmap/appmap-js/compare/@appland/scanner-v1.76.7...@appland/scanner-v1.76.8) (2023-03-10)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Update latest ARM release ([4e29c9a](https://github.com/getappmap/appmap-js/commit/4e29c9a392c7fcdd391efd96509539d0afd00e03))
7
+
8
+ # [@appland/scanner-v1.76.7](https://github.com/getappmap/appmap-js/compare/@appland/scanner-v1.76.6...@appland/scanner-v1.76.7) (2023-03-02)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Resolve an issue with arm64 binaries ([e79f7ed](https://github.com/getappmap/appmap-js/commit/e79f7ed0975120da99d70df9519480bdb5a1cee1))
14
+
15
+ # [@appland/scanner-v1.76.6](https://github.com/getappmap/appmap-js/compare/@appland/scanner-v1.76.5...@appland/scanner-v1.76.6) (2023-02-25)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * update internal dependencies for sequence diagram release ([4f6ddeb](https://github.com/getappmap/appmap-js/commit/4f6ddebedf3ecdfb18429ddca5a117e91498bc5c))
21
+
1
22
  # [@appland/scanner-v1.76.5](https://github.com/getappmap/appmap-js/compare/@appland/scanner-v1.76.4...@appland/scanner-v1.76.5) (2023-02-24)
2
23
 
3
24
 
@@ -131,6 +131,10 @@ const transformProps = (obj) => {
131
131
  for (const [k, v] of Object.entries(obj)) {
132
132
  if (v === undefined)
133
133
  continue;
134
+ if (k.includes('.')) {
135
+ result[k] = v;
136
+ continue;
137
+ }
134
138
  const prefixedKey = k.startsWith(propPrefix) ? k : `${propPrefix}${k}`;
135
139
  result[prefixedKey] = v;
136
140
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appland/scanner",
3
- "version": "1.76.5",
3
+ "version": "1.76.8",
4
4
  "description": "Analyze AppMaps for code flaws",
5
5
  "bin": "built/cli.js",
6
6
  "files": [
@@ -61,8 +61,8 @@
61
61
  },
62
62
  "dependencies": {
63
63
  "@appland/client": "^1.5.0",
64
- "@appland/models": "^2.0.0",
65
- "@appland/openapi": "1.4.3",
64
+ "@appland/models": "^2.2.0",
65
+ "@appland/openapi": "1.4.4",
66
66
  "@appland/sql-parser": "^1.5.0",
67
67
  "@types/cli-progress": "^3.9.2",
68
68
  "ajv": "^8.8.2",