Skip to content

Commit 1562d23

Browse files
eLinks : Data model changes to support eLinks V5.0 API specifications (#557)
* flyway scripts * [RDCC-6814] Suppress CVE to fix build failure * [RDCC-6814] Suppress CVE to fix build failure --------- Co-authored-by: manukundloo-hmcts <114229572+manukundloo-hmcts@users.noreply.github.com> Co-authored-by: manukundloo-hmcts <Manukundloo.sinha@hmcts.net>
1 parent 3631801 commit 1562d23

File tree

3 files changed

+34
-1
lines changed

3 files changed

+34
-1
lines changed

config/owasp/suppressions.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,16 @@
99
<suppress>
1010
<cve>CVE-2022-45688</cve>
1111
</suppress>
12-
12+
13+
<suppress>
14+
<notes>Temporary suppression for spring-boot-2.7.7.jar</notes>
15+
<cve>CVE-2023-20873</cve>
16+
</suppress>
17+
<suppress>
18+
<notes>Temporary suppression for CVE-2023-20862</notes>
19+
<cve>CVE-2023-20862</cve>
20+
</suppress>
21+
1322
<suppress>
1423
<notes><![CDATA[
1524
file name: launchdarkly-java-server-sdk-5.10.7.jar (shaded: org.yaml:snakeyaml:1.32)
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
--Alter dbjudicialdata.judicial_user_profile
2+
ALTER TABLE dbjudicialdata.judicial_user_profile ALTER COLUMN post_nominals type VARCHAR(256);
3+
ALTER TABLE dbjudicialdata.judicial_user_profile DROP COLUMN leaving_on;
4+
5+
6+
--Alter dbjudicialdata.judicial_office_appointment
7+
ALTER TABLE dbjudicialdata.judicial_office_appointment ADD UNIQUE (appointment_id);
8+
9+
10+
--Alter dbjudicialdata.judicial_office_authorisation
11+
ALTER TABLE dbjudicialdata.judicial_office_authorisation ADD CONSTRAINT appointment_id_fk2 FOREIGN KEY (appointment_id)
12+
REFERENCES dbjudicialdata.judicial_office_appointment(appointment_id);
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
--Alter dbjudicialdata.judicial_user_profile
2+
ALTER TABLE dbjudicialdata.judicial_user_profile ALTER COLUMN post_nominals type VARCHAR(256);
3+
ALTER TABLE dbjudicialdata.judicial_user_profile DROP COLUMN leaving_on;
4+
5+
6+
--Alter dbjudicialdata.judicial_office_appointment
7+
ALTER TABLE dbjudicialdata.judicial_office_appointment ADD UNIQUE (appointment_id);
8+
9+
10+
--Alter dbjudicialdata.judicial_office_authorisation
11+
ALTER TABLE dbjudicialdata.judicial_office_authorisation ADD CONSTRAINT appointment_id_fk2 FOREIGN KEY (appointment_id)
12+
REFERENCES dbjudicialdata.judicial_office_appointment(appointment_id);

0 commit comments

Comments
 (0)