Skip to content

Releases: JeffersonLab/adm

v2.0.1

24 Sep 20:20

Choose a tag to compare

  • Fix Docker build

Full Changelog: v2.0.0...v2.0.1

v2.0.0

24 Sep 18:58

Choose a tag to compare

What's Changed

Full Changelog: v1.4.1...v2.0.0

v1.4.1

18 Aug 12:39

Choose a tag to compare

  • Include Settings tab

Full Changelog: v1.4.0...v1.4.1

v1.4.0

14 Aug 21:48

Choose a tag to compare

  • Bump weblib to v4.13.0
  • Bump Gradle to v9

Full Changelog: v1.3.0...v1.4.0

v1.3.0

19 Mar 20:35

Choose a tag to compare

What's Changed

Oracle DB Migration Notes

DROP SEQUENCE ADM_OWNER.ENV_ID;

CREATE SEQUENCE ADM_OWNER.APP_ENV_ID
    INCREMENT BY 1
    START WITH 1
    NOCYCLE
    NOCACHE
    ORDER;

CREATE SEQUENCE ADM_OWNER.DEPLOY_JOB_ID
    INCREMENT BY 1
    START WITH 1
    NOCYCLE
    NOCACHE
    ORDER;

alter table ADM_OWNER.APP_ENV rename column ENV_ID to APP_ENV_ID;

CREATE TABLE ADM_OWNER.DEPLOY_JOB
(
    DEPLOY_JOB_ID INTEGER NOT NULL,
    APP_ENV_ID    INTEGER NOT NULL ,
    VERSION       VARCHAR2(32 CHAR) NOT NULL ,
    EXIT_CODE     INTEGER NULL ,
    OUT           CLOB NULL ,
    ERR           CLOB NULL ,
    STACK_TRACE   CLOB NULL ,
    JOB_START     DATE NOT NULL , -- Does not handle DST as local time (oh well - it's complicated to do so in JPA)
    JOB_END       DATE NULL , -- Does not handle DST
    CONSTRAINT REMOTE_COMMAND_RESULT_PK PRIMARY KEY (DEPLOY_JOB_ID) ,
    CONSTRAINT ENV_FK1 FOREIGN KEY (APP_ENV_ID) REFERENCES ADM_OWNER.APP_ENV (APP_ENV_ID) ON DELETE CASCADE
);

Full Changelog: v1.2.1...v1.3.0

v1.2.1

17 Mar 17:09

Choose a tag to compare

  • mirrorlist.centos.org no longer exists

Full Changelog: v1.2.0...v1.2.1

v1.2.0

17 Mar 16:22

Choose a tag to compare

  • Bump smoothness weblib to v4.10.4
  • Use Google Java format

Full Changelog: v1.1.0...v1.2.0

v1.1.0

08 Apr 17:23

Choose a tag to compare

  • Use authorized service username instead of groupname

Full Changelog: v1.0.9...v1.1.0

v1.0.9

13 Mar 20:48

Choose a tag to compare

Full Changelog: v1.0.8...v1.0.9

v1.0.8

11 Mar 21:18

Choose a tag to compare

Full Changelog: v0.0.1...v1.0.8