From 02ba4123c9b12da372a133e8938d48ea8f41ab7c Mon Sep 17 00:00:00 2001 From: githubmamatha <106563495+githubmamatha@users.noreply.github.com> Date: Tue, 26 Mar 2024 13:50:17 -0700 Subject: [PATCH 1/6] Update pom.xml --- api/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/pom.xml b/api/pom.xml index f880606..b1b116a 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -6,7 +6,7 @@ ca.bc.gov.educ educ-grad-student-graduation-api - 1.8.43 + 1.8.44 educ-grad-student-graduation-api Ministry of Education GRAD STUDENT GRADUATION API From 4df2d9b5b2d18a6d3a94ee4a046c2851d5314a42 Mon Sep 17 00:00:00 2001 From: githubmamatha <106563495+githubmamatha@users.noreply.github.com> Date: Tue, 26 Mar 2024 14:33:36 -0700 Subject: [PATCH 2/6] Update pom.xml --- api/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/pom.xml b/api/pom.xml index b1b116a..f880606 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -6,7 +6,7 @@ ca.bc.gov.educ educ-grad-student-graduation-api - 1.8.44 + 1.8.43 educ-grad-student-graduation-api Ministry of Education GRAD STUDENT GRADUATION API From 2c3209781aecc54b4fde9e44c9a24f2652cc1f70 Mon Sep 17 00:00:00 2001 From: githubmamatha Date: Mon, 29 Apr 2024 08:55:03 -0700 Subject: [PATCH 3/6] Grad2-2604 Made the required changes. --- .../1.0/V1.0.86__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 api/src/main/resources/db/migration/1.0/V1.0.86__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql diff --git a/api/src/main/resources/db/migration/1.0/V1.0.86__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql b/api/src/main/resources/db/migration/1.0/V1.0.86__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql new file mode 100644 index 0000000..8d054b4 --- /dev/null +++ b/api/src/main/resources/db/migration/1.0/V1.0.86__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql @@ -0,0 +1,2 @@ +UPDATE TRANSCRIPT_MESSAGE SET GRAD_PROJECTED_MESSAGE='Based on the information provided by the school, this student cannot satisfy the requirements for the Graduation Program %s. Note: Students are no longer eligible to graduate on the 2018 graduation program unless required courses were completed by June 30, 2024. Contact your school counselor for more information.' WHERE GRADUATION_PROGRAM_CODE IN('2018-EN', '2018-PF') AND MESSAGE_TYPE_CODE = 'NOT_GRADUATED'; +UPDATE TRANSCRIPT_MESSAGE SET GRAD_MAIN_MESSAGE = 'Based on the information provided by the school, this student has not yet graduated in the Graduation Program %s. Note: Students are no longer eligible to graduate on the 2018 graduation program unless required courses were completed by June 30, 2024. Contact your school counselor for more information.' WHERE GRADUATION_PROGRAM_CODE IN('2018-EN', '2018-PF') AND MESSAGE_TYPE_CODE = 'NOT_GRADUATED'; From 78be35e8efe37438ab22f53128131ba92af3de28 Mon Sep 17 00:00:00 2001 From: githubmamatha Date: Wed, 1 May 2024 10:49:23 -0700 Subject: [PATCH 4/6] Grad2-2604 grad main message correction for both grad progs --- .../1.0/V1.0.86__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/main/resources/db/migration/1.0/V1.0.86__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql b/api/src/main/resources/db/migration/1.0/V1.0.86__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql index 8d054b4..30a0241 100644 --- a/api/src/main/resources/db/migration/1.0/V1.0.86__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql +++ b/api/src/main/resources/db/migration/1.0/V1.0.86__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql @@ -1,2 +1,2 @@ UPDATE TRANSCRIPT_MESSAGE SET GRAD_PROJECTED_MESSAGE='Based on the information provided by the school, this student cannot satisfy the requirements for the Graduation Program %s. Note: Students are no longer eligible to graduate on the 2018 graduation program unless required courses were completed by June 30, 2024. Contact your school counselor for more information.' WHERE GRADUATION_PROGRAM_CODE IN('2018-EN', '2018-PF') AND MESSAGE_TYPE_CODE = 'NOT_GRADUATED'; -UPDATE TRANSCRIPT_MESSAGE SET GRAD_MAIN_MESSAGE = 'Based on the information provided by the school, this student has not yet graduated in the Graduation Program %s. Note: Students are no longer eligible to graduate on the 2018 graduation program unless required courses were completed by June 30, 2024. Contact your school counselor for more information.' WHERE GRADUATION_PROGRAM_CODE IN('2018-EN', '2018-PF') AND MESSAGE_TYPE_CODE = 'NOT_GRADUATED'; +UPDATE TRANSCRIPT_MESSAGE SET GRAD_MAIN_MESSAGE = 'Based on the information provided by the school, this student has not yet graduated in the %s. Note: Students are no longer eligible to graduate on the 2018 graduation program unless required courses were completed by June 30, 2024. Contact your school counselor for more information.' WHERE GRADUATION_PROGRAM_CODE IN('2018-EN', '2018-PF') AND MESSAGE_TYPE_CODE = 'NOT_GRADUATED'; From da2c3d8ed228b8edbec9067354c4eecf7258f014 Mon Sep 17 00:00:00 2001 From: githubmamatha Date: Thu, 2 May 2024 12:30:16 -0700 Subject: [PATCH 5/6] Grad2-2604 grad main message correction for both grad progs with new flyway version --- .../1.0/V1.0.87__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 api/src/main/resources/db/migration/1.0/V1.0.87__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql diff --git a/api/src/main/resources/db/migration/1.0/V1.0.87__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql b/api/src/main/resources/db/migration/1.0/V1.0.87__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql new file mode 100644 index 0000000..78b8aad --- /dev/null +++ b/api/src/main/resources/db/migration/1.0/V1.0.87__DML-UPDATE_DATA-TRANSCRIPT_MESSAGE.sql @@ -0,0 +1 @@ +UPDATE TRANSCRIPT_MESSAGE SET GRAD_MAIN_MESSAGE = 'Based on the information provided by the school, this student has not yet graduated in the %s. Note: Students are no longer eligible to graduate on the 2018 graduation program unless required courses were completed by June 30, 2024. Contact your school counselor for more information.' WHERE GRADUATION_PROGRAM_CODE IN('2018-EN', '2018-PF') AND MESSAGE_TYPE_CODE = 'NOT_GRADUATED'; \ No newline at end of file From 3e94ff8df83b26fb3237c0f9409996c77a90072e Mon Sep 17 00:00:00 2001 From: githubmamatha <106563495+githubmamatha@users.noreply.github.com> Date: Thu, 23 May 2024 09:29:00 -0700 Subject: [PATCH 6/6] Update pom.xml --- api/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/pom.xml b/api/pom.xml index f880606..b1b116a 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -6,7 +6,7 @@ ca.bc.gov.educ educ-grad-student-graduation-api - 1.8.43 + 1.8.44 educ-grad-student-graduation-api Ministry of Education GRAD STUDENT GRADUATION API