@abaplint/cli 2.114.6 → 2.114.7
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/build/cli.js +4 -3
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -54998,7 +54998,7 @@ class Registry {
|
|
|
54998
54998
|
}
|
|
54999
54999
|
static abaplintVersion() {
|
|
55000
55000
|
// magic, see build script "version.sh"
|
|
55001
|
-
return "2.114.
|
|
55001
|
+
return "2.114.7";
|
|
55002
55002
|
}
|
|
55003
55003
|
getDDICReferences() {
|
|
55004
55004
|
return this.ddicReferences;
|
|
@@ -74533,7 +74533,7 @@ class SQLEscapeHostVariables extends _abap_rule_1.ABAPRule {
|
|
|
74533
74533
|
return {
|
|
74534
74534
|
key: "sql_escape_host_variables",
|
|
74535
74535
|
title: "Escape SQL host variables",
|
|
74536
|
-
shortDescription: `Escape SQL host variables, from 740sp05`,
|
|
74536
|
+
shortDescription: `Escape SQL host variables, from 740sp05 and in open-abap`,
|
|
74537
74537
|
extendedInformation: `https://github.com/SAP/styleguides/blob/main/clean-abap/CleanABAP.md#avoid-obsolete-language-elements`,
|
|
74538
74538
|
tags: [_irule_1.RuleTag.Upport, _irule_1.RuleTag.Styleguide, _irule_1.RuleTag.Quickfix, _irule_1.RuleTag.Syntax],
|
|
74539
74539
|
badExample: `SELECT * FROM tab INTO TABLE res WHERE field = val.`,
|
|
@@ -74553,7 +74553,8 @@ class SQLEscapeHostVariables extends _abap_rule_1.ABAPRule {
|
|
|
74553
74553
|
return [];
|
|
74554
74554
|
}
|
|
74555
74555
|
if (this.reg.getConfig().getVersion() < version_1.Version.v740sp02
|
|
74556
|
-
&& this.reg.getConfig().getVersion() !== version_1.Version.Cloud
|
|
74556
|
+
&& this.reg.getConfig().getVersion() !== version_1.Version.Cloud
|
|
74557
|
+
&& this.reg.getConfig().getVersion() !== version_1.Version.OpenABAP) {
|
|
74557
74558
|
return [];
|
|
74558
74559
|
}
|
|
74559
74560
|
for (const s of file.getStatements()) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.114.
|
|
3
|
+
"version": "2.114.7",
|
|
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.114.
|
|
41
|
+
"@abaplint/core": "^2.114.7",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/minimist": "^1.2.5",
|
|
44
44
|
"@types/mocha": "^10.0.10",
|