diff --git a/command/tests/extensionsTest/extensionWithLibsAtRoot/plugin.xml b/command/tests/extensionsTest/extensionWithLibsAtRoot/plugin.xml index 1cdd5369a..25d96ac58 100644 --- a/command/tests/extensionsTest/extensionWithLibsAtRoot/plugin.xml +++ b/command/tests/extensionsTest/extensionWithLibsAtRoot/plugin.xml @@ -2,7 +2,7 @@ TEST Plugin Mirth Corporation @mirthversion - 4.5.0 + 4.5.1 http://www.mirthcorp.com Fake plugin.xml to test shared library loading diff --git a/command/tests/extensionsTest/extensionWithLibsAtRootAndSubfolder/destination.xml b/command/tests/extensionsTest/extensionWithLibsAtRootAndSubfolder/destination.xml index dbddc0842..a69cd8449 100644 --- a/command/tests/extensionsTest/extensionWithLibsAtRootAndSubfolder/destination.xml +++ b/command/tests/extensionsTest/extensionWithLibsAtRootAndSubfolder/destination.xml @@ -2,7 +2,7 @@ TEST Plugin Mirth Corporation @mirthversion - 4.5.0 + 4.5.1 http://www.mirthcorp.com Fake plugin.xml to test shared library loading diff --git a/command/tests/extensionsTest/extensionWithMultileSharedLibsFromDifferentXml/destination.xml b/command/tests/extensionsTest/extensionWithMultileSharedLibsFromDifferentXml/destination.xml index ffdd79f8d..0430de078 100644 --- a/command/tests/extensionsTest/extensionWithMultileSharedLibsFromDifferentXml/destination.xml +++ b/command/tests/extensionsTest/extensionWithMultileSharedLibsFromDifferentXml/destination.xml @@ -2,7 +2,7 @@ TEST Plugin Mirth Corporation @mirthversion - 4.5.0 + 4.5.1 http://www.mirthcorp.com Fake plugin.xml to test shared library loading diff --git a/command/tests/extensionsTest/extensionWithMultileSharedLibsFromDifferentXml/plugin.xml b/command/tests/extensionsTest/extensionWithMultileSharedLibsFromDifferentXml/plugin.xml index a11aa03e5..59e82ab38 100644 --- a/command/tests/extensionsTest/extensionWithMultileSharedLibsFromDifferentXml/plugin.xml +++ b/command/tests/extensionsTest/extensionWithMultileSharedLibsFromDifferentXml/plugin.xml @@ -2,7 +2,7 @@ TEST Plugin Mirth Corporation @mirthversion - 4.5.0 + 4.5.1 http://www.mirthcorp.com Fake plugin.xml to test shared library loading diff --git a/command/tests/extensionsTest/extensionWithMultileSharedLibsFromDifferentXml/source.xml b/command/tests/extensionsTest/extensionWithMultileSharedLibsFromDifferentXml/source.xml index 0e5d23910..7451d819d 100644 --- a/command/tests/extensionsTest/extensionWithMultileSharedLibsFromDifferentXml/source.xml +++ b/command/tests/extensionsTest/extensionWithMultileSharedLibsFromDifferentXml/source.xml @@ -2,7 +2,7 @@ TEST Plugin Mirth Corporation @mirthversion - 4.5.0 + 4.5.1 http://www.mirthcorp.com Fake plugin.xml to test shared library loading diff --git a/command/tests/extensionsTest/extensionWithNoSharedLibs/source.xml b/command/tests/extensionsTest/extensionWithNoSharedLibs/source.xml index 541517f3b..c4c80d1b7 100644 --- a/command/tests/extensionsTest/extensionWithNoSharedLibs/source.xml +++ b/command/tests/extensionsTest/extensionWithNoSharedLibs/source.xml @@ -2,7 +2,7 @@ TEST Plugin Mirth Corporation @mirthversion - 4.5.0 + 4.5.1 http://www.mirthcorp.com Fake plugin.xml to test shared library loading diff --git a/command/tests/extensionsTest/extensionWithSameLibReferencedFromDifferentXml/plugin.xml b/command/tests/extensionsTest/extensionWithSameLibReferencedFromDifferentXml/plugin.xml index befdd09a3..843d70cd0 100644 --- a/command/tests/extensionsTest/extensionWithSameLibReferencedFromDifferentXml/plugin.xml +++ b/command/tests/extensionsTest/extensionWithSameLibReferencedFromDifferentXml/plugin.xml @@ -2,7 +2,7 @@ TEST Plugin Mirth Corporation @mirthversion - 4.5.0 + 4.5.1 http://www.mirthcorp.com Fake plugin.xml to test shared library loading diff --git a/command/tests/extensionsTest/extensionWithSameLibReferencedFromDifferentXml/source.xml b/command/tests/extensionsTest/extensionWithSameLibReferencedFromDifferentXml/source.xml index befdd09a3..843d70cd0 100644 --- a/command/tests/extensionsTest/extensionWithSameLibReferencedFromDifferentXml/source.xml +++ b/command/tests/extensionsTest/extensionWithSameLibReferencedFromDifferentXml/source.xml @@ -2,7 +2,7 @@ TEST Plugin Mirth Corporation @mirthversion - 4.5.0 + 4.5.1 http://www.mirthcorp.com Fake plugin.xml to test shared library loading diff --git a/server/conf/mirth.properties b/server/conf/mirth.properties index 1c94a2a73..42bbe6cc4 100644 --- a/server/conf/mirth.properties +++ b/server/conf/mirth.properties @@ -22,7 +22,7 @@ password.reuseperiod = 0 password.reuselimit = 0 # Only used for migration purposes, do not modify -version = 4.5.0 +version = 4.5.1 # keystore keystore.path = ${dir.appdata}/keystore.jks diff --git a/server/dbconf/derby/derby-database.sql b/server/dbconf/derby/derby-database.sql index 9a2c7a113..3a695a45a 100644 --- a/server/dbconf/derby/derby-database.sql +++ b/server/dbconf/derby/derby-database.sql @@ -1,122 +1,122 @@ -CREATE TABLE SCHEMA_INFO - (VERSION VARCHAR(40)); - -CREATE TABLE EVENT - (ID INTEGER GENERATED ALWAYS AS IDENTITY (START WITH 1) NOT NULL PRIMARY KEY, - DATE_CREATED TIMESTAMP DEFAULT NULL, - NAME CLOB NOT NULL, - EVENT_LEVEL VARCHAR(40) NOT NULL, - OUTCOME VARCHAR(40), - ATTRIBUTES CLOB, - USER_ID INTEGER NOT NULL, - IP_ADDRESS VARCHAR(40), - SERVER_ID CHARACTER VARYING(36)); - -CREATE TABLE CHANNEL - (ID VARCHAR(36) NOT NULL PRIMARY KEY, - NAME VARCHAR(40) NOT NULL, - REVISION INTEGER, - CHANNEL CLOB); - -CREATE TABLE SCRIPT - (GROUP_ID VARCHAR(40) NOT NULL, - ID VARCHAR(40) NOT NULL, - SCRIPT CLOB); - -ALTER TABLE SCRIPT ADD PRIMARY KEY (GROUP_ID, ID); - -CREATE TABLE PERSON - (ID INTEGER GENERATED ALWAYS AS IDENTITY (START WITH 1) NOT NULL PRIMARY KEY, - USERNAME VARCHAR(40) NOT NULL, - FIRSTNAME VARCHAR(40), - LASTNAME VARCHAR(40), - ORGANIZATION VARCHAR(255), - INDUSTRY VARCHAR(255), - EMAIL VARCHAR(255), - PHONENUMBER VARCHAR(40), - DESCRIPTION VARCHAR(255), - LAST_LOGIN TIMESTAMP DEFAULT NULL, - GRACE_PERIOD_START TIMESTAMP DEFAULT NULL, - STRIKE_COUNT INTEGER, - LAST_STRIKE_TIME TIMESTAMP DEFAULT NULL, - LOGGED_IN SMALLINT NOT NULL, - ROLE VARCHAR(40), - COUNTRY VARCHAR(40), - STATETERRITORY VARCHAR(40), - USERCONSENT BOOLEAN NOT NULL DEFAULT false -); - -CREATE TABLE PERSON_PREFERENCE - (PERSON_ID INTEGER NOT NULL, - NAME VARCHAR(255) NOT NULL, - VALUE CLOB, - CONSTRAINT PERSON_ID_PERSON_PREF_FK FOREIGN KEY(PERSON_ID) REFERENCES PERSON(ID) ON DELETE CASCADE); - -CREATE INDEX PERSON_PREFERENCE_INDEX1 ON PERSON_PREFERENCE(PERSON_ID); - -CREATE TABLE PERSON_PASSWORD - (PERSON_ID INTEGER NOT NULL, - PASSWORD VARCHAR(255) NOT NULL, - PASSWORD_DATE TIMESTAMP DEFAULT NULL, - CONSTRAINT PERSON_ID_PP_FK FOREIGN KEY(PERSON_ID) REFERENCES PERSON(ID) ON DELETE CASCADE); - -CREATE TABLE ALERT ( - ID VARCHAR(36) NOT NULL PRIMARY KEY, - NAME VARCHAR(255) NOT NULL UNIQUE, - ALERT CLOB NOT NULL -); - -CREATE TABLE CODE_TEMPLATE_LIBRARY - (ID VARCHAR(255) NOT NULL PRIMARY KEY, - NAME VARCHAR(255) NOT NULL UNIQUE, - REVISION INTEGER, - LIBRARY CLOB); - -CREATE TABLE CODE_TEMPLATE - (ID VARCHAR(255) NOT NULL PRIMARY KEY, - NAME VARCHAR(255) NOT NULL, - REVISION INTEGER, - CODE_TEMPLATE CLOB); - -CREATE TABLE CONFIGURATION - (CATEGORY VARCHAR(255) NOT NULL, - NAME VARCHAR(255) NOT NULL, - VALUE CLOB); - -ALTER TABLE CONFIGURATION ADD PRIMARY KEY (CATEGORY, NAME); - -CREATE TABLE CHANNEL_GROUP - (ID VARCHAR(255) NOT NULL PRIMARY KEY, - NAME VARCHAR(255) NOT NULL UNIQUE, - REVISION INTEGER, - CHANNEL_GROUP CLOB); - -CREATE TABLE DEBUGGER_USAGE - (ID INTEGER GENERATED ALWAYS AS IDENTITY (START WITH 1) NOT NULL PRIMARY KEY, - SERVER_ID VARCHAR(50) NOT NULL, - DUPP_COUNT INTEGER, - ATTACH_BATCH_COUNT INTEGER, - SOURCE_CONNECTOR_COUNT INTEGER, - SOURCE_FILTER_TRANS_COUNT INTEGER, - DESTINATION_FILTER_TRANS_COUNT INTEGER, - DESTINATION_CONNECTOR_COUNT INTEGER, - RESPONSE_COUNT INTEGER, - INVOCATION_COUNT INTEGER); - -INSERT INTO PERSON (USERNAME, LOGGED_IN) VALUES('admin', 0); - -INSERT INTO PERSON_PASSWORD (PERSON_ID, PASSWORD) VALUES(1, 'b8cA3mDkavInMc2JBYa6/C3EGxDp7ppqh7FsoXx0x8+3LWK3Ed3ELg=='); - -INSERT INTO SCHEMA_INFO (VERSION) VALUES ('4.5.0'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'stats.enabled', '1'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'server.resetglobalvariables', '1'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.timeout', '5000'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.auth', '0'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.secure', '0'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'server.queuebuffersize', '1000'); +CREATE TABLE SCHEMA_INFO + (VERSION VARCHAR(40)); + +CREATE TABLE EVENT + (ID INTEGER GENERATED ALWAYS AS IDENTITY (START WITH 1) NOT NULL PRIMARY KEY, + DATE_CREATED TIMESTAMP DEFAULT NULL, + NAME CLOB NOT NULL, + EVENT_LEVEL VARCHAR(40) NOT NULL, + OUTCOME VARCHAR(40), + ATTRIBUTES CLOB, + USER_ID INTEGER NOT NULL, + IP_ADDRESS VARCHAR(40), + SERVER_ID CHARACTER VARYING(36)); + +CREATE TABLE CHANNEL + (ID VARCHAR(36) NOT NULL PRIMARY KEY, + NAME VARCHAR(40) NOT NULL, + REVISION INTEGER, + CHANNEL CLOB); + +CREATE TABLE SCRIPT + (GROUP_ID VARCHAR(40) NOT NULL, + ID VARCHAR(40) NOT NULL, + SCRIPT CLOB); + +ALTER TABLE SCRIPT ADD PRIMARY KEY (GROUP_ID, ID); + +CREATE TABLE PERSON + (ID INTEGER GENERATED ALWAYS AS IDENTITY (START WITH 1) NOT NULL PRIMARY KEY, + USERNAME VARCHAR(40) NOT NULL, + FIRSTNAME VARCHAR(40), + LASTNAME VARCHAR(40), + ORGANIZATION VARCHAR(255), + INDUSTRY VARCHAR(255), + EMAIL VARCHAR(255), + PHONENUMBER VARCHAR(40), + DESCRIPTION VARCHAR(255), + LAST_LOGIN TIMESTAMP DEFAULT NULL, + GRACE_PERIOD_START TIMESTAMP DEFAULT NULL, + STRIKE_COUNT INTEGER, + LAST_STRIKE_TIME TIMESTAMP DEFAULT NULL, + LOGGED_IN SMALLINT NOT NULL, + ROLE VARCHAR(40), + COUNTRY VARCHAR(40), + STATETERRITORY VARCHAR(40), + USERCONSENT BOOLEAN NOT NULL DEFAULT false +); + +CREATE TABLE PERSON_PREFERENCE + (PERSON_ID INTEGER NOT NULL, + NAME VARCHAR(255) NOT NULL, + VALUE CLOB, + CONSTRAINT PERSON_ID_PERSON_PREF_FK FOREIGN KEY(PERSON_ID) REFERENCES PERSON(ID) ON DELETE CASCADE); + +CREATE INDEX PERSON_PREFERENCE_INDEX1 ON PERSON_PREFERENCE(PERSON_ID); + +CREATE TABLE PERSON_PASSWORD + (PERSON_ID INTEGER NOT NULL, + PASSWORD VARCHAR(255) NOT NULL, + PASSWORD_DATE TIMESTAMP DEFAULT NULL, + CONSTRAINT PERSON_ID_PP_FK FOREIGN KEY(PERSON_ID) REFERENCES PERSON(ID) ON DELETE CASCADE); + +CREATE TABLE ALERT ( + ID VARCHAR(36) NOT NULL PRIMARY KEY, + NAME VARCHAR(255) NOT NULL UNIQUE, + ALERT CLOB NOT NULL +); + +CREATE TABLE CODE_TEMPLATE_LIBRARY + (ID VARCHAR(255) NOT NULL PRIMARY KEY, + NAME VARCHAR(255) NOT NULL UNIQUE, + REVISION INTEGER, + LIBRARY CLOB); + +CREATE TABLE CODE_TEMPLATE + (ID VARCHAR(255) NOT NULL PRIMARY KEY, + NAME VARCHAR(255) NOT NULL, + REVISION INTEGER, + CODE_TEMPLATE CLOB); + +CREATE TABLE CONFIGURATION + (CATEGORY VARCHAR(255) NOT NULL, + NAME VARCHAR(255) NOT NULL, + VALUE CLOB); + +ALTER TABLE CONFIGURATION ADD PRIMARY KEY (CATEGORY, NAME); + +CREATE TABLE CHANNEL_GROUP + (ID VARCHAR(255) NOT NULL PRIMARY KEY, + NAME VARCHAR(255) NOT NULL UNIQUE, + REVISION INTEGER, + CHANNEL_GROUP CLOB); + +CREATE TABLE DEBUGGER_USAGE + (ID INTEGER GENERATED ALWAYS AS IDENTITY (START WITH 1) NOT NULL PRIMARY KEY, + SERVER_ID VARCHAR(50) NOT NULL, + DUPP_COUNT INTEGER, + ATTACH_BATCH_COUNT INTEGER, + SOURCE_CONNECTOR_COUNT INTEGER, + SOURCE_FILTER_TRANS_COUNT INTEGER, + DESTINATION_FILTER_TRANS_COUNT INTEGER, + DESTINATION_CONNECTOR_COUNT INTEGER, + RESPONSE_COUNT INTEGER, + INVOCATION_COUNT INTEGER); + +INSERT INTO PERSON (USERNAME, LOGGED_IN) VALUES('admin', 0); + +INSERT INTO PERSON_PASSWORD (PERSON_ID, PASSWORD) VALUES(1, 'b8cA3mDkavInMc2JBYa6/C3EGxDp7ppqh7FsoXx0x8+3LWK3Ed3ELg=='); + +INSERT INTO SCHEMA_INFO (VERSION) VALUES ('4.5.1'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'stats.enabled', '1'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'server.resetglobalvariables', '1'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.timeout', '5000'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.auth', '0'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.secure', '0'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'server.queuebuffersize', '1000'); diff --git a/server/dbconf/mysql/mysql-database.sql b/server/dbconf/mysql/mysql-database.sql index 798b412f7..5b3a0de96 100644 --- a/server/dbconf/mysql/mysql-database.sql +++ b/server/dbconf/mysql/mysql-database.sql @@ -113,7 +113,7 @@ INSERT INTO PERSON (USERNAME, LOGGED_IN) VALUES('admin', FALSE); INSERT INTO PERSON_PASSWORD (PERSON_ID, PASSWORD) VALUES(1, 'b8cA3mDkavInMc2JBYa6/C3EGxDp7ppqh7FsoXx0x8+3LWK3Ed3ELg=='); -INSERT INTO SCHEMA_INFO (VERSION) VALUES ('4.5.0'); +INSERT INTO SCHEMA_INFO (VERSION) VALUES ('4.5.1'); INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'stats.enabled', '1'); diff --git a/server/dbconf/oracle/oracle-database.sql b/server/dbconf/oracle/oracle-database.sql index 63c252780..1170b7084 100644 --- a/server/dbconf/oracle/oracle-database.sql +++ b/server/dbconf/oracle/oracle-database.sql @@ -1,127 +1,127 @@ -CREATE TABLE SCHEMA_INFO (VERSION VARCHAR(40)); - -CREATE SEQUENCE EVENT_SEQUENCE START WITH 1 INCREMENT BY 1; - -CREATE TABLE EVENT - (ID NUMBER(10) NOT NULL PRIMARY KEY, - DATE_CREATED TIMESTAMP WITH LOCAL TIME ZONE DEFAULT NULL, - NAME CLOB NOT NULL, - EVENT_LEVEL VARCHAR(40) NOT NULL, - OUTCOME VARCHAR(40) NOT NULL, - ATTRIBUTES CLOB, - USER_ID NUMBER(10) NOT NULL, - IP_ADDRESS VARCHAR(40), - SERVER_ID NVARCHAR2(36)); - -CREATE TABLE CHANNEL - (ID CHAR(36) NOT NULL PRIMARY KEY, - NAME VARCHAR(40) NOT NULL, - REVISION NUMBER(10), - CHANNEL CLOB); - -CREATE TABLE SCRIPT - (GROUP_ID VARCHAR(40) NOT NULL, - ID VARCHAR(40) NOT NULL, - SCRIPT CLOB, - PRIMARY KEY(GROUP_ID, ID)); - -CREATE SEQUENCE PERSON_SEQUENCE START WITH 1 INCREMENT BY 1; - -CREATE TABLE PERSON - (ID NUMBER(10) NOT NULL PRIMARY KEY, - USERNAME VARCHAR(40) NOT NULL, - FIRSTNAME VARCHAR(40), - LASTNAME VARCHAR(40), - ORGANIZATION VARCHAR(255), - INDUSTRY VARCHAR(255), - EMAIL VARCHAR(255), - PHONENUMBER VARCHAR(40), - DESCRIPTION VARCHAR(255), - LAST_LOGIN TIMESTAMP WITH LOCAL TIME ZONE DEFAULT NULL, - GRACE_PERIOD_START TIMESTAMP WITH LOCAL TIME ZONE DEFAULT NULL, - STRIKE_COUNT NUMBER(10), - LAST_STRIKE_TIME TIMESTAMP WITH LOCAL TIME ZONE DEFAULT NULL, - LOGGED_IN CHAR(1) NOT NULL, - ROLE VARCHAR(40), - COUNTRY VARCHAR(40), - STATETERRITORY VARCHAR(40)); - -ALTER TABLE PERSON ADD USERCONSENT CHAR(1) DEFAULT '0' NOT NULL; - -CREATE TABLE PERSON_PREFERENCE - (PERSON_ID NUMBER(10) NOT NULL REFERENCES PERSON(ID) ON DELETE CASCADE, - NAME VARCHAR(255) NOT NULL, - VALUE CLOB); - -CREATE TABLE PERSON_PASSWORD - (PERSON_ID NUMBER(10) NOT NULL REFERENCES PERSON(ID) ON DELETE CASCADE, - PASSWORD VARCHAR(255) NOT NULL, - PASSWORD_DATE TIMESTAMP WITH LOCAL TIME ZONE DEFAULT NULL); - -CREATE INDEX PERSON_PREFERENCE_INDEX1 ON PERSON_PREFERENCE(PERSON_ID); - -CREATE TABLE ALERT ( - ID VARCHAR(36) NOT NULL PRIMARY KEY, - NAME VARCHAR(255) NOT NULL UNIQUE, - ALERT CLOB NOT NULL -); - -CREATE TABLE CODE_TEMPLATE_LIBRARY - (ID VARCHAR(255) NOT NULL PRIMARY KEY, - NAME VARCHAR(255) NOT NULL UNIQUE, - REVISION NUMBER(10), - LIBRARY CLOB); - -CREATE TABLE CODE_TEMPLATE - (ID VARCHAR(255) NOT NULL PRIMARY KEY, - NAME VARCHAR(255) NOT NULL, - REVISION NUMBER(10), - CODE_TEMPLATE CLOB); - -CREATE SEQUENCE CONFIGURATION_SEQUENCE START WITH 1 INCREMENT BY 1; - -CREATE TABLE CONFIGURATION - (CATEGORY VARCHAR(255) NOT NULL, - NAME VARCHAR(255) NOT NULL, - VALUE CLOB, - PRIMARY KEY(CATEGORY, NAME)); - -CREATE TABLE CHANNEL_GROUP - (ID VARCHAR(255) NOT NULL PRIMARY KEY, - NAME VARCHAR(255) NOT NULL UNIQUE, - REVISION NUMBER(10), - CHANNEL_GROUP CLOB); - -CREATE SEQUENCE DEBUG_USAGE_SEQUENCE START WITH 1 INCREMENT BY 1; - -CREATE TABLE DEBUGGER_USAGE - (ID NUMBER(38) DEFAULT DEBUG_USAGE_SEQUENCE.NEXTVAL NOT NULL PRIMARY KEY, - SERVER_ID VARCHAR(50) NOT NULL, - DUPP_COUNT NUMBER(38), - ATTACH_BATCH_COUNT NUMBER(38), - SOURCE_CONNECTOR_COUNT NUMBER(38), - SOURCE_FILTER_TRANS_COUNT NUMBER(38), - DESTINATION_FILTER_TRANS_COUNT NUMBER(38), - DESTINATION_CONNECTOR_COUNT NUMBER(38), - RESPONSE_COUNT NUMBER(38), - INVOCATION_COUNT NUMBER(38)); - -INSERT INTO PERSON (ID, USERNAME, LOGGED_IN, USERCONSENT) VALUES (PERSON_SEQUENCE.NEXTVAL, 'admin', '0', '0'); - -INSERT INTO PERSON_PASSWORD (PERSON_ID, PASSWORD) VALUES(PERSON_SEQUENCE.CURRVAL, 'b8cA3mDkavInMc2JBYa6/C3EGxDp7ppqh7FsoXx0x8+3LWK3Ed3ELg=='); - -INSERT INTO SCHEMA_INFO (VERSION) VALUES ('4.5.0'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'stats.enabled', '1'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'server.resetglobalvariables', '1'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.timeout', '5000'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.auth', '0'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.secure', '0'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'server.queuebuffersize', '1000'); - -COMMIT; +CREATE TABLE SCHEMA_INFO (VERSION VARCHAR(40)); + +CREATE SEQUENCE EVENT_SEQUENCE START WITH 1 INCREMENT BY 1; + +CREATE TABLE EVENT + (ID NUMBER(10) NOT NULL PRIMARY KEY, + DATE_CREATED TIMESTAMP WITH LOCAL TIME ZONE DEFAULT NULL, + NAME CLOB NOT NULL, + EVENT_LEVEL VARCHAR(40) NOT NULL, + OUTCOME VARCHAR(40) NOT NULL, + ATTRIBUTES CLOB, + USER_ID NUMBER(10) NOT NULL, + IP_ADDRESS VARCHAR(40), + SERVER_ID NVARCHAR2(36)); + +CREATE TABLE CHANNEL + (ID CHAR(36) NOT NULL PRIMARY KEY, + NAME VARCHAR(40) NOT NULL, + REVISION NUMBER(10), + CHANNEL CLOB); + +CREATE TABLE SCRIPT + (GROUP_ID VARCHAR(40) NOT NULL, + ID VARCHAR(40) NOT NULL, + SCRIPT CLOB, + PRIMARY KEY(GROUP_ID, ID)); + +CREATE SEQUENCE PERSON_SEQUENCE START WITH 1 INCREMENT BY 1; + +CREATE TABLE PERSON + (ID NUMBER(10) NOT NULL PRIMARY KEY, + USERNAME VARCHAR(40) NOT NULL, + FIRSTNAME VARCHAR(40), + LASTNAME VARCHAR(40), + ORGANIZATION VARCHAR(255), + INDUSTRY VARCHAR(255), + EMAIL VARCHAR(255), + PHONENUMBER VARCHAR(40), + DESCRIPTION VARCHAR(255), + LAST_LOGIN TIMESTAMP WITH LOCAL TIME ZONE DEFAULT NULL, + GRACE_PERIOD_START TIMESTAMP WITH LOCAL TIME ZONE DEFAULT NULL, + STRIKE_COUNT NUMBER(10), + LAST_STRIKE_TIME TIMESTAMP WITH LOCAL TIME ZONE DEFAULT NULL, + LOGGED_IN CHAR(1) NOT NULL, + ROLE VARCHAR(40), + COUNTRY VARCHAR(40), + STATETERRITORY VARCHAR(40)); + +ALTER TABLE PERSON ADD USERCONSENT CHAR(1) DEFAULT '0' NOT NULL; + +CREATE TABLE PERSON_PREFERENCE + (PERSON_ID NUMBER(10) NOT NULL REFERENCES PERSON(ID) ON DELETE CASCADE, + NAME VARCHAR(255) NOT NULL, + VALUE CLOB); + +CREATE TABLE PERSON_PASSWORD + (PERSON_ID NUMBER(10) NOT NULL REFERENCES PERSON(ID) ON DELETE CASCADE, + PASSWORD VARCHAR(255) NOT NULL, + PASSWORD_DATE TIMESTAMP WITH LOCAL TIME ZONE DEFAULT NULL); + +CREATE INDEX PERSON_PREFERENCE_INDEX1 ON PERSON_PREFERENCE(PERSON_ID); + +CREATE TABLE ALERT ( + ID VARCHAR(36) NOT NULL PRIMARY KEY, + NAME VARCHAR(255) NOT NULL UNIQUE, + ALERT CLOB NOT NULL +); + +CREATE TABLE CODE_TEMPLATE_LIBRARY + (ID VARCHAR(255) NOT NULL PRIMARY KEY, + NAME VARCHAR(255) NOT NULL UNIQUE, + REVISION NUMBER(10), + LIBRARY CLOB); + +CREATE TABLE CODE_TEMPLATE + (ID VARCHAR(255) NOT NULL PRIMARY KEY, + NAME VARCHAR(255) NOT NULL, + REVISION NUMBER(10), + CODE_TEMPLATE CLOB); + +CREATE SEQUENCE CONFIGURATION_SEQUENCE START WITH 1 INCREMENT BY 1; + +CREATE TABLE CONFIGURATION + (CATEGORY VARCHAR(255) NOT NULL, + NAME VARCHAR(255) NOT NULL, + VALUE CLOB, + PRIMARY KEY(CATEGORY, NAME)); + +CREATE TABLE CHANNEL_GROUP + (ID VARCHAR(255) NOT NULL PRIMARY KEY, + NAME VARCHAR(255) NOT NULL UNIQUE, + REVISION NUMBER(10), + CHANNEL_GROUP CLOB); + +CREATE SEQUENCE DEBUG_USAGE_SEQUENCE START WITH 1 INCREMENT BY 1; + +CREATE TABLE DEBUGGER_USAGE + (ID NUMBER(38) DEFAULT DEBUG_USAGE_SEQUENCE.NEXTVAL NOT NULL PRIMARY KEY, + SERVER_ID VARCHAR(50) NOT NULL, + DUPP_COUNT NUMBER(38), + ATTACH_BATCH_COUNT NUMBER(38), + SOURCE_CONNECTOR_COUNT NUMBER(38), + SOURCE_FILTER_TRANS_COUNT NUMBER(38), + DESTINATION_FILTER_TRANS_COUNT NUMBER(38), + DESTINATION_CONNECTOR_COUNT NUMBER(38), + RESPONSE_COUNT NUMBER(38), + INVOCATION_COUNT NUMBER(38)); + +INSERT INTO PERSON (ID, USERNAME, LOGGED_IN, USERCONSENT) VALUES (PERSON_SEQUENCE.NEXTVAL, 'admin', '0', '0'); + +INSERT INTO PERSON_PASSWORD (PERSON_ID, PASSWORD) VALUES(PERSON_SEQUENCE.CURRVAL, 'b8cA3mDkavInMc2JBYa6/C3EGxDp7ppqh7FsoXx0x8+3LWK3Ed3ELg=='); + +INSERT INTO SCHEMA_INFO (VERSION) VALUES ('4.5.1'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'stats.enabled', '1'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'server.resetglobalvariables', '1'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.timeout', '5000'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.auth', '0'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.secure', '0'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'server.queuebuffersize', '1000'); + +COMMIT; diff --git a/server/dbconf/postgres/postgres-database.sql b/server/dbconf/postgres/postgres-database.sql index 0cbab6775..73a5894c4 100644 --- a/server/dbconf/postgres/postgres-database.sql +++ b/server/dbconf/postgres/postgres-database.sql @@ -1,124 +1,124 @@ -CREATE TABLE SCHEMA_INFO - (VERSION VARCHAR(40)); - -CREATE SEQUENCE EVENT_SEQUENCE START WITH 1; - -CREATE TABLE EVENT - (ID INTEGER DEFAULT nextval('EVENT_SEQUENCE') NOT NULL PRIMARY KEY, - DATE_CREATED TIMESTAMP WITH TIME ZONE DEFAULT NULL, - NAME TEXT NOT NULL, - EVENT_LEVEL VARCHAR(40) NOT NULL, - OUTCOME VARCHAR(40) NOT NULL, - ATTRIBUTES TEXT, - USER_ID INTEGER NOT NULL, - IP_ADDRESS VARCHAR(40), - SERVER_ID CHARACTER VARYING(36)); - -CREATE TABLE CHANNEL - (ID CHAR(36) NOT NULL PRIMARY KEY, - NAME VARCHAR(40) NOT NULL, - REVISION INTEGER, - CHANNEL TEXT); - -CREATE TABLE SCRIPT - (GROUP_ID VARCHAR(40) NOT NULL, - ID VARCHAR(40) NOT NULL, - SCRIPT TEXT, - PRIMARY KEY(GROUP_ID, ID)); - -CREATE SEQUENCE PERSON_SEQUENCE START WITH 1; - -CREATE TABLE PERSON - (ID INTEGER DEFAULT nextval('PERSON_SEQUENCE') NOT NULL PRIMARY KEY, - USERNAME VARCHAR(40) NOT NULL, - FIRSTNAME VARCHAR(40), - LASTNAME VARCHAR(40), - ORGANIZATION VARCHAR(255), - INDUSTRY VARCHAR(255), - EMAIL VARCHAR(255), - PHONENUMBER VARCHAR(40), - DESCRIPTION VARCHAR(255), - LAST_LOGIN TIMESTAMP WITH TIME ZONE DEFAULT NULL, - GRACE_PERIOD_START TIMESTAMP WITH TIME ZONE DEFAULT NULL, - STRIKE_COUNT INTEGER, - LAST_STRIKE_TIME TIMESTAMP WITH TIME ZONE DEFAULT NULL, - LOGGED_IN BOOLEAN NOT NULL, - ROLE VARCHAR(40), - COUNTRY VARCHAR(40), - STATETERRITORY VARCHAR(40), - USERCONSENT BOOLEAN NOT NULL DEFAULT false); - -CREATE TABLE PERSON_PREFERENCE - (PERSON_ID INTEGER NOT NULL REFERENCES PERSON(ID) ON DELETE CASCADE, - NAME VARCHAR(255) NOT NULL, - VALUE TEXT); - -CREATE INDEX PERSON_PREFERENCE_INDEX1 ON PERSON_PREFERENCE USING BTREE (PERSON_ID); - -CREATE TABLE PERSON_PASSWORD - (PERSON_ID INTEGER NOT NULL REFERENCES PERSON(ID) ON DELETE CASCADE, - PASSWORD VARCHAR(255) NOT NULL, - PASSWORD_DATE TIMESTAMP WITH TIME ZONE DEFAULT NULL); - -CREATE TABLE ALERT - (ID CHAR(36) NOT NULL PRIMARY KEY, - NAME VARCHAR(255) NOT NULL UNIQUE, - ALERT TEXT NOT NULL); - -CREATE TABLE CODE_TEMPLATE_LIBRARY - (ID VARCHAR(255) NOT NULL PRIMARY KEY, - NAME VARCHAR(255) NOT NULL UNIQUE, - REVISION INTEGER, - LIBRARY TEXT); - -CREATE TABLE CODE_TEMPLATE - (ID VARCHAR(255) NOT NULL PRIMARY KEY, - NAME VARCHAR(255) NOT NULL, - REVISION INTEGER, - CODE_TEMPLATE TEXT); - -CREATE SEQUENCE CONFIGURATION_SEQUENCE START WITH 1; - -CREATE TABLE CONFIGURATION - (CATEGORY VARCHAR(255) NOT NULL, - NAME VARCHAR(255) NOT NULL, - VALUE TEXT, - PRIMARY KEY(CATEGORY, NAME)); - -CREATE TABLE CHANNEL_GROUP - (ID VARCHAR(255) NOT NULL PRIMARY KEY, - NAME VARCHAR(255) NOT NULL UNIQUE, - REVISION INTEGER, - CHANNEL_GROUP TEXT); - -CREATE SEQUENCE DEBUG_USAGE_SEQUENCE START WITH 1; - -CREATE TABLE DEBUGGER_USAGE - (ID INTEGER DEFAULT nextval('DEBUG_USAGE_SEQUENCE') NOT NULL PRIMARY KEY, - SERVER_ID CHARACTER VARYING(50) NOT NULL, - DUPP_COUNT INTEGER, - ATTACH_BATCH_COUNT INTEGER, - SOURCE_CONNECTOR_COUNT INTEGER, - SOURCE_FILTER_TRANS_COUNT INTEGER, - DESTINATION_FILTER_TRANS_COUNT INTEGER, - DESTINATION_CONNECTOR_COUNT INTEGER, - RESPONSE_COUNT INTEGER, - INVOCATION_COUNT INTEGER); - -INSERT INTO PERSON (USERNAME, LOGGED_IN) VALUES('admin', FALSE); - -INSERT INTO PERSON_PASSWORD (PERSON_ID, PASSWORD) VALUES(1, 'b8cA3mDkavInMc2JBYa6/C3EGxDp7ppqh7FsoXx0x8+3LWK3Ed3ELg=='); - -INSERT INTO SCHEMA_INFO (VERSION) VALUES ('4.5.0'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'stats.enabled', '1'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'server.resetglobalvariables', '1'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.timeout', '5000'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.auth', '0'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.secure', '0'); - -INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'server.queuebuffersize', '1000'); +CREATE TABLE SCHEMA_INFO + (VERSION VARCHAR(40)); + +CREATE SEQUENCE EVENT_SEQUENCE START WITH 1; + +CREATE TABLE EVENT + (ID INTEGER DEFAULT nextval('EVENT_SEQUENCE') NOT NULL PRIMARY KEY, + DATE_CREATED TIMESTAMP WITH TIME ZONE DEFAULT NULL, + NAME TEXT NOT NULL, + EVENT_LEVEL VARCHAR(40) NOT NULL, + OUTCOME VARCHAR(40) NOT NULL, + ATTRIBUTES TEXT, + USER_ID INTEGER NOT NULL, + IP_ADDRESS VARCHAR(40), + SERVER_ID CHARACTER VARYING(36)); + +CREATE TABLE CHANNEL + (ID CHAR(36) NOT NULL PRIMARY KEY, + NAME VARCHAR(40) NOT NULL, + REVISION INTEGER, + CHANNEL TEXT); + +CREATE TABLE SCRIPT + (GROUP_ID VARCHAR(40) NOT NULL, + ID VARCHAR(40) NOT NULL, + SCRIPT TEXT, + PRIMARY KEY(GROUP_ID, ID)); + +CREATE SEQUENCE PERSON_SEQUENCE START WITH 1; + +CREATE TABLE PERSON + (ID INTEGER DEFAULT nextval('PERSON_SEQUENCE') NOT NULL PRIMARY KEY, + USERNAME VARCHAR(40) NOT NULL, + FIRSTNAME VARCHAR(40), + LASTNAME VARCHAR(40), + ORGANIZATION VARCHAR(255), + INDUSTRY VARCHAR(255), + EMAIL VARCHAR(255), + PHONENUMBER VARCHAR(40), + DESCRIPTION VARCHAR(255), + LAST_LOGIN TIMESTAMP WITH TIME ZONE DEFAULT NULL, + GRACE_PERIOD_START TIMESTAMP WITH TIME ZONE DEFAULT NULL, + STRIKE_COUNT INTEGER, + LAST_STRIKE_TIME TIMESTAMP WITH TIME ZONE DEFAULT NULL, + LOGGED_IN BOOLEAN NOT NULL, + ROLE VARCHAR(40), + COUNTRY VARCHAR(40), + STATETERRITORY VARCHAR(40), + USERCONSENT BOOLEAN NOT NULL DEFAULT false); + +CREATE TABLE PERSON_PREFERENCE + (PERSON_ID INTEGER NOT NULL REFERENCES PERSON(ID) ON DELETE CASCADE, + NAME VARCHAR(255) NOT NULL, + VALUE TEXT); + +CREATE INDEX PERSON_PREFERENCE_INDEX1 ON PERSON_PREFERENCE USING BTREE (PERSON_ID); + +CREATE TABLE PERSON_PASSWORD + (PERSON_ID INTEGER NOT NULL REFERENCES PERSON(ID) ON DELETE CASCADE, + PASSWORD VARCHAR(255) NOT NULL, + PASSWORD_DATE TIMESTAMP WITH TIME ZONE DEFAULT NULL); + +CREATE TABLE ALERT + (ID CHAR(36) NOT NULL PRIMARY KEY, + NAME VARCHAR(255) NOT NULL UNIQUE, + ALERT TEXT NOT NULL); + +CREATE TABLE CODE_TEMPLATE_LIBRARY + (ID VARCHAR(255) NOT NULL PRIMARY KEY, + NAME VARCHAR(255) NOT NULL UNIQUE, + REVISION INTEGER, + LIBRARY TEXT); + +CREATE TABLE CODE_TEMPLATE + (ID VARCHAR(255) NOT NULL PRIMARY KEY, + NAME VARCHAR(255) NOT NULL, + REVISION INTEGER, + CODE_TEMPLATE TEXT); + +CREATE SEQUENCE CONFIGURATION_SEQUENCE START WITH 1; + +CREATE TABLE CONFIGURATION + (CATEGORY VARCHAR(255) NOT NULL, + NAME VARCHAR(255) NOT NULL, + VALUE TEXT, + PRIMARY KEY(CATEGORY, NAME)); + +CREATE TABLE CHANNEL_GROUP + (ID VARCHAR(255) NOT NULL PRIMARY KEY, + NAME VARCHAR(255) NOT NULL UNIQUE, + REVISION INTEGER, + CHANNEL_GROUP TEXT); + +CREATE SEQUENCE DEBUG_USAGE_SEQUENCE START WITH 1; + +CREATE TABLE DEBUGGER_USAGE + (ID INTEGER DEFAULT nextval('DEBUG_USAGE_SEQUENCE') NOT NULL PRIMARY KEY, + SERVER_ID CHARACTER VARYING(50) NOT NULL, + DUPP_COUNT INTEGER, + ATTACH_BATCH_COUNT INTEGER, + SOURCE_CONNECTOR_COUNT INTEGER, + SOURCE_FILTER_TRANS_COUNT INTEGER, + DESTINATION_FILTER_TRANS_COUNT INTEGER, + DESTINATION_CONNECTOR_COUNT INTEGER, + RESPONSE_COUNT INTEGER, + INVOCATION_COUNT INTEGER); + +INSERT INTO PERSON (USERNAME, LOGGED_IN) VALUES('admin', FALSE); + +INSERT INTO PERSON_PASSWORD (PERSON_ID, PASSWORD) VALUES(1, 'b8cA3mDkavInMc2JBYa6/C3EGxDp7ppqh7FsoXx0x8+3LWK3Ed3ELg=='); + +INSERT INTO SCHEMA_INFO (VERSION) VALUES ('4.5.1'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'stats.enabled', '1'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'server.resetglobalvariables', '1'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.timeout', '5000'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.auth', '0'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'smtp.secure', '0'); + +INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'server.queuebuffersize', '1000'); diff --git a/server/dbconf/sqlserver/sqlserver-database.sql b/server/dbconf/sqlserver/sqlserver-database.sql index 3794ab84d..b0705199e 100644 --- a/server/dbconf/sqlserver/sqlserver-database.sql +++ b/server/dbconf/sqlserver/sqlserver-database.sql @@ -116,7 +116,7 @@ INSERT INTO PERSON (USERNAME, LOGGED_IN, USERCONSENT) VALUES('admin', 0, 0); INSERT INTO PERSON_PASSWORD (PERSON_ID, PASSWORD) VALUES(1, 'b8cA3mDkavInMc2JBYa6/C3EGxDp7ppqh7FsoXx0x8+3LWK3Ed3ELg=='); -INSERT INTO SCHEMA_INFO (VERSION) VALUES ('4.5.0'); +INSERT INTO SCHEMA_INFO (VERSION) VALUES ('4.5.1'); INSERT INTO CONFIGURATION (CATEGORY, NAME, VALUE) VALUES ('core', 'stats.enabled', '1'); diff --git a/server/mirth-build.properties b/server/mirth-build.properties index 2b8bebcb0..8aae7b218 100644 --- a/server/mirth-build.properties +++ b/server/mirth-build.properties @@ -4,4 +4,4 @@ client=../client webadmin=../webadmin manager=../manager cli=../command -version=4.5.0 +version=4.5.1 diff --git a/server/src/com/mirth/connect/client/core/Version.java b/server/src/com/mirth/connect/client/core/Version.java index ff8718b74..6b6f18465 100644 --- a/server/src/com/mirth/connect/client/core/Version.java +++ b/server/src/com/mirth/connect/client/core/Version.java @@ -73,7 +73,8 @@ public enum Version { v4_4_0("4.4.0"), v4_4_1("4.4.1"), v4_4_2("4.4.2"), - v4_5_0("4.5.0"); + v4_5_0("4.5.0"), + v4_5_1("4.5.1"); // @formatter:on diff --git a/server/src/com/mirth/connect/connectors/dimse/destination.xml b/server/src/com/mirth/connect/connectors/dimse/destination.xml index 5b2c0dae9..46fde8136 100644 --- a/server/src/com/mirth/connect/connectors/dimse/destination.xml +++ b/server/src/com/mirth/connect/connectors/dimse/destination.xml @@ -2,7 +2,7 @@ DICOM Sender NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to send messages using DICOM protocol. com.mirth.connect.connectors.dimse.DICOMSender diff --git a/server/src/com/mirth/connect/connectors/dimse/source.xml b/server/src/com/mirth/connect/connectors/dimse/source.xml index 9dd143882..53540c0cc 100644 --- a/server/src/com/mirth/connect/connectors/dimse/source.xml +++ b/server/src/com/mirth/connect/connectors/dimse/source.xml @@ -2,7 +2,7 @@ DICOM Listener NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to listen for incoming messages over a standard TCP connection. com.mirth.connect.connectors.dimse.DICOMListener diff --git a/server/src/com/mirth/connect/connectors/doc/destination.xml b/server/src/com/mirth/connect/connectors/doc/destination.xml index e4197444e..04a006f0f 100644 --- a/server/src/com/mirth/connect/connectors/doc/destination.xml +++ b/server/src/com/mirth/connect/connectors/doc/destination.xml @@ -2,7 +2,7 @@ Document Writer NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to create RTF or PDF documents based on an HTML template. PDF files can be password protected. com.mirth.connect.connectors.doc.DocumentWriter diff --git a/server/src/com/mirth/connect/connectors/file/destination.xml b/server/src/com/mirth/connect/connectors/file/destination.xml index 24809395c..e511cf40b 100644 --- a/server/src/com/mirth/connect/connectors/file/destination.xml +++ b/server/src/com/mirth/connect/connectors/file/destination.xml @@ -2,7 +2,7 @@ File Writer NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to write files to a local or network file system. A velocity template is available to dynamically generate files. com.mirth.connect.connectors.file.FileWriter diff --git a/server/src/com/mirth/connect/connectors/file/source.xml b/server/src/com/mirth/connect/connectors/file/source.xml index 2a96dd9ec..d92dd2adc 100644 --- a/server/src/com/mirth/connect/connectors/file/source.xml +++ b/server/src/com/mirth/connect/connectors/file/source.xml @@ -2,7 +2,7 @@ File Reader NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to poll for files from a local or network file system. com.mirth.connect.connectors.file.FileReader diff --git a/server/src/com/mirth/connect/connectors/http/destination.xml b/server/src/com/mirth/connect/connectors/http/destination.xml index 8fc34479d..0e725661b 100644 --- a/server/src/com/mirth/connect/connectors/http/destination.xml +++ b/server/src/com/mirth/connect/connectors/http/destination.xml @@ -2,7 +2,7 @@ HTTP Sender NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to send messages to an HTTP server. Custom header properties can be specified. com.mirth.connect.connectors.http.HttpSender diff --git a/server/src/com/mirth/connect/connectors/http/source.xml b/server/src/com/mirth/connect/connectors/http/source.xml index 77197ad80..40c9a4155 100644 --- a/server/src/com/mirth/connect/connectors/http/source.xml +++ b/server/src/com/mirth/connect/connectors/http/source.xml @@ -2,7 +2,7 @@ HTTP Listener NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to listen for incoming HTTP data. Messages are received as XML and include the full header contents. com.mirth.connect.connectors.http.HttpListener diff --git a/server/src/com/mirth/connect/connectors/jdbc/destination.xml b/server/src/com/mirth/connect/connectors/jdbc/destination.xml index 5dcdd9e16..c0077a51b 100644 --- a/server/src/com/mirth/connect/connectors/jdbc/destination.xml +++ b/server/src/com/mirth/connect/connectors/jdbc/destination.xml @@ -2,7 +2,7 @@ Database Writer NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to write to any JDBC-compatabile database with Insert, Update or JavaScript statements. com.mirth.connect.connectors.jdbc.DatabaseWriter diff --git a/server/src/com/mirth/connect/connectors/jdbc/source.xml b/server/src/com/mirth/connect/connectors/jdbc/source.xml index b2c2c9243..6d812b91f 100644 --- a/server/src/com/mirth/connect/connectors/jdbc/source.xml +++ b/server/src/com/mirth/connect/connectors/jdbc/source.xml @@ -2,7 +2,7 @@ Database Reader NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to poll any supported JDBC-compatabile database for data. Rows are returned as XML and JavaScript can be used for advanced logic. com.mirth.connect.connectors.jdbc.DatabaseReader diff --git a/server/src/com/mirth/connect/connectors/jms/destination.xml b/server/src/com/mirth/connect/connectors/jms/destination.xml index 5af2f641c..731b31240 100644 --- a/server/src/com/mirth/connect/connectors/jms/destination.xml +++ b/server/src/com/mirth/connect/connectors/jms/destination.xml @@ -2,7 +2,7 @@ JMS Sender NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to write messages to a JMS queue. com.mirth.connect.connectors.jms.JmsSender diff --git a/server/src/com/mirth/connect/connectors/jms/source.xml b/server/src/com/mirth/connect/connectors/jms/source.xml index 445d96618..c1ff86e12 100644 --- a/server/src/com/mirth/connect/connectors/jms/source.xml +++ b/server/src/com/mirth/connect/connectors/jms/source.xml @@ -2,7 +2,7 @@ JMS Listener NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to read messages from a JMS queue. com.mirth.connect.connectors.jms.JmsListener diff --git a/server/src/com/mirth/connect/connectors/js/destination.xml b/server/src/com/mirth/connect/connectors/js/destination.xml index a9825eb86..c0dc4f7ff 100644 --- a/server/src/com/mirth/connect/connectors/js/destination.xml +++ b/server/src/com/mirth/connect/connectors/js/destination.xml @@ -2,7 +2,7 @@ JavaScript Writer NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to execute JavaScript to connect to an arbitrary destination. com.mirth.connect.connectors.js.JavaScriptWriter diff --git a/server/src/com/mirth/connect/connectors/js/source.xml b/server/src/com/mirth/connect/connectors/js/source.xml index be950f28a..136d1d00c 100644 --- a/server/src/com/mirth/connect/connectors/js/source.xml +++ b/server/src/com/mirth/connect/connectors/js/source.xml @@ -2,7 +2,7 @@ JavaScript Reader NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to execute arbitrary JavaScript to pull in messages to a channel. com.mirth.connect.connectors.js.JavaScriptReader diff --git a/server/src/com/mirth/connect/connectors/smtp/destination.xml b/server/src/com/mirth/connect/connectors/smtp/destination.xml index 425d4eea0..345e56731 100644 --- a/server/src/com/mirth/connect/connectors/smtp/destination.xml +++ b/server/src/com/mirth/connect/connectors/smtp/destination.xml @@ -2,7 +2,7 @@ SMTP Sender NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to send email messages via SMTP. A template is available to dynamically create messages. com.mirth.connect.connectors.smtp.SmtpSender diff --git a/server/src/com/mirth/connect/connectors/tcp/destination.xml b/server/src/com/mirth/connect/connectors/tcp/destination.xml index ee1e63665..bd8ef8dd0 100644 --- a/server/src/com/mirth/connect/connectors/tcp/destination.xml +++ b/server/src/com/mirth/connect/connectors/tcp/destination.xml @@ -2,7 +2,7 @@ TCP Sender NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to send messages to a TCP server. com.mirth.connect.connectors.tcp.TcpSender diff --git a/server/src/com/mirth/connect/connectors/tcp/plugin.xml b/server/src/com/mirth/connect/connectors/tcp/plugin.xml index 6c431137a..86d098a6b 100644 --- a/server/src/com/mirth/connect/connectors/tcp/plugin.xml +++ b/server/src/com/mirth/connect/connectors/tcp/plugin.xml @@ -2,7 +2,7 @@ TCP Connector Service Plugin NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin is required for correct use of the TCP connectors. diff --git a/server/src/com/mirth/connect/connectors/tcp/source.xml b/server/src/com/mirth/connect/connectors/tcp/source.xml index 6e6935cf0..4a6686196 100644 --- a/server/src/com/mirth/connect/connectors/tcp/source.xml +++ b/server/src/com/mirth/connect/connectors/tcp/source.xml @@ -2,7 +2,7 @@ TCP Listener NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to listen for incoming messages over a standard TCP connection. com.mirth.connect.connectors.tcp.TcpListener diff --git a/server/src/com/mirth/connect/connectors/vm/destination.xml b/server/src/com/mirth/connect/connectors/vm/destination.xml index e17ef9f17..190d442f4 100644 --- a/server/src/com/mirth/connect/connectors/vm/destination.xml +++ b/server/src/com/mirth/connect/connectors/vm/destination.xml @@ -2,7 +2,7 @@ Channel Writer NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to send events to other channels in the same Mirth Connect instance. com.mirth.connect.connectors.vm.ChannelWriter diff --git a/server/src/com/mirth/connect/connectors/vm/source.xml b/server/src/com/mirth/connect/connectors/vm/source.xml index b8f41ecaa..7a590a3df 100644 --- a/server/src/com/mirth/connect/connectors/vm/source.xml +++ b/server/src/com/mirth/connect/connectors/vm/source.xml @@ -2,7 +2,7 @@ Channel Reader NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to listen for incoming events from other channels in the same Mirth Connect instance. com.mirth.connect.connectors.vm.ChannelReader diff --git a/server/src/com/mirth/connect/connectors/ws/destination.xml b/server/src/com/mirth/connect/connectors/ws/destination.xml index 7ce964a9a..fe17c20b8 100644 --- a/server/src/com/mirth/connect/connectors/ws/destination.xml +++ b/server/src/com/mirth/connect/connectors/ws/destination.xml @@ -2,7 +2,7 @@ Web Service Sender NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to invoke remote Web Services over HTTP. com.mirth.connect.connectors.ws.WebServiceSender diff --git a/server/src/com/mirth/connect/connectors/ws/source.xml b/server/src/com/mirth/connect/connectors/ws/source.xml index 6007a7d00..b46c019cc 100644 --- a/server/src/com/mirth/connect/connectors/ws/source.xml +++ b/server/src/com/mirth/connect/connectors/ws/source.xml @@ -2,7 +2,7 @@ Web Service Listener NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This connector allows Mirth Connect to listen on an HTTP port for incoming Web Service calls. This connector also provides a WSDL for SOAP clients to use. com.mirth.connect.connectors.ws.WebServiceListener diff --git a/server/src/com/mirth/connect/plugins/dashboardstatus/plugin.xml b/server/src/com/mirth/connect/plugins/dashboardstatus/plugin.xml index a08379f78..b6371c2e7 100644 --- a/server/src/com/mirth/connect/plugins/dashboardstatus/plugin.xml +++ b/server/src/com/mirth/connect/plugins/dashboardstatus/plugin.xml @@ -2,7 +2,7 @@ Dashboard Connector Status Monitor NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides a real-time connection status column on the Mirth Connect client diff --git a/server/src/com/mirth/connect/plugins/datapruner/plugin.xml b/server/src/com/mirth/connect/plugins/datapruner/plugin.xml index 84b0b1c40..d6a873d5d 100644 --- a/server/src/com/mirth/connect/plugins/datapruner/plugin.xml +++ b/server/src/com/mirth/connect/plugins/datapruner/plugin.xml @@ -2,7 +2,7 @@ Data Pruner NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides data pruning capability for Mirth Connect diff --git a/server/src/com/mirth/connect/plugins/datatypes/delimited/plugin.xml b/server/src/com/mirth/connect/plugins/datatypes/delimited/plugin.xml index d43ac3997..8659b3a32 100644 --- a/server/src/com/mirth/connect/plugins/datatypes/delimited/plugin.xml +++ b/server/src/com/mirth/connect/plugins/datatypes/delimited/plugin.xml @@ -2,7 +2,7 @@ Delimited Data Type NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides support for the delimited data type diff --git a/server/src/com/mirth/connect/plugins/datatypes/dicom/plugin.xml b/server/src/com/mirth/connect/plugins/datatypes/dicom/plugin.xml index 84f817804..5780b17e3 100644 --- a/server/src/com/mirth/connect/plugins/datatypes/dicom/plugin.xml +++ b/server/src/com/mirth/connect/plugins/datatypes/dicom/plugin.xml @@ -2,7 +2,7 @@ DICOM Data Type NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides support for the DICOM data type diff --git a/server/src/com/mirth/connect/plugins/datatypes/edi/plugin.xml b/server/src/com/mirth/connect/plugins/datatypes/edi/plugin.xml index 00f33d136..0a2b43933 100644 --- a/server/src/com/mirth/connect/plugins/datatypes/edi/plugin.xml +++ b/server/src/com/mirth/connect/plugins/datatypes/edi/plugin.xml @@ -2,7 +2,7 @@ EDI Data Type NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides support for the EDI data type diff --git a/server/src/com/mirth/connect/plugins/datatypes/hl7v2/plugin.xml b/server/src/com/mirth/connect/plugins/datatypes/hl7v2/plugin.xml index bc3f9ad21..ee11a32ca 100644 --- a/server/src/com/mirth/connect/plugins/datatypes/hl7v2/plugin.xml +++ b/server/src/com/mirth/connect/plugins/datatypes/hl7v2/plugin.xml @@ -2,7 +2,7 @@ HL7v2 Data Type NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides support for the HL7v2 data type diff --git a/server/src/com/mirth/connect/plugins/datatypes/hl7v3/plugin.xml b/server/src/com/mirth/connect/plugins/datatypes/hl7v3/plugin.xml index cbaaf1cf3..dc05e7885 100644 --- a/server/src/com/mirth/connect/plugins/datatypes/hl7v3/plugin.xml +++ b/server/src/com/mirth/connect/plugins/datatypes/hl7v3/plugin.xml @@ -2,7 +2,7 @@ HL7v3 Data Type NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides support for the HL7v3 data type diff --git a/server/src/com/mirth/connect/plugins/datatypes/json/plugin.xml b/server/src/com/mirth/connect/plugins/datatypes/json/plugin.xml index 7c567f0e0..0cddb0d67 100644 --- a/server/src/com/mirth/connect/plugins/datatypes/json/plugin.xml +++ b/server/src/com/mirth/connect/plugins/datatypes/json/plugin.xml @@ -2,7 +2,7 @@ JSON Data Type NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides support for the JSON data type diff --git a/server/src/com/mirth/connect/plugins/datatypes/ncpdp/plugin.xml b/server/src/com/mirth/connect/plugins/datatypes/ncpdp/plugin.xml index 99dcb6e05..e5944ffab 100644 --- a/server/src/com/mirth/connect/plugins/datatypes/ncpdp/plugin.xml +++ b/server/src/com/mirth/connect/plugins/datatypes/ncpdp/plugin.xml @@ -2,7 +2,7 @@ NCPDP Data Type NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides support for the NCPDP data type diff --git a/server/src/com/mirth/connect/plugins/datatypes/raw/plugin.xml b/server/src/com/mirth/connect/plugins/datatypes/raw/plugin.xml index 5e08ed8bb..523e43e03 100644 --- a/server/src/com/mirth/connect/plugins/datatypes/raw/plugin.xml +++ b/server/src/com/mirth/connect/plugins/datatypes/raw/plugin.xml @@ -2,7 +2,7 @@ Raw Data Type NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides support for the raw data type diff --git a/server/src/com/mirth/connect/plugins/datatypes/xml/plugin.xml b/server/src/com/mirth/connect/plugins/datatypes/xml/plugin.xml index 26b5f24ed..d2c334910 100644 --- a/server/src/com/mirth/connect/plugins/datatypes/xml/plugin.xml +++ b/server/src/com/mirth/connect/plugins/datatypes/xml/plugin.xml @@ -2,7 +2,7 @@ XML Data Type NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides support for the XML data type diff --git a/server/src/com/mirth/connect/plugins/destinationsetfilter/plugin.xml b/server/src/com/mirth/connect/plugins/destinationsetfilter/plugin.xml index 3352aef31..bddcc9631 100644 --- a/server/src/com/mirth/connect/plugins/destinationsetfilter/plugin.xml +++ b/server/src/com/mirth/connect/plugins/destinationsetfilter/plugin.xml @@ -2,7 +2,7 @@ Destination Set Filter Step NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com Provides an easy method in the source transformer to filter destinations from being executed. diff --git a/server/src/com/mirth/connect/plugins/dicomviewer/plugin.xml b/server/src/com/mirth/connect/plugins/dicomviewer/plugin.xml index 5195ad46c..61ee316f9 100644 --- a/server/src/com/mirth/connect/plugins/dicomviewer/plugin.xml +++ b/server/src/com/mirth/connect/plugins/dicomviewer/plugin.xml @@ -2,7 +2,7 @@ DICOM Viewer NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides DICOM attachment viewing capability in message browser diff --git a/server/src/com/mirth/connect/plugins/directoryresource/plugin.xml b/server/src/com/mirth/connect/plugins/directoryresource/plugin.xml index d31a6a0ed..66de09c26 100644 --- a/server/src/com/mirth/connect/plugins/directoryresource/plugin.xml +++ b/server/src/com/mirth/connect/plugins/directoryresource/plugin.xml @@ -2,7 +2,7 @@ Directory Resource Plugin NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin allows a directory to be used as a source for libraries to include in channels. diff --git a/server/src/com/mirth/connect/plugins/globalmapviewer/plugin.xml b/server/src/com/mirth/connect/plugins/globalmapviewer/plugin.xml index af0bf74ef..97bc429cd 100644 --- a/server/src/com/mirth/connect/plugins/globalmapviewer/plugin.xml +++ b/server/src/com/mirth/connect/plugins/globalmapviewer/plugin.xml @@ -2,7 +2,7 @@ Global Map Viewer NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin allows you to view the global map and global channel maps in the Mirth Connect Administrator. diff --git a/server/src/com/mirth/connect/plugins/httpauth/plugin.xml b/server/src/com/mirth/connect/plugins/httpauth/plugin.xml index 7d8c3c877..e5409755d 100644 --- a/server/src/com/mirth/connect/plugins/httpauth/plugin.xml +++ b/server/src/com/mirth/connect/plugins/httpauth/plugin.xml @@ -2,7 +2,7 @@ HTTP Authentication Settings NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides advanced authentication support for HTTP-based source connectors. diff --git a/server/src/com/mirth/connect/plugins/imageviewer/plugin.xml b/server/src/com/mirth/connect/plugins/imageviewer/plugin.xml index 847229870..4d2a24606 100644 --- a/server/src/com/mirth/connect/plugins/imageviewer/plugin.xml +++ b/server/src/com/mirth/connect/plugins/imageviewer/plugin.xml @@ -2,7 +2,7 @@ Image Viewer NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides image attachment viewing capability in message browser. diff --git a/server/src/com/mirth/connect/plugins/javascriptrule/plugin.xml b/server/src/com/mirth/connect/plugins/javascriptrule/plugin.xml index 8a480da24..e2a86ab8a 100644 --- a/server/src/com/mirth/connect/plugins/javascriptrule/plugin.xml +++ b/server/src/com/mirth/connect/plugins/javascriptrule/plugin.xml @@ -2,7 +2,7 @@ JavaScript Filter Rule NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides a JavaScript rule-type for Mirth Connect filters diff --git a/server/src/com/mirth/connect/plugins/javascriptstep/plugin.xml b/server/src/com/mirth/connect/plugins/javascriptstep/plugin.xml index bcbb86338..22769e44d 100644 --- a/server/src/com/mirth/connect/plugins/javascriptstep/plugin.xml +++ b/server/src/com/mirth/connect/plugins/javascriptstep/plugin.xml @@ -2,7 +2,7 @@ JavaScript Transformer Step NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides a JavaScript step-type for Mirth Connect transformers diff --git a/server/src/com/mirth/connect/plugins/mapper/plugin.xml b/server/src/com/mirth/connect/plugins/mapper/plugin.xml index b2021ae2a..f422a9044 100644 --- a/server/src/com/mirth/connect/plugins/mapper/plugin.xml +++ b/server/src/com/mirth/connect/plugins/mapper/plugin.xml @@ -2,7 +2,7 @@ Mapper Transformer Step NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides a Mapping step type for Mirth Connect transformers diff --git a/server/src/com/mirth/connect/plugins/messagebuilder/plugin.xml b/server/src/com/mirth/connect/plugins/messagebuilder/plugin.xml index 241e68ec4..a0dd7de19 100644 --- a/server/src/com/mirth/connect/plugins/messagebuilder/plugin.xml +++ b/server/src/com/mirth/connect/plugins/messagebuilder/plugin.xml @@ -2,7 +2,7 @@ Message Builder Transformer Step NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides a Message Builder step-type for Mirth Connect transformers diff --git a/server/src/com/mirth/connect/plugins/mllpmode/plugin.xml b/server/src/com/mirth/connect/plugins/mllpmode/plugin.xml index 6c2a9ed71..74072b846 100755 --- a/server/src/com/mirth/connect/plugins/mllpmode/plugin.xml +++ b/server/src/com/mirth/connect/plugins/mllpmode/plugin.xml @@ -2,7 +2,7 @@ Transmission Mode - MLLP NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides an MLLP transmission mode for socket/serial connectors. diff --git a/server/src/com/mirth/connect/plugins/pdfviewer/plugin.xml b/server/src/com/mirth/connect/plugins/pdfviewer/plugin.xml index a5ade462b..cd6372c52 100644 --- a/server/src/com/mirth/connect/plugins/pdfviewer/plugin.xml +++ b/server/src/com/mirth/connect/plugins/pdfviewer/plugin.xml @@ -2,7 +2,7 @@ PDF Viewer NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides PDF attachment viewing capability in message browser. diff --git a/server/src/com/mirth/connect/plugins/rulebuilder/plugin.xml b/server/src/com/mirth/connect/plugins/rulebuilder/plugin.xml index 9ad5fd41e..55aabf3c3 100644 --- a/server/src/com/mirth/connect/plugins/rulebuilder/plugin.xml +++ b/server/src/com/mirth/connect/plugins/rulebuilder/plugin.xml @@ -2,7 +2,7 @@ Rule Builder Filter Rule NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides a Rule Builder type for Mirth Connect filters diff --git a/server/src/com/mirth/connect/plugins/scriptfilerule/plugin.xml b/server/src/com/mirth/connect/plugins/scriptfilerule/plugin.xml index ed520ad75..c5c9882c1 100644 --- a/server/src/com/mirth/connect/plugins/scriptfilerule/plugin.xml +++ b/server/src/com/mirth/connect/plugins/scriptfilerule/plugin.xml @@ -2,7 +2,7 @@ External Script Filter Step NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides an External Script step-type for Mirth Connect filters diff --git a/server/src/com/mirth/connect/plugins/scriptfilestep/plugin.xml b/server/src/com/mirth/connect/plugins/scriptfilestep/plugin.xml index b00872714..03af8123a 100644 --- a/server/src/com/mirth/connect/plugins/scriptfilestep/plugin.xml +++ b/server/src/com/mirth/connect/plugins/scriptfilestep/plugin.xml @@ -2,7 +2,7 @@ External Script Transformer Step NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides an External Script step-type for Mirth Connect transformers diff --git a/server/src/com/mirth/connect/plugins/serverlog/plugin.xml b/server/src/com/mirth/connect/plugins/serverlog/plugin.xml index bbd7704cc..45bec6c65 100644 --- a/server/src/com/mirth/connect/plugins/serverlog/plugin.xml +++ b/server/src/com/mirth/connect/plugins/serverlog/plugin.xml @@ -2,7 +2,7 @@ Server Log NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin allows you to view the server log on the Mirth Connect administrator. diff --git a/server/src/com/mirth/connect/plugins/textviewer/plugin.xml b/server/src/com/mirth/connect/plugins/textviewer/plugin.xml index b9abf87e9..2388550e8 100644 --- a/server/src/com/mirth/connect/plugins/textviewer/plugin.xml +++ b/server/src/com/mirth/connect/plugins/textviewer/plugin.xml @@ -2,7 +2,7 @@ Text Viewer NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides text and RTF attachment viewing capability in message browser. diff --git a/server/src/com/mirth/connect/plugins/xsltstep/plugin.xml b/server/src/com/mirth/connect/plugins/xsltstep/plugin.xml index 5069b8478..b83d783a9 100644 --- a/server/src/com/mirth/connect/plugins/xsltstep/plugin.xml +++ b/server/src/com/mirth/connect/plugins/xsltstep/plugin.xml @@ -2,7 +2,7 @@ XSLT Transformer Step NextGen Healthcare @mirthversion - 4.5.0 + 4.5.1 http://www.nextgen.com This plugin provides a XSLT support step-type for Mirth Connect transformers diff --git a/server/src/com/mirth/connect/server/migration/ServerMigrator.java b/server/src/com/mirth/connect/server/migration/ServerMigrator.java index 0b3746c2c..860129b00 100644 --- a/server/src/com/mirth/connect/server/migration/ServerMigrator.java +++ b/server/src/com/mirth/connect/server/migration/ServerMigrator.java @@ -232,6 +232,7 @@ private Migrator getMigrator(Version version) { case v4_4_0: return new Migrate4_4_0(); case v4_4_1: return null; case v4_5_0: return null; + case v4_5_1: return null; } // @formatter:on return null; diff --git a/server/test/com/mirth/connect/server/servlets/WebStartServletTest.java b/server/test/com/mirth/connect/server/servlets/WebStartServletTest.java index 757aa9042..234da5723 100644 --- a/server/test/com/mirth/connect/server/servlets/WebStartServletTest.java +++ b/server/test/com/mirth/connect/server/servlets/WebStartServletTest.java @@ -536,8 +536,8 @@ private static DocumentBuilderFactory getSecureDocumentBuilderFactory() throws E return dbf; } - private static String CORE_JNLP = "\n" - + " \n" + " Mirth Connect Administrator 4.5.0\n" + private static String CORE_JNLP = "\n" + + " \n" + " Mirth Connect Administrator 4.5.1\n" + " NextGen Healthcare\n" + " \n" + " Open Source Healthcare Integration Engine\n" + " \n" + " \n" @@ -554,7 +554,7 @@ private static DocumentBuilderFactory getSecureDocumentBuilderFactory() throws E + " \n" + " \n" + " \n" + " \n" + " \n" - + " https://localhost:8443\n" + " 4.5.0\n" + + " https://localhost:8443\n" + " 4.5.1\n" + " \n" + ""; private static String EXTENSION_JNLP = "\n" + " \n"