@abaplint/cli 2.105.22 → 2.105.23

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 (2) hide show
  1. package/build/cli.js +9 -2
  2. package/package.json +2 -2
package/build/cli.js CHANGED
@@ -658,7 +658,14 @@ class Junit {
658
658
  return code.map(str => str).join("\n");
659
659
  }
660
660
  formatFailureMessage(message) {
661
- return message.replace("<", "").replace(">", "");
661
+ let ret = message;
662
+ while (ret.includes("<")) {
663
+ ret = ret.replace("<", "&lt;");
664
+ }
665
+ while (ret.includes(">")) {
666
+ ret = ret.replace(">", "&gt;");
667
+ }
668
+ return ret;
662
669
  }
663
670
  }
664
671
  exports.Junit = Junit;
@@ -51304,7 +51311,7 @@ class Registry {
51304
51311
  }
51305
51312
  static abaplintVersion() {
51306
51313
  // magic, see build script "version.sh"
51307
- return "2.105.22";
51314
+ return "2.105.23";
51308
51315
  }
51309
51316
  getDDICReferences() {
51310
51317
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.105.22",
3
+ "version": "2.105.23",
4
4
  "description": "abaplint - Command Line Interface",
5
5
  "funding": "https://github.com/sponsors/larshp",
6
6
  "bin": {
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "homepage": "https://abaplint.org",
40
40
  "devDependencies": {
41
- "@abaplint/core": "^2.105.22",
41
+ "@abaplint/core": "^2.105.23",
42
42
  "@types/chai": "^4.3.12",
43
43
  "@types/glob": "^8.1.0",
44
44
  "@types/minimist": "^1.2.5",