Skip to content

Releases: JeffersonLab/adm

v2.3.1

Choose a tag to compare

@github-actions github-actions released this 16 Jun 20:54
  • Bump sshd to v2.18.0

Full Changelog: v2.3.0...v2.3.1

v2.3.0

Choose a tag to compare

@github-actions github-actions released this 16 Jun 20:24
  • Bump Containers

Full Changelog: v2.2.0...v2.3.0

v2.2.0

Choose a tag to compare

@github-actions github-actions released this 23 Mar 19:05

Full Changelog: v2.1.0...v2.2.0

v2.1.0

Choose a tag to compare

@github-actions github-actions released this 23 Mar 16:56

What's Changed

Full Changelog: v2.0.1...v2.1.0

v2.0.1

Choose a tag to compare

@github-actions github-actions released this 24 Sep 20:20
  • Fix Docker build

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

v2.0.0

Choose a tag to compare

@github-actions github-actions released this 24 Sep 18:58

What's Changed

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

v1.4.1

Choose a tag to compare

@github-actions github-actions released this 18 Aug 12:39
  • Include Settings tab

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

v1.4.0

Choose a tag to compare

@github-actions github-actions released this 14 Aug 21:48
  • Bump weblib to v4.13.0
  • Bump Gradle to v9

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

v1.3.0

Choose a tag to compare

@github-actions github-actions released this 19 Mar 20:35

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

Choose a tag to compare

@github-actions github-actions released this 17 Mar 17:09
  • mirrorlist.centos.org no longer exists

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