diff --git a/logback-site/src/site/pages/manual/appenders.html b/logback-site/src/site/pages/manual/appenders.html index e46aa35c99..4be1fa5488 100755 --- a/logback-site/src/site/pages/manual/appenders.html +++ b/logback-site/src/site/pages/manual/appenders.html @@ -3077,7 +3077,7 @@
<configuration> +<configuration> <appender name="EMAIL" class="ch.qos.logback.classic.net.SMTPAppender"> <evaluator class="ch.qos.logback.classic.boolex.GEventEvaluator"> <expression> @@ -3092,7 +3092,7 @@Marker-based </configuration>
Requires a server call. Please wait a few seconds.
<configuration> +<configuration> <appender name="EMAIL" class="ch.qos.logback.classic.net.SMTPAppender"> <smtpHost>smtp.gmail.com</smtpHost> <smtpPort>465</smtpPort> diff --git a/logback-site/src/site/pages/news.html b/logback-site/src/site/pages/news.html index 00dfbf8f3e..2e7243b15b 100755 --- a/logback-site/src/site/pages/news.html +++ b/logback-site/src/site/pages/news.html @@ -49,17 +49,46 @@, Release of version 1.2.11
--> +2021-02-11 - Release of version 1.3.0-alpha14
+The 1.3.x series is JPMS/Jigsaw/Java 9 + modularized and requires slf4j-api version 2.0.x. However, the + 1.3.x series requires Java 8 or later at runtime.
+ +The 1.3.x series is Jigsaw/Java 9 modularized and requires + slf4j-api version 2.0.x. Moreover, the 1.3.x series requires + Java 8 or later at runtime whereas building logback + from source requires Java 9.
+ +Joran, logback's configuration system, has been rewritten to + use an internal representation model which can be processed + separately. As a side-effect, logback configuration scripts are + now largely order-free. For example, appenders can now be defined + after they are first referenced in a logger. Moreover, + unreferenced appenders are no longer instantiated. Given the + breadth of the changes in Joran codebase, support for +
+ +SiftingAppender
has been dropped temporarily. +• A bug was introduced in 1.3.0-alpha13 which caused + the second appender-ref declaration to be ignored. This issue is + described in LOGBACK-1614 + based on an initial report by C. Ahlers in the logback-user + mailing list. +
+ +
2021-01-31 - Release of version 1.3.0-alpha13
-• Logback releases are now reproducible. This means - that anyone checking out the code corresponding to the release - version from github and building that local copy, will get obtain - an identical binary to the binary found on Maven central. Note - that due to issue +
• Starting with version 1.3.0-alpha13 logback + releases are reproducible. This means that anyone checking out the + code corresponding to the release version from github and building + that local copy, will get obtain an identical binary to the binary + found on Maven central. Note that due + to issue MJAR-275 with the module-info.java produced in earlier java versions, reproducible builds require Java 18.
@@ -99,24 +128,6 @@2021-12-22 - Release of version 1.3.0-alpha12
Note that 1.3.0-alpha12 contains the same security related changes as version 1.3.0-alpha11 and 1.2.9.
-The 1.3.x series is JPMS/Jigsaw/Java 9 - modularized and requires slf4j-api version 2.0.x. However, the - 1.3.x series requires Java 8 or later at runtime.
- -The 1.3.x series is Jigsaw/Java 9 modularized and requires - slf4j-api version 2.0.x. Moreover, the 1.3.x series requires - Java 8 or later at runtime whereas building logback - from source requires Java 9.
- -Joran, logback's configuration system, has been rewritten to - use an internal representation model which can be processed - separately. As a side-effect, logback configuration scripts are - now largely order-free. For example, appenders can now be defined - after they are first referenced in a logger. Moreover, - unreferenced appenders are no longer instantiated. Given the - breadth of the changes in Joran codebase, support for -
SiftingAppender
has been dropped temporarily. -• Logback events now store time using
java.time.Instant
which supports nanosecond