Skip to content

1.3.0

Compare
Choose a tag to compare
@github-actions github-actions released this 29 Feb 07:13
· 4 commits to master since this release

Change Log

Since ver 1.2.0

New features

Misc changes

  • bump springboot version to 2.7.18
  • bump gradlew version to 8.6
  • Add a document about TLS setting. See tls-setting-ja.md.
  • Fix Log Level Setting. Issue #639

Breaking Changes

logging.level.root=${BELAYER_LOG_LEVEL:WARN}
logging.level.com.tsurugidb=DEBUG
logging.level.org.springframework=INFO
...
webapi.cli.cmd.status=${webapi.tsurugi.home}/bin/tgctl status --monitor %s --conf %s

to

logging.level.root=${BELAYER_LOG_LEVEL:WARN}
logging.level.com.tsurugidb=${BELAYER_LOG_LEVEL:DEBUG}
logging.level.org.springframework=${BELAYER_LOG_LEVEL:INFO}
...
webapi.cli.cmd.db-status=${webapi.tsurugi.home}/bin/tgctl status --monitor %s --conf %s
...
webapi.cli.cmd.session-status=${webapi.tsurugi.home}/bin/tgctl session show :%s --monitor %s --conf %s
webapi.cli.cmd.session-set-var=${webapi.tsurugi.home}/bin/tgctl session set :%s %s %s --monitor %s --conf %s
webapi.cli.cmd.session-kill=${webapi.tsurugi.home}/bin/tgctl session kill :%s --monitor %s --conf %s
#BELAYER_JAVA_OPTS="${BELAYER_JAVA_OPTS} -Xms=512M -Xmx512M -XX:MaxMetaspaceSize=512M"
BELAYER_JAVA_OPTS=${BELAYER_JAVA_OPTS}

$_JAVA_PATH ${BELAYER_JAVA_OPTS} -jar ${JAR} 

to

#JAVA_OPTS="${JAVA_OPTS} -Xms=512M -Xmx512M -XX:MaxMetaspaceSize=512M"
JAVA_OPTS=${JAVA_OPTS}
BELAYER_APP_OPTS=

$_JAVA_PATH ${JAVA_OPTS} -jar ${JAR} ${BELAYER_APP_OPTS}

Full Changelog

1.2.0...1.3.0