Skip to content

Commit

Permalink
Updated GSF dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
gsfbuildbot committed Jul 19, 2024
1 parent d0097cf commit 0469398
Show file tree
Hide file tree
Showing 98 changed files with 22,216 additions and 22,110 deletions.
Binary file modified Source/Applications/SIEGate/SIEGateSetup/AdapterExplorer.exe
Binary file not shown.
Binary file modified Source/Applications/SIEGate/SIEGateSetup/CSVDataManager.exe
Binary file not shown.
Binary file modified Source/Applications/SIEGate/SIEGateSetup/ConfigCrypter.exe
Binary file not shown.
Binary file modified Source/Applications/SIEGate/SIEGateSetup/ConfigurationEditor.exe
Binary file not shown.
Binary file modified Source/Applications/SIEGate/SIEGateSetup/CreateOutputStream.exe
Binary file not shown.
Binary file modified Source/Applications/SIEGate/SIEGateSetup/DNP3ConfigGenerator.exe
Binary file not shown.
Binary file not shown.
Binary file modified Source/Applications/SIEGate/SIEGateSetup/GEPDataExtractor.exe
Binary file not shown.
Binary file not shown.
Binary file modified Source/Applications/SIEGate/SIEGateSetup/HistorianView.exe
Binary file not shown.
Binary file modified Source/Applications/SIEGate/SIEGateSetup/LogFileViewer.exe
Binary file not shown.
Binary file modified Source/Applications/SIEGate/SIEGateSetup/NoInetFixUtil.exe
Binary file not shown.
Binary file not shown.
Binary file modified Source/Applications/SIEGate/SIEGateSetup/UpdateTagNames.exe
Binary file not shown.
3 changes: 2 additions & 1 deletion Source/Data/MySQL/SIEGate.sql
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ USE SIEGate;
-- IMPORTANT NOTE: When making updates to this schema, please increment the version number!
-- *******************************************************************************************
CREATE VIEW SchemaVersion AS
SELECT 15 AS VersionNumber;
SELECT 16 AS VersionNumber;

CREATE TABLE ErrorLog(
ID INT AUTO_INCREMENT NOT NULL,
Expand Down Expand Up @@ -628,6 +628,7 @@ CREATE TABLE AccessLog (
ID INT(11) NOT NULL AUTO_INCREMENT,
UserName VARCHAR(200) NOT NULL,
AccessGranted TINYINT NOT NULL,
NodeID NCHAR(36) NOT NULL,
CreatedOn DATETIME NULL,
CONSTRAINT PK_AccessLog PRIMARY KEY (ID ASC)
);
Expand Down
3 changes: 2 additions & 1 deletion Source/Data/Oracle/SIEGate.sql
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
-- IMPORTANT NOTE: When making updates to this schema, please increment the version number!
-- *******************************************************************************************
CREATE VIEW SchemaVersion AS
SELECT 15 AS VersionNumber
SELECT 16 AS VersionNumber
FROM dual;

CREATE TABLE ErrorLog(
Expand Down Expand Up @@ -948,6 +948,7 @@ CREATE TABLE AccessLog (
ID NUMBER NOT NULL,
UserName VARCHAR2(200) NOT NULL,
AccessGranted NUMBER NOT NULL,
NodeID VARCHAR2(36) NOT NULL,
CreatedOn DATE NOT NULL
);

Expand Down
3 changes: 2 additions & 1 deletion Source/Data/PostgreSQL/SIEGate.sql
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
-- IMPORTANT NOTE: When making updates to this schema, please increment the version number!
-- *******************************************************************************************
CREATE VIEW SchemaVersion AS
SELECT 15 AS VersionNumber;
SELECT 16 AS VersionNumber;

CREATE EXTENSION "uuid-ossp";

Expand Down Expand Up @@ -651,6 +651,7 @@ CREATE TABLE AccessLog (
ID SERIAL NOT NULL PRIMARY KEY,
UserName VARCHAR(200) NOT NULL,
AccessGranted SMALLINT NOT NULL,
NodeID NCHAR(36) NOT NULL,
CreatedOn TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);

Expand Down
3 changes: 2 additions & 1 deletion Source/Data/SQL Server/SIEGate.sql
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ GO
-- IMPORTANT NOTE: When making updates to this schema, please increment the version number!
-- *******************************************************************************************
CREATE VIEW [dbo].[SchemaVersion] AS
SELECT 15 AS VersionNumber
SELECT 16 AS VersionNumber
GO

SET ANSI_NULLS ON
Expand Down Expand Up @@ -1606,6 +1606,7 @@ CREATE TABLE [dbo].[AccessLog](
[ID] [int] IDENTITY(1,1) NOT NULL,
[UserName] [varchar](200) NOT NULL,
[AccessGranted] [bit] NOT NULL,
[NodeID] [uniqueidentifier] NOT NULL,
[CreatedOn] [datetime] NOT NULL CONSTRAINT [DF_AccessLog_Timestamp] DEFAULT (getutcdate()),
CONSTRAINT [PK_AccessLog] PRIMARY KEY CLUSTERED
(
Expand Down
Binary file modified Source/Data/SQLite/SIEGate-InitialDataSet.db
Binary file not shown.
Binary file modified Source/Data/SQLite/SIEGate-SampleDataSet.db
Binary file not shown.
Binary file modified Source/Data/SQLite/SIEGate.db
Binary file not shown.
3 changes: 2 additions & 1 deletion Source/Data/SQLite/SIEGate.sql
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ PRAGMA foreign_keys = ON;
-- IMPORTANT NOTE: When making updates to this schema, please increment the version number!
-- *******************************************************************************************
CREATE VIEW SchemaVersion AS
SELECT 15 AS VersionNumber;
SELECT 16 AS VersionNumber;

CREATE TABLE ErrorLog(
ID INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
Expand Down Expand Up @@ -642,6 +642,7 @@ CREATE TABLE AccessLog (
ID INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
UserName VARCHAR(200) NOT NULL,
AccessGranted BOOLEAN NOT NULL,
NodeID NCHAR(36) NOT NULL,
CreatedOn DATETIME NOT NULL DEFAULT ''
);

Expand Down
Binary file modified Source/Dependencies/GSF/AdoAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/ArchivistAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/AudioAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/AzureEventHubAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/COMTRADEAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/CsvAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/DataQualityMonitoring.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/DeviceStatAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/Dnp3Adapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/DynamicCalculator.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/EpriExport.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/FileAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/FtpAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.ASN1.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.COMTRADE.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Communication.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Core.dll
Binary file not shown.
44,210 changes: 22,105 additions & 22,105 deletions Source/Dependencies/GSF/GSF.Core.xml

Large diffs are not rendered by default.

Binary file modified Source/Dependencies/GSF/GSF.EMAX.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Geo.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Historian.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.InstallerActions.CA.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.MMS.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Media.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Net.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.PQDIF.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.PQDS.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.PhasorProtocols.UI.WPF.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.PhasorProtocols.UI.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.PhasorProtocols.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.SELEventParser.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Security.dll
Binary file not shown.
5 changes: 5 additions & 0 deletions Source/Dependencies/GSF/GSF.Security.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified Source/Dependencies/GSF/GSF.ServiceBus.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.ServiceModel.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.ServiceProcess.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.TimeSeries.Transport.UI.WPF.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.TimeSeries.Transport.UI.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.TimeSeries.UI.WPF.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.TimeSeries.UI.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.TimeSeries.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Web.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Windows.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GrafanaAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/Hadoop.Replication.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/HistorianAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/ICCPExport.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/InfluxDBAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/KafkaAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/MetadataAdapters.dll
Binary file not shown.
96 changes: 96 additions & 0 deletions Source/Dependencies/GSF/Microsoft.Identity.Client.Broker.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified Source/Dependencies/GSF/ModbusAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/MongoAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/MySqlAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/OneSecondFrequencyAverager.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/PIAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/PhasorProtocolAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/PhasorWebUI.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/PowerCalculations.UI.WPF.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/PowerCalculations.UI.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/PowerCalculations.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/SqlClr/GSF.Core.SqlClr.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/TestingAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/ValidateAssemblyBindings.exe
Binary file not shown.
Binary file modified Source/Dependencies/GSF/WavInputAdapter.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/eDNAAdapters.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Source/Dependencies/GSF/en/GSF.TimeSeries.UI.WPF.resources.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Source/Dependencies/GSF/es/GSF.TimeSeries.UI.WPF.resources.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/sttp.gsf.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Source/Dependencies/GSF/zh/GSF.TimeSeries.UI.WPF.resources.dll
Binary file not shown.

0 comments on commit 0469398

Please sign in to comment.