Skip to content

Commit

Permalink
v2024.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kubekin2 committed Nov 26, 2024
1 parent 03434cf commit d71f724
Show file tree
Hide file tree
Showing 67 changed files with 189 additions and 169 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Stimulsoft.Reports.JS
Version: 2024.4.4
Build date: 2024.11.13
Version: 2024.4.5
Build date: 2024.11.22
License: https://www.stimulsoft.com/en/licensing/reports
*/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Stimulsoft.Reports.JS
Version: 2024.4.4
Build date: 2024.11.13
Version: 2024.4.5
Build date: 2024.11.22
License: https://www.stimulsoft.com/en/licensing/reports
*/

Expand Down Expand Up @@ -37,8 +37,8 @@

public class JSDataAdapter {

public static final String handlerVersion = "2024.4.4";
public static final String adapterVersion = "2024.4.4";
public static final String handlerVersion = "2024.4.5";
public static final String adapterVersion = "2024.4.5";
public static final boolean checkVersion = true;

private static final List<String> USERS_KEYS = Arrays.asList("jdbc.username", "username", "uid", "user", "user id", "userid", "connection.username");
Expand Down
6 changes: 3 additions & 3 deletions NetCoreDataAdapters/DataAdaptersController.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Stimulsoft.Reports.JS
Version: 2024.4.4
Build date: 2024.11.13
Version: 2024.4.5
Build date: 2024.11.22
License: https://www.stimulsoft.com/en/licensing/reports
*/
using FirebirdSql.Data.FirebirdClient;
Expand Down Expand Up @@ -150,7 +150,7 @@ private async Task ProcessRequest()
result.Notice = e.Message;
}

result.HandlerVersion = "2024.4.4";
result.HandlerVersion = "2024.4.5";
result.CheckVersion = true;

var contentType = "application/json";
Expand Down
6 changes: 3 additions & 3 deletions NetCoreDataAdapters/MongoDBAdapter.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Stimulsoft.Reports.JS
Version: 2024.4.4
Build date: 2024.11.13
Version: 2024.4.5
Build date: 2024.11.22
License: https://www.stimulsoft.com/en/licensing/reports
*/
/*
Expand Down Expand Up @@ -172,7 +172,7 @@ public static Result Process(CommandJson command)
};
}

result.AdapterVersion = "2024.4.4";
result.AdapterVersion = "2024.4.5";
return result;
}
}
Expand Down
6 changes: 3 additions & 3 deletions NetCoreDataAdapters/SQLAdapter.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Stimulsoft.Reports.JS
Version: 2024.4.4
Build date: 2024.11.13
Version: 2024.4.5
Build date: 2024.11.22
License: https://www.stimulsoft.com/en/licensing/reports
*/
using FirebirdSql.Data.FirebirdClient;
Expand All @@ -26,7 +26,7 @@ public class SQLAdapter

private static Result End(Result result)
{
result.AdapterVersion = "2024.4.4";
result.AdapterVersion = "2024.4.5";
try
{
if (reader != null) reader.Close();
Expand Down
6 changes: 3 additions & 3 deletions NetDataAdapters/Handler.ashx.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Stimulsoft.Reports.JS
Version: 2024.4.4
Build date: 2024.11.13
Version: 2024.4.5
Build date: 2024.11.22
License: https://www.stimulsoft.com/en/licensing/reports
*/
using System;
Expand Down Expand Up @@ -183,7 +183,7 @@ public void ProcessRequest(HttpContext context)
inputStream.Close();
}

result.HandlerVersion = "2024.4.4";
result.HandlerVersion = "2024.4.5";
result.CheckVersion = true;

context.Response.Headers.Add("Access-Control-Allow-Origin", "*");
Expand Down
6 changes: 3 additions & 3 deletions NetDataAdapters/MongoDBAdapter.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Stimulsoft.Reports.JS
Version: 2024.4.4
Build date: 2024.11.13
Version: 2024.4.5
Build date: 2024.11.22
License: https://www.stimulsoft.com/en/licensing/reports
*/
/*
Expand Down Expand Up @@ -172,7 +172,7 @@ public static Result Process(CommandJson command)
};
}

result.AdapterVersion = "2024.4.4";
result.AdapterVersion = "2024.4.5";
return result;
}
}
Expand Down
6 changes: 3 additions & 3 deletions NetDataAdapters/SQLAdapter.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Stimulsoft.Reports.JS
Version: 2024.4.4
Build date: 2024.11.13
Version: 2024.4.5
Build date: 2024.11.22
License: https://www.stimulsoft.com/en/licensing/reports
*/
using FirebirdSql.Data.FirebirdClient;
Expand All @@ -25,7 +25,7 @@ public class SQLAdapter

private static Result End(Result result)
{
result.AdapterVersion = "2024.4.4";
result.AdapterVersion = "2024.4.5";
try
{
if (reader != null) reader.Close();
Expand Down
6 changes: 3 additions & 3 deletions NodejsDataAdapters/FirebirdAdapter.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/*
Stimulsoft.Reports.JS
Version: 2024.4.4
Build date: 2024.11.13
Version: 2024.4.5
Build date: 2024.11.22
License: https://www.stimulsoft.com/en/licensing/reports
*/
exports.process = function (command, onResult) {
var end = function (result) {
try {
if (db) db.detach();
result.adapterVersion = "2024.4.4";
result.adapterVersion = "2024.4.5";
onResult(result);
}
catch (e) {
Expand Down
6 changes: 3 additions & 3 deletions NodejsDataAdapters/MSSQLAdapter.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/*
Stimulsoft.Reports.JS
Version: 2024.4.4
Build date: 2024.11.13
Version: 2024.4.5
Build date: 2024.11.22
License: https://www.stimulsoft.com/en/licensing/reports
*/
exports.process = function (command, onResult) {
var end = function (result) {
try {
if (connection) connection.close();
result.adapterVersion = "2024.4.4";
result.adapterVersion = "2024.4.5";
onResult(result);
}
catch (e) {
Expand Down
6 changes: 3 additions & 3 deletions NodejsDataAdapters/MongoDBAdapter.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Stimulsoft.Reports.JS
Version: 2024.4.4
Build date: 2024.11.13
Version: 2024.4.5
Build date: 2024.11.22
License: https://www.stimulsoft.com/en/licensing/reports
*/
exports.process = function (command, onResult) {
Expand Down Expand Up @@ -127,7 +127,7 @@ exports.process = function (command, onResult) {
}

client.close();
result.adapterVersion = "2024.4.4";
result.adapterVersion = "2024.4.5";
onResult(result);
});
}
6 changes: 3 additions & 3 deletions NodejsDataAdapters/MySQLAdapter.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Stimulsoft.Reports.JS
Version: 2024.4.4
Build date: 2024.11.13
Version: 2024.4.5
Build date: 2024.11.22
License: https://www.stimulsoft.com/en/licensing/reports
*/
exports.process = function (command, onResult) {
Expand All @@ -13,7 +13,7 @@ exports.process = function (command, onResult) {
catch (e) {
}
finally {
result.adapterVersion = "2024.4.4";
result.adapterVersion = "2024.4.5";
onResult(result);
}
}
Expand Down
6 changes: 3 additions & 3 deletions NodejsDataAdapters/PostgreSQLAdapter.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/*
Stimulsoft.Reports.JS
Version: 2024.4.4
Build date: 2024.11.13
Version: 2024.4.5
Build date: 2024.11.22
License: https://www.stimulsoft.com/en/licensing/reports
*/
exports.process = function (command, onResult) {
var end = function (result) {
try {
if (client) client.end();
result.adapterVersion = "2024.4.4";
result.adapterVersion = "2024.4.5";
onResult(result);
}
catch (e) {
Expand Down
6 changes: 3 additions & 3 deletions NodejsDataAdapters/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Stimulsoft.Reports.JS
Version: 2024.4.4
Build date: 2024.11.13
Version: 2024.4.5
Build date: 2024.11.22
License: https://www.stimulsoft.com/en/licensing/reports
*/

Expand Down Expand Up @@ -75,7 +75,7 @@ function getResponse(result) {
return result
}
function onProcess(onResult, encryptData, result) {
result.handlerVersion = "2024.4.4";
result.handlerVersion = "2024.4.5";
result.checkVersion = true;
result.encryptData = encryptData;
onResult(result);
Expand Down
2 changes: 1 addition & 1 deletion NodejsDataAdapters/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stimulsoft-data-adapter",
"version": "2024.4.4",
"version": "2024.4.5",
"description": "Nodejs data adapter for Stimulsoft Reports.JS",
"main": "index.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions PHPDataAdapters/StiDataAdapter.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
# Stimulsoft.Reports.JS
# Version: 2024.4.4
# Build date: 2024.11.13
# Version: 2024.4.5
# Build date: 2024.11.22
# License: https://www.stimulsoft.com/en/licensing/reports
?>
<?php
Expand All @@ -27,7 +27,7 @@ class StiDataAdapter

### Properties

public $version = '2024.4.4';
public $version = '2024.4.5';
public $checkVersion = false;

/** @var StiBaseHandler */
Expand Down
6 changes: 3 additions & 3 deletions PHPDataAdapters/StiFirebirdAdapter.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
# Stimulsoft.Reports.JS
# Version: 2024.4.4
# Build date: 2024.11.13
# Version: 2024.4.5
# Build date: 2024.11.22
# License: https://www.stimulsoft.com/en/licensing/reports
?>
<?php
Expand All @@ -22,7 +22,7 @@ class StiFirebirdAdapter extends StiDataAdapter

### Properties

public $version = '2024.4.4';
public $version = '2024.4.5';
public $checkVersion = true;

protected $type = StiDatabaseType::Firebird;
Expand Down
6 changes: 3 additions & 3 deletions PHPDataAdapters/StiMongoDbAdapter.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
# Stimulsoft.Reports.JS
# Version: 2024.4.4
# Build date: 2024.11.13
# Version: 2024.4.5
# Build date: 2024.11.22
# License: https://www.stimulsoft.com/en/licensing/reports
?>
<?php
Expand All @@ -28,7 +28,7 @@ class StiMongoDbAdapter extends StiDataAdapter

### Properties

public $version = '2024.4.4';
public $version = '2024.4.5';
public $checkVersion = true;

protected $type = StiDatabaseType::MongoDB;
Expand Down
6 changes: 3 additions & 3 deletions PHPDataAdapters/StiMsSqlAdapter.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
# Stimulsoft.Reports.JS
# Version: 2024.4.4
# Build date: 2024.11.13
# Version: 2024.4.5
# Build date: 2024.11.22
# License: https://www.stimulsoft.com/en/licensing/reports
?>
<?php
Expand All @@ -22,7 +22,7 @@ class StiMsSqlAdapter extends StiDataAdapter

### Properties

public $version = '2024.4.4';
public $version = '2024.4.5';
public $checkVersion = true;

protected $type = StiDatabaseType::MSSQL;
Expand Down
6 changes: 3 additions & 3 deletions PHPDataAdapters/StiMySqlAdapter.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
# Stimulsoft.Reports.JS
# Version: 2024.4.4
# Build date: 2024.11.13
# Version: 2024.4.5
# Build date: 2024.11.22
# License: https://www.stimulsoft.com/en/licensing/reports
?>
<?php
Expand All @@ -18,7 +18,7 @@ class StiMySqlAdapter extends StiDataAdapter

### Properties

public $version = '2024.4.4';
public $version = '2024.4.5';
public $checkVersion = true;

protected $type = StiDatabaseType::MySQL;
Expand Down
6 changes: 3 additions & 3 deletions PHPDataAdapters/StiOdbcAdapter.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
# Stimulsoft.Reports.JS
# Version: 2024.4.4
# Build date: 2024.11.13
# Version: 2024.4.5
# Build date: 2024.11.22
# License: https://www.stimulsoft.com/en/licensing/reports
?>
<?php
Expand All @@ -18,7 +18,7 @@ class StiOdbcAdapter extends StiDataAdapter

### Properties

public $version = '2024.4.4';
public $version = '2024.4.5';
public $checkVersion = true;

protected $type = StiDatabaseType::ODBC;
Expand Down
6 changes: 3 additions & 3 deletions PHPDataAdapters/StiOracleAdapter.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
# Stimulsoft.Reports.JS
# Version: 2024.4.4
# Build date: 2024.11.13
# Version: 2024.4.5
# Build date: 2024.11.22
# License: https://www.stimulsoft.com/en/licensing/reports
?>
<?php
Expand All @@ -24,7 +24,7 @@ class StiOracleAdapter extends StiDataAdapter

### Properties

public $version = '2024.4.4';
public $version = '2024.4.5';
public $checkVersion = true;

protected $type = StiDatabaseType::Oracle;
Expand Down
Loading

0 comments on commit d71f724

Please sign in to comment.