Releases: JeffersonLab/jam
Releases · JeffersonLab/jam
v4.7.0
- Fixed Edit Components
- Don't show elog dialog if no elog
- Style tweaks
Full Changelog: v4.6.0...v4.7.0
v4.6.0
- Renamed Workgroup to Verification Team
- Facility computed status now filters only Active Operations
- Provisionally Verified Status removed from verify options (historic records remain)
- Verifications page now filterable by Verification Team
- Verification page now organized into collapsible panels
Oracle DB Migration Notes
rename workgroup to verification_team;
alter table verification_team rename column workgroup_id to verification_team_id;
alter table verification_team rename column leader_role_name to directory_role_name;
alter table credited_control rename column workgroup_id to verification_team_id;
Full Changelog: v4.5.0...v4.6.0
v4.5.0
- Updated Verifiers page
Full Changelog: v4.4.0...v4.5.0
v4.4.0
- Add support for editing RF Operations Verifications
- Show Expiration Date only if status is Verified or Provisionally Verified
- Show Active Destinations only in Inventory
- Fix Verification Dialog Comments population
- Show None when No Beam Destinations on Verifications tab
- Hide placeholder edit code on Inventory pages
Full Changelog: v4.3.0...v4.4.0
v4.3.0
What's Changed
- Initial support for Separate Facilities by @slominskir in #18
Oracle DB Migration Notes
See: #18 (comment)
Full Changelog: v4.2.0...v4.3.0
v4.2.0
What's Changed
- Constrain By SRM Component Readiness by @slominskir in #16
Oracle DB Migration Notes
As SYSTEM
grant select on srm_owner.component to jam_owner;
grant select on srm_owner.component_status_2 to jam_owner;
grant select on srm_owner.system_application to jam_owner;
AS JAM_OWNER
create or replace view jam_owner.component as
(
select component_id, name, status_id from srm_owner.component join srm_owner.component_status_2 using (component_id) where system_id in (select system_id from srm_owner.system_application where application_id = 1)
);
CREATE TABLE JAM_OWNER.VERIFICATION_COMPONENT
(
CONTROL_VERIFICATION_ID INTEGER NOT NULL ,
COMPONENT_ID INTEGER NOT NULL ,
CONSTRAINT VERIFICATION_COMPONENT_PK PRIMARY KEY (CONTROL_VERIFICATION_ID, COMPONENT_ID),
CONSTRAINT VERIFICATION_COMPONENT_FK1 FOREIGN KEY (CONTROL_VERIFICATION_ID) REFERENCES JAM_OWNER.CONTROL_VERIFICATION (CONTROL_VERIFICATION_ID) ON DELETE CASCADE
);
Full Changelog: v4.1.1...v4.2.0
v4.1.1
- Fix bug: keep current limit disabled for RF Only
- Fix bug: Report number format exceptions
Full Changelog: v4.1.0...v4.1.1
v4.1.0
v4.0.0
- Rename Beam Authorization Manager (BAM) to JLab Authorization Manager (JAM)
Full Changelog: v3.7.0...v4.0.0
v3.7.0
What's Changed
- Google Java format by @slominskir in #11
- Bump smoothness lib to v4.6.0
Full Changelog: v3.6.3...v3.7.0