stimulsoft-data-adapter 2024.2.2 → 2024.2.3

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.
@@ -1,14 +1,14 @@
1
1
  /*
2
2
  Stimulsoft.Reports.JS
3
- Version: 2024.2.2
4
- Build date: 2024.03.11
3
+ Version: 2024.2.3
4
+ Build date: 2024.04.02
5
5
  License: https://www.stimulsoft.com/en/licensing/reports
6
6
  */
7
7
  exports.process = function (command, onResult) {
8
8
  var end = function (result) {
9
9
  try {
10
10
  if (db) db.detach();
11
- result.adapterVersion = "2024.2.2";
11
+ result.adapterVersion = "2024.2.3";
12
12
  onResult(result);
13
13
  }
14
14
  catch (e) {
package/MSSQLAdapter.js CHANGED
@@ -1,14 +1,14 @@
1
1
  /*
2
2
  Stimulsoft.Reports.JS
3
- Version: 2024.2.2
4
- Build date: 2024.03.11
3
+ Version: 2024.2.3
4
+ Build date: 2024.04.02
5
5
  License: https://www.stimulsoft.com/en/licensing/reports
6
6
  */
7
7
  exports.process = function (command, onResult) {
8
8
  var end = function (result) {
9
9
  try {
10
10
  if (connection) connection.close();
11
- result.adapterVersion = "2024.2.2";
11
+ result.adapterVersion = "2024.2.3";
12
12
  onResult(result);
13
13
  }
14
14
  catch (e) {
package/MongoDBAdapter.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  Stimulsoft.Reports.JS
3
- Version: 2024.2.2
4
- Build date: 2024.03.11
3
+ Version: 2024.2.3
4
+ Build date: 2024.04.02
5
5
  License: https://www.stimulsoft.com/en/licensing/reports
6
6
  */
7
7
  exports.process = function (command, onResult) {
@@ -126,7 +126,7 @@ exports.process = function (command, onResult) {
126
126
  }
127
127
 
128
128
  client.close();
129
- result.adapterVersion = "2024.2.2";
129
+ result.adapterVersion = "2024.2.3";
130
130
  onResult(result);
131
131
  });
132
132
  }
package/MySQLAdapter.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  Stimulsoft.Reports.JS
3
- Version: 2024.2.2
4
- Build date: 2024.03.11
3
+ Version: 2024.2.3
4
+ Build date: 2024.04.02
5
5
  License: https://www.stimulsoft.com/en/licensing/reports
6
6
  */
7
7
  exports.process = function (command, onResult) {
@@ -13,7 +13,7 @@ exports.process = function (command, onResult) {
13
13
  catch (e) {
14
14
  }
15
15
  finally {
16
- result.adapterVersion = "2024.2.2";
16
+ result.adapterVersion = "2024.2.3";
17
17
  onResult(result);
18
18
  }
19
19
  }
@@ -1,14 +1,14 @@
1
1
  /*
2
2
  Stimulsoft.Reports.JS
3
- Version: 2024.2.2
4
- Build date: 2024.03.11
3
+ Version: 2024.2.3
4
+ Build date: 2024.04.02
5
5
  License: https://www.stimulsoft.com/en/licensing/reports
6
6
  */
7
7
  exports.process = function (command, onResult) {
8
8
  var end = function (result) {
9
9
  try {
10
10
  if (client) client.end();
11
- result.adapterVersion = "2024.2.2";
11
+ result.adapterVersion = "2024.2.3";
12
12
  onResult(result);
13
13
  }
14
14
  catch (e) {
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  Stimulsoft.Reports.JS
3
- Version: 2024.2.2
4
- Build date: 2024.03.11
3
+ Version: 2024.2.3
4
+ Build date: 2024.04.02
5
5
  License: https://www.stimulsoft.com/en/licensing/reports
6
6
  */
7
7
 
@@ -75,7 +75,7 @@ function getResponse(result) {
75
75
  return result
76
76
  }
77
77
  function onProcess(onResult, encryptData, result) {
78
- result.handlerVersion = "2024.2.2";
78
+ result.handlerVersion = "2024.2.3";
79
79
  result.checkVersion = true;
80
80
  result.encryptData = encryptData;
81
81
  onResult(result);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stimulsoft-data-adapter",
3
- "version": "2024.2.2",
3
+ "version": "2024.2.3",
4
4
  "description": "Nodejs data adapter for Stimulsoft Reports.JS",
5
5
  "main": "index.js",
6
6
  "scripts": {