Firefly v4.9.5 is released

25 Nov 2018, Alvin Qiu

Firefly v4.9.5 adds time-based log file split configuration, fixes the JDBC connection thread safe problem, remove the ALPN boot dependency, and updates the Kotlin version to 1.3.10.

We add a new log split parameter max-split-time, the value is minute, hour or day. For example:

<logger>
    <name>time-split-minute</name>
    <level>INFO</level>
    <path>${log.path}</path>
    <max-split-time>minute</max-split-time>
</logger>

In this case, the log file is split by one minute. The default value is day.

Update log:

  1. Add time-based log file split configuration.
  2. Fix the JDBC connection thread safe problem.
  3. Remove the ALPN boot dependency.
  4. Update the Kotlin version to 1.3.10.