@abaplint/core 2.101.30 → 2.101.31

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.
@@ -65,7 +65,7 @@ class Registry {
65
65
  }
66
66
  static abaplintVersion() {
67
67
  // magic, see build script "version.sh"
68
- return "2.101.30";
68
+ return "2.101.31";
69
69
  }
70
70
  getDDICReferences() {
71
71
  return this.ddicReferences;
@@ -10,7 +10,9 @@ class FunctionModuleRecommendationsConf extends _basic_rule_config_1.BasicRuleCo
10
10
  constructor() {
11
11
  super(...arguments);
12
12
  /** Tuple of Function Module Name to be replaced, the recommended alternative and
13
- * the version from which the recommendation is valid.*/
13
+ * the version from which the recommendation is valid.
14
+ * @uniqueItems true
15
+ */
14
16
  this.recommendations = [
15
17
  { name: "CALCULATE_HASH_FOR_RAW", replace: "use CL_ABAP_HMAC or CL_ABAP_MESSAGE_DIGEST" },
16
18
  { name: "ECATT_CONV_XSTRING_TO_STRING", replace: "use CL_BINARY_CONVERT" },
@@ -21,7 +23,7 @@ class FunctionModuleRecommendationsConf extends _basic_rule_config_1.BasicRuleCo
21
23
  { name: "GUID_CREATE", replace: "use CL_SYSTEM_UUID" },
22
24
  { name: "IGN_TIMESTAMP_DIFFERENCE", replace: "use CL_ABAP_TSTMP" },
23
25
  { name: "IGN_TIMESTAMP_PLUSMINUS", replace: "use CL_ABAP_TSTMP" },
24
- { name: "ISM_SD_GET PRICING CONDITIONS", replace: "use CL_PRC_RESULT_FACTORY as per note 2220005" },
26
+ { name: "ISM_SD_GET_PRICING_CONDITIONS", replace: "use CL_PRC_RESULT_FACTORY as per note 2220005" },
25
27
  { name: "JOB_CREATE", replace: "use CL_BP_ABAP_JOB" },
26
28
  { name: "JOB_SUBMIT", replace: "use CL_BP_ABAP_JOB" },
27
29
  { name: "POPUP_TO_CONFIRM_STEP", replace: "use POPUP_TO_CONFIRM" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.101.30",
3
+ "version": "2.101.31",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",