@appland/appmap-agent-js
Advanced tools
Comparing version 13.6.0 to 13.7.0
@@ -198,2 +198,5 @@ [ | ||
}, | ||
"proxy-port": { | ||
"$ref": "port-proxy" | ||
}, | ||
"trace-port": { | ||
@@ -205,2 +208,5 @@ "$ref": "port" | ||
}, | ||
"http-switch": { | ||
"$ref": "url-component" | ||
}, | ||
"track-port": { | ||
@@ -256,3 +262,3 @@ "$ref": "port" | ||
"hidden": { | ||
"$ref": "identifier-regular" | ||
"$ref": "identifier" | ||
}, | ||
@@ -278,3 +284,3 @@ "aliases": { | ||
{ | ||
"$ref": "identifier-regular" | ||
"$ref": "identifier" | ||
} | ||
@@ -316,3 +322,3 @@ ] | ||
{ | ||
"$ref": "specifier-process" | ||
"$ref": "matcher-process" | ||
}, | ||
@@ -322,3 +328,3 @@ { | ||
"items": { | ||
"$ref": "specifier-process" | ||
"$ref": "matcher-process" | ||
} | ||
@@ -343,3 +349,3 @@ } | ||
{ | ||
"$ref": "specifier-module" | ||
"$ref": "matcher-module" | ||
}, | ||
@@ -349,3 +355,3 @@ { | ||
"items": { | ||
"$ref": "specifier-module" | ||
"$ref": "matcher-module" | ||
} | ||
@@ -502,2 +508,5 @@ } | ||
}, | ||
"proxy-port": { | ||
"$ref": "port-proxy" | ||
}, | ||
"trace-port": { | ||
@@ -509,2 +518,5 @@ "$ref": "port-cooked" | ||
}, | ||
"http-switch": { | ||
"$ref": "url-component" | ||
}, | ||
"track-port": { | ||
@@ -563,3 +575,3 @@ "$ref": "port-cooked" | ||
"hidden": { | ||
"$ref": "identifier-regular" | ||
"$ref": "identifier" | ||
}, | ||
@@ -580,3 +592,3 @@ "aliases": { | ||
{ | ||
"$ref": "identifier-regular" | ||
"$ref": "identifier" | ||
} | ||
@@ -616,3 +628,3 @@ ] | ||
{ | ||
"$ref": "specifier-cooked" | ||
"$ref": "matcher-cooked" | ||
}, | ||
@@ -653,3 +665,3 @@ { | ||
{ | ||
"$ref": "specifier-cooked" | ||
"$ref": "matcher-cooked" | ||
}, | ||
@@ -858,14 +870,2 @@ { | ||
{ | ||
"$id": "extension", | ||
"type": "string", | ||
"pattern": "^\\.[^/]+$" | ||
}, | ||
{ | ||
"$id": "file-type", | ||
"enum": [ | ||
"script", | ||
"module" | ||
] | ||
}, | ||
{ | ||
"$id": "group", | ||
@@ -889,3 +889,3 @@ "type": "number" | ||
{ | ||
"$id": "identifier-regular", | ||
"$id": "identifier", | ||
"type": "string", | ||
@@ -895,15 +895,2 @@ "pattern": "^[a-zA-Z_$][a-zA-Z_$-9]*$" | ||
{ | ||
"$id": "indent", | ||
"enum": [ | ||
0, | ||
2, | ||
4, | ||
8 | ||
] | ||
}, | ||
{ | ||
"$id": "index", | ||
"$ref": "natural" | ||
}, | ||
{ | ||
"$id": "language", | ||
@@ -976,2 +963,289 @@ "const": "javascript" | ||
{ | ||
"$id": "matcher-cooked", | ||
"anyOf": [ | ||
{ | ||
"type": "boolean" | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"base", | ||
"source", | ||
"flags" | ||
], | ||
"properties": { | ||
"base": { | ||
"anyOf": [ | ||
{ | ||
"const": null | ||
}, | ||
{ | ||
"$ref": "url" | ||
} | ||
] | ||
}, | ||
"source": { | ||
"type": "string" | ||
}, | ||
"flags": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"$id": "matcher-module", | ||
"anyOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"regexp" | ||
], | ||
"properties": { | ||
"regexp": { | ||
"$ref": "regexp" | ||
}, | ||
"flags": { | ||
"type": "string" | ||
}, | ||
"relative": { | ||
"type": "boolean" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"shallow": { | ||
"type": "boolean" | ||
}, | ||
"exclude": { | ||
"$ref": "exclude" | ||
}, | ||
"inline-source": { | ||
"type": "boolean", | ||
"nullable": true | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"glob" | ||
], | ||
"properties": { | ||
"glob": { | ||
"type": "string" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"shallow": { | ||
"type": "boolean" | ||
}, | ||
"exclude": { | ||
"$ref": "exclude" | ||
}, | ||
"inline-source": { | ||
"type": "boolean", | ||
"nullable": true | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"path" | ||
], | ||
"properties": { | ||
"path": { | ||
"type": "string" | ||
}, | ||
"recursive": { | ||
"type": "boolean" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"shallow": { | ||
"type": "boolean" | ||
}, | ||
"exclude": { | ||
"$ref": "exclude" | ||
}, | ||
"inline-source": { | ||
"type": "boolean", | ||
"nullable": true | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"dist" | ||
], | ||
"properties": { | ||
"dist": { | ||
"type": "string" | ||
}, | ||
"recursive": { | ||
"type": "boolean" | ||
}, | ||
"external": { | ||
"type": "boolean" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"shallow": { | ||
"type": "boolean" | ||
}, | ||
"exclude": { | ||
"$ref": "exclude" | ||
}, | ||
"inline-source": { | ||
"type": "boolean", | ||
"nullable": true | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"url" | ||
], | ||
"properties": { | ||
"url": { | ||
"type": "string" | ||
}, | ||
"recursive": { | ||
"type": "boolean" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"shallow": { | ||
"type": "boolean" | ||
}, | ||
"exclude": { | ||
"$ref": "exclude" | ||
}, | ||
"inline-source": { | ||
"type": "boolean", | ||
"nullable": true | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"$id": "matcher-process", | ||
"anyOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"regexp" | ||
], | ||
"properties": { | ||
"regexp": { | ||
"$ref": "regexp" | ||
}, | ||
"flags": { | ||
"type": "string" | ||
}, | ||
"relative": { | ||
"type": "boolean" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"glob" | ||
], | ||
"properties": { | ||
"glob": { | ||
"type": "string" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"path" | ||
], | ||
"properties": { | ||
"path": { | ||
"type": "string" | ||
}, | ||
"recursive": { | ||
"type": "boolean" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"dist" | ||
], | ||
"properties": { | ||
"dist": { | ||
"type": "string" | ||
}, | ||
"recursive": { | ||
"type": "boolean" | ||
}, | ||
"external": { | ||
"type": "boolean" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"url" | ||
], | ||
"properties": { | ||
"url": { | ||
"type": "string" | ||
}, | ||
"recursive": { | ||
"type": "boolean" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"$id": "message-amend", | ||
@@ -1731,2 +2005,16 @@ "type": "object", | ||
{ | ||
"$id": "port-proxy", | ||
"anyOf": [ | ||
{ | ||
"const": null | ||
}, | ||
{ | ||
"const": 0 | ||
}, | ||
{ | ||
"$ref": "port-number" | ||
} | ||
] | ||
}, | ||
{ | ||
"$id": "port", | ||
@@ -1838,7 +2126,2 @@ "anyOf": [ | ||
{ | ||
"$id": "separator", | ||
"type": "string", | ||
"pattern": "^\\P{ID_Continue}$" | ||
}, | ||
{ | ||
"$id": "serial-primitive", | ||
@@ -2141,230 +2424,2 @@ "type": "object", | ||
{ | ||
"$id": "specifier-cooked", | ||
"anyOf": [ | ||
{ | ||
"type": "boolean" | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"base", | ||
"source", | ||
"flags" | ||
], | ||
"properties": { | ||
"base": { | ||
"$ref": "url" | ||
}, | ||
"source": { | ||
"type": "string" | ||
}, | ||
"flags": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"$id": "specifier-module", | ||
"anyOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"regexp" | ||
], | ||
"properties": { | ||
"regexp": { | ||
"$ref": "regexp" | ||
}, | ||
"flags": { | ||
"type": "string" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"shallow": { | ||
"type": "boolean" | ||
}, | ||
"exclude": { | ||
"$ref": "exclude" | ||
}, | ||
"inline-source": { | ||
"type": "boolean", | ||
"nullable": true | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"glob" | ||
], | ||
"properties": { | ||
"glob": { | ||
"type": "string" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"shallow": { | ||
"type": "boolean" | ||
}, | ||
"exclude": { | ||
"$ref": "exclude" | ||
}, | ||
"inline-source": { | ||
"type": "boolean", | ||
"nullable": true | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"path" | ||
], | ||
"properties": { | ||
"path": { | ||
"type": "string" | ||
}, | ||
"recursive": { | ||
"type": "boolean" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"shallow": { | ||
"type": "boolean" | ||
}, | ||
"exclude": { | ||
"$ref": "exclude" | ||
}, | ||
"inline-source": { | ||
"type": "boolean", | ||
"nullable": true | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"dist" | ||
], | ||
"properties": { | ||
"dist": { | ||
"type": "string" | ||
}, | ||
"recursive": { | ||
"type": "boolean" | ||
}, | ||
"external": { | ||
"type": "boolean" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"shallow": { | ||
"type": "boolean" | ||
}, | ||
"exclude": { | ||
"$ref": "exclude" | ||
}, | ||
"inline-source": { | ||
"type": "boolean", | ||
"nullable": true | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"$id": "specifier-process", | ||
"anyOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"regexp" | ||
], | ||
"properties": { | ||
"regexp": { | ||
"$ref": "regexp" | ||
}, | ||
"flags": { | ||
"type": "string" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"glob" | ||
], | ||
"properties": { | ||
"glob": { | ||
"type": "string" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"path" | ||
], | ||
"properties": { | ||
"path": { | ||
"type": "string" | ||
}, | ||
"recursive": { | ||
"type": "boolean" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"dist" | ||
], | ||
"properties": { | ||
"dist": { | ||
"type": "string" | ||
}, | ||
"recursive": { | ||
"type": "boolean" | ||
}, | ||
"external": { | ||
"type": "boolean" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"$id": "stdio-stream", | ||
@@ -2505,4 +2560,5 @@ "enum": [ | ||
{ | ||
"$id": "time", | ||
"type": "number" | ||
"$id": "url-component", | ||
"type": "string", | ||
"pattern": "[A–Za–z0–9\\-_.!~*'()]+" | ||
}, | ||
@@ -2509,0 +2565,0 @@ { |
{ | ||
"name": "@appland/appmap-agent-js", | ||
"version": "13.6.0", | ||
"version": "13.7.0", | ||
"bin": { | ||
@@ -48,2 +48,3 @@ "appmap-agent-js": "bin/appmap-agent-js.cjs" | ||
"glob": "^8.0.3", | ||
"htmlparser2": "^8.0.1", | ||
"klaw-sync": "^6.0.0", | ||
@@ -57,2 +58,3 @@ "minimatch": "^5.1.0", | ||
"vlq": "^2.0.4", | ||
"ws": "^8.13.0", | ||
"yaml": "^2.1.1" | ||
@@ -78,2 +80,3 @@ }, | ||
"jest": "^29.3.1", | ||
"jsdom": "^21.1.1", | ||
"mocha": "^10.0.0", | ||
@@ -80,0 +83,0 @@ "mysql": "^2.18.1", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Network access
Supply chain riskThis module accesses the network.
Found 3 instances in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Debug access
Supply chain riskUses debug, reflection and dynamic code execution features.
Found 4 instances in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 2 instances in 1 package
1704387
37
43965
8
6
20
28
+ Addedhtmlparser2@^8.0.1
+ Addedws@^8.13.0
+ Addeddom-serializer@2.0.0(transitive)
+ Addeddomelementtype@2.3.0(transitive)
+ Addeddomhandler@5.0.3(transitive)
+ Addeddomutils@3.2.2(transitive)
+ Addedentities@4.5.0(transitive)
+ Addedhtmlparser2@8.0.2(transitive)
+ Addedws@8.18.0(transitive)