From 880c77c8d57fc05eb20c3b876fc7d9855dcdab36 Mon Sep 17 00:00:00 2001 From: Conor Heffron Date: Thu, 9 Jan 2025 07:48:30 +0000 Subject: [PATCH 1/4] #297 Update SECURITY.md --- SECURITY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SECURITY.md b/SECURITY.md index c8d647d..0362bd6 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,7 +4,7 @@ | Version | Supported | |-----------| ------------------ | -| 5.x.x | :white_check_mark: | +| 6.x.x | :white_check_mark: | | <= 4.x.x | :x: | ## Reporting a Vulnerability From 778eeb487be2626205070b1f09e2f0009c4e5111 Mon Sep 17 00:00:00 2001 From: Conor Heffron Date: Sun, 12 Jan 2025 07:40:36 +0000 Subject: [PATCH 2/4] #300 ACII Art - Create App Banner (#301) * #300 ACII Art - Create App Banner * Update ironoc-db-banner.txt * Update application.properties --- src/main/resources/application.properties | 5 ++++- src/main/resources/static/ironoc-db-banner.txt | 8 ++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 src/main/resources/static/ironoc-db-banner.txt diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index d0bf0e2..2c52901 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -29,4 +29,7 @@ spring.datasource.initialization-mode=always # Thymeleaf spring.thymeleaf.prefix=classpath:/templates/ spring.thymeleaf.suffix=.html -spring.resources.add-mappings=true \ No newline at end of file +spring.resources.add-mappings=true + +# banner +spring.banner.location: classpath:/static/ironoc-banner.txt diff --git a/src/main/resources/static/ironoc-db-banner.txt b/src/main/resources/static/ironoc-db-banner.txt new file mode 100644 index 0000000..ca1b814 --- /dev/null +++ b/src/main/resources/static/ironoc-db-banner.txt @@ -0,0 +1,8 @@ +${AnsiColor.GREEN} +.__ __________ ________ __ ___. +|__|\______ \ ____ ____ ____ ____ \______ \ _____ _/ |_ _____ \_ |__ _____ ______ ____ +| | | _/ / _ \ / \ / _ \ _/ ___\ | | \ \__ \ \ __\\__ \ | __ \ \__ \ / ___/_/ __ \ +| | | | \( <_> )| | \( <_> )\ \___ | ` \ / __ \_ | | / __ \_ | \_\ \ / __ \_ \___ \ \ ___/ +|__| |____|_ / \____/ |___| / \____/ \___ > /_______ /(____ / |__| (____ / |___ /(____ //____ > \___ > + \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ +${AnsiColor.DEFAULT} From 73096782b6c9c51e4b5ad2067a8fbfea16b3d413 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 06:39:38 +0000 Subject: [PATCH 3/4] Bump com.google.cloud:google-cloud-secretmanager from 2.55.0 to 2.56.0 Bumps [com.google.cloud:google-cloud-secretmanager](https://github.com/googleapis/google-cloud-java) from 2.55.0 to 2.56.0. - [Release notes](https://github.com/googleapis/google-cloud-java/releases) - [Changelog](https://github.com/googleapis/google-cloud-java/blob/main/java-document-ai/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-cloud-java/commits) --- updated-dependencies: - dependency-name: com.google.cloud:google-cloud-secretmanager dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 766bf33..e064d9f 100644 --- a/build.gradle +++ b/build.gradle @@ -62,7 +62,7 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-validation:' + springBootVersion // GC Secret Manager - implementation 'com.google.cloud:google-cloud-secretmanager:2.55.0' + implementation 'com.google.cloud:google-cloud-secretmanager:2.56.0' // SQL implementation group: 'mysql', name: 'mysql-connector-java', version:'8.0.33' From 1c9ed0e78b8659a16e431225cc4695b82abf79eb Mon Sep 17 00:00:00 2001 From: Conor Heffron Date: Thu, 16 Jan 2025 12:39:07 +0000 Subject: [PATCH 4/4] Update build.gradle --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index e064d9f..9436929 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ apply plugin: 'war' apply plugin: 'maven-publish' group = 'conorheffron' -version = '6.0.0' +version = '6.0.1' description = "Sample Data Manager" sourceCompatibility = 23