From f283b6ab7fd3e72b724550a220eebc65c9ccc858 Mon Sep 17 00:00:00 2001 From: Alvaro Vega Date: Mon, 16 Sep 2024 13:11:29 +0200 Subject: [PATCH 1/2] fix exception about InaccessibleObjectException (#196) * fix exception about InaccessibleObjectException * update CNR --- ChangeLog | 1 + bin/keypass-entrypoint.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/ChangeLog b/ChangeLog index f86fd27..5b3683a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,4 @@ +FIX: startup log exception about InaccessibleObjectException (#195) UPGRADE: Debian version from 12.4 to 12.6 in Dockerfile 1.11.0 diff --git a/bin/keypass-entrypoint.sh b/bin/keypass-entrypoint.sh index d1be322..f7895ed 100755 --- a/bin/keypass-entrypoint.sh +++ b/bin/keypass-entrypoint.sh @@ -16,6 +16,7 @@ echo "INFO: keypass entrypoint start" # LOG_LEVEL. Default INFO [[ "${KEYPASS_LOG_LEVEL}" == "" ]] && export KEYPASS_LOG_LEVEL=INFO +export JDK_JAVA_OPTIONS='--add-opens java.base/java.lang=ALL-UNNAMED' # Check argument DB_HOST if provided while [[ $# -gt 0 ]]; do From 113587f86492f73276259e0946ecd69d0f7136ba Mon Sep 17 00:00:00 2001 From: Alvaro Vega Date: Mon, 16 Sep 2024 13:39:09 +0200 Subject: [PATCH 2/2] fix log error about liquidbased at startup (#197) * fix log error about liquidbased at startup * update CNR --- ChangeLog | 1 + pom.xml | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 5b3683a..8fb8ed3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,4 @@ +FIX: startup error log about liquidbase (#171) FIX: startup log exception about InaccessibleObjectException (#195) UPGRADE: Debian version from 12.4 to 12.6 in Dockerfile diff --git a/pom.xml b/pom.xml index ad66b2c..919fcd8 100644 --- a/pom.xml +++ b/pom.xml @@ -103,6 +103,11 @@ jaxb-runtime 2.3.2 + + org.liquibase + liquibase-core + 4.3.5 +