PackageTrack
Sign in Get early access

ch.qos.logback:logback-parent

1.6.3 #919 most downloaded on Maven Central qos-ch/logback

What this package is like to depend on

Last release 9 days ago

15 Aug 2026

Release timing varies

gaps range from 8 days to 3 months

Rarely documented

notes for 10 of 152 stable releases

Nothing withdrawn

no release was ever pulled

20 years old

170 releases · first in 2006

25 releases in the last 12 months

see the full history below

Release timeline

170 releases · Nov 2006 to Aug 2026
2007 2009 2011 2013 2015 2017 2019 2021 2023 2025
Release Pre-release

Releases

latest 60 of 170
  1. 1.6.3 15 Aug 2026
    Release notes

    2026-08-14 Release of logback version 1.6.3

    • In response CVE-2026-19880, MDCBasedDiscriminator (used by SiftingAppender) now strips forward and backward slashes (/, \) from MDC values before they are used as discriminating keys. This prevents path segments from escaping into destinations controlled by an attacker. When sanitisation actually changes a value, a warning is emitted; the warning is rate-limited (a small batch, then a lull of about ten minutes).

    • Colour console support is split out into a dedicated JansiConsoleAppender. It wraps stdout or stderr with Jansi so ANSI escape sequences (for example coloured patterns) render correctly on terminals that need it, notably Windows. Prefer this class over the older path described next. See the appenders documentation.

    • The withJansi property on ConsoleAppender is deprecated. Existing configurations that still set <withJansi>true</withJansi> continue to work for compatibility, but new setups should use JansiConsoleAppender instead.

    • ConsoleAppender no longer treats the process console as an exclusive resource: stopping it does not close System.out / System.err. JansiConsoleAppender pairs each AnsiConsole.systemInstall() with systemUninstall() on stop, so repeated start/stop cycles do not leave Jansi installed or tear down streams shared with the rest of the JVM. Related behavior is covered by tests for issues/1063.

    • Invocation throttling helpers were reworked: SimpleInvocationGate is renamed FixedIntervalInvocationGate, and BatchedFixedIntervalInvocationGate allows a short burst of invocations before applying a fixed lull. The sanitisation
      warning above uses the batched gate.

    • The JPMS module-info for logback-core now exports the ch.qos.logback.core.property package, which had been missing from the module descriptor.

    • A bit-wise identical binary of this version can be reproduced by building from source code at commit e8e824dede022a6d7208b36cfa875b0d1b7772f3 associated with the tag v_1.6.3. The release was built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

    --
    Sponsoring SLF4J/logback/reload4j at https://github.com/sponsors/qos-ch

    Open source →
  2. 1.6.2 11 Aug 2026
    Release notes
    clean.full.1.6.2.mp4

    2026-08-10 Release of logback version 1.6.2

    • Configuration analysis now detects contradictory caller-data inclusion instructions. For example, an AsyncAppender, SocketAppender or SMTPAppender with includeCallerData left at the default false is incompatible with a layout or encoder pattern that uses a caller-data converter such as %C, %M, %L, %F, %l or %caller. At runtime those converters would print question marks and still incur extraction cost on a worker thread. Logback now emits a configuration-time warning when such instructions disagree. See codes.html#callerContradiction for details. This issue was reported in issues/1059 by leeychee. The initial analysis was contributed by seonwoo_jung.

    • Caller-contradiction analysis can be turned off by setting the logback.skipCallerContradictionAnalysis variable to true, either as a system property (-Dlogback.skipCallerContradictionAnalysis=true) or as a property in the configuration file:

      <property name="logback.skipCallerContradictionAnalysis" value="true"/>
    • SimpleSocketServer and SimpleSSLSocketServer now require an explicit client IP whitelist. On the command line, pass one or more allowed addresses (single IPs or CIDR ranges) after the configuration file. An empty whitelist means no clients are accepted. When embedding the server programmatically, register allowed addresses with addAllowedClientAddress(String) or setAllowedClientAddresses(Collection) before clients connect. See the documentation on restricting client access.

    • Added ThrowableProxyVOBuilder for assembling a ThrowableProxyVO field by field, with a corresponding ThrowableProxyVO.builder() entry point.

    • Dependency analysis handlers now run their postHandle method after child models have been processed, so checks that depend on nested appenders (such as caller-contradiction analysis) see a complete picture.

    • Updated several dependencies, including Angus Mail to 2.0.4 and Jetty (test) to 12.1.12.

    • A bit-wise identical binary of this version can be reproduced by building from source code at commit e3d7833 associated with the tag v_1.6.2. The release was built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

    Open source →
  3. 1.6.1 28 Jul 2026
    Release notes

    2026-07-28 Release of logback version 1.6.1

    • In TimeBasedRollingPolicy, when the file option is set, the intermediate file renamed before asynchronous compression now receives the target archive name without the compression suffix (e.g. .gz, .zip, .xz). Previously it used a nanotime-based .tmp suffix. This makes the file easier to identify if compression fails during rollover. (See also the following paragraph.)

    • On GZ, ZIP, or XZ compression failure, the original (uncompressed) log file is no longer deleted. Compression strategies now delete the source file only after successful compression and emit a warning that the original was left intact.

    • ConsoleAppender with now probes JLine's org.jline.jansi.AnsiConsole first and falls back to the legacy FuseSource org.fusesource.jansi.AnsiConsole class. This keeps ANSI coloring working after Jansi moved under the JLine project. The optional org.jline:jansi-core artifact is declared as a dependency alongside the existing FuseSource jansi dependency. A preferredJansiClassName property was added for tests. This issue was reported in issues/1043 by seonwoo_jung who also provided the relevant PR.

    • LayoutWrappingEncoder now reports an error at start() when no layout is set and guards encode() against a null layout. Previously, a missing layout (for example after an ignored // branch) allowed the encoder to start and then fail with a NullPointerException on every event, resulting in silent log loss. This issue was reported in issues/1046 by seonwoo_jung who also provided the relevant PR.

    • FileCollisionAnalyser now detects file collisions involving nested appenders of SiftingAppender. When the nested file or fileNamePattern does not textually reference the discriminator key (e.g. ${userId}), a warning is issued at configuration time naming the appender, the key, and the shared target. This closes a gap where statically declared file appenders were checked but sifted nested appenders were not. This enhancement was contributed in PR #1041 by seonwoo_jung.

    • More defensive handling in SyslogOutputStream and SyslogAppenderBase: the close() method now ensures that resources are closed, writes and flushes check that the underlying resources are in a valid state and fallback to no-op otherwise.

    • A bit-wise identical binary of this version can be reproduced by building from source code at commit 57759f4 associated with the tag v_1.6.1. The release was built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

    • See https://logback.qos.ch/news.html#1.6.1 for the original text.

    Open source →
  4. 1.6.0 23 Jul 2026
    Release notes

    2026-07-23 Release of logback version 1.6.0

    • Removed certain deprecated variables, methods, and classes. For the list of removed members see release_1.6.0.txt.

    • In AsyncAppenderBase, the put(ILoggingEvent) method now has the protected modifier to allow access from derived classes. This change was requested by Thomas Skjølberg in pr#1053.

    • Bump SLF4J dependency to version 2.0.18.

    See also the overview of the 1.6.x series.

    • A bit-wise identical binary of this version can be reproduced by building from source code at commit b07adf3 associated with the tag v_1.6.0. The release was built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

    Open source →
  5. 1.5.38 09 Jul 2026
    Release notes

    2026-07-09 Release of logback version 1.5.38

    • In HardenedObjectInputStream, fixed a typo preventing Throwable objects from being white-filtered. This issue was reported in PR #1045 by t0rchwo0d.

    • A bitwise identical binary of this version can be reproduced by building from source code at commit d04984a associated with the tag v_1.5.38. Release built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

    Open source →
  6. 1.5.37 26 Jun 2026
    Release notes

    2026-06-26 Release of logback version 1.5.37

    1. • Given the numerous vulnerabilities related to conditional configuration processing based on the evaluation of Java expressions using the Janino library, support for such expressions has been removed. Users are offered the an online migration service or the <condition> element introduced in version 1.5.20. See the relevant documentation for more details.

    • A bitwise identical binary of this version can be reproduced by building from source code at commit c1df7f5 associated with the tag v_1.5.37. Release built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

    Open source →
  7. 1.5.36 25 Jun 2026
    Release notes

    2026-06-25 Release of logback version 1.5.36

    • The 'condition' attribute in <if> elements now reject certain references that are associated with ACE attacks. This issue was reported by "yulate" ([email protected]) and registered as CVE-2026-13006. Please note that version 1.5.37 provides the full fix to this vulnerability.

    • A bitwise identical binary of this version can be reproduced by building from source code at commit 9b94c37 associated with the tag v_1.5.36. Release built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

    Open source →
  8. 1.5.35 23 Jun 2026
    Release notes

    026-06-23 Release of logback version 1.5.35

    • The 'condition' attribute in <if> elements now rejects unicode escape sequences (\u and \U). This closes a bypass of the existing prohibition on the new operator in Janino-evaluated conditions. This issue was reported by IcySun ([email protected]) and registered as CVE-2026-13006. Please note that version 1.5.37 provides the full fix to this vulnerability.

    • Added ConfiguratorRank.AUTHENTICATING (rank 100), the highest configurator rank, for certified/authenticating configurators discovered via the ServiceLoader mechanism. ContextInitializer now requires that at most one such configurator exist on the classpath; if more than one is found, initialization aborts with an error.

    ConsoleCharsetPropertyDefiner is no longer shipped. The Java 21 multi-release compilation of logback-core has been disabled, which removes this class from the published artifact. Configurations that referenced ch.qos.logback.core.property.ConsoleCharsetPropertyDefiner will need an alternative approach for console charset detection.

    • The logback-examples module is now included in artifacts published to Maven Central.

    JoranConfigurator.makeAnotherInstance() and DefaultJoranConfigurator.performMultiStepConfigurationFileSearch() are now protected, allowing derived configurators to override these methods.

    • A bitwise identical binary of this version can be reproduced by building from source code at commit 08bd159 associated with the tag v_1.5.35. Release built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

    Open source →
  9. 1.5.34 01 Jun 2026
    Release notes

    2026-06-01 Release of logback version 1.5.34

    • In case certain StackTraceElement values returned by the Throwable.getStackTrace method are null, StackTraceElementProxy substitutes a dummy instance instead of throwing an IllegalArgumentException. This resolves issues #1040, reported by Naotsugu Kobayashi.

    • HardenedObjectInputStream will now throw an InvalidClassException during deserialization attempts of Proxy classes. This change addresses potential deserialization whitelist bypass vulnerability reported by York Shen and registered as CVE-2026-10532.

    • A bitwise identical binary of this version can be reproduced by building from source code at commit e62272a associated with the tag v_1.5.34. This release was built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

    Open source →
  10. 1.5.33 27 May 2026
    Release notes

    2026-05-27 Release of logback version 1.5.33

    PropertiesConfiguratorModelHandler now registers properties file URLs to the ConfigurationWatchList when scan is enabled (via local scan="true" attribute or top-level configuration scan), ensuring changes are detected and reconfiguration occurs. This problem was reported in issues/1034.

    • When processing <conversionRule> elements and both class and converterClass attributes are specified, silently use the class attribute without issuing a warning. However, if the attribute values differ, a warning will be issued. This change was requested in issues/1031.

    HardenedModelInputStream will no longer accept to deserialize all classes located under the "java.lang" and "java.util" packages but a limited number of explicitly authorized classes in those packages. This potential deserialization whitelist bypass vulnerability was reported by York Shen and registered as CVE-2026-9828.

    • SSL parameters for SSLSocketAppender now enable hostname verification by default. Moreover, the default protocol is now "TLSv1.2". This potential vulnerability was reported by York Shen.

    • When printing the status message field, ViewStatusMessagesServletBase now escapes special characters such as "&" as character entities. This potential vulnerability was reported by York Shen.

    • A bit-wise identical binary of this version can be reproduced by building from source code at commit 124e8b4 associated with the tag v_1.5.33. Release built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

    Open source →
  11. 1.5.32 16 Feb 2026

    Nothing published for this version

  12. 1.5.31 14 Feb 2026

    Nothing published for this version

  13. 1.5.30 14 Feb 2026

    Nothing published for this version

  14. 1.5.29 09 Feb 2026

    Nothing published for this version

  15. 1.5.28 06 Feb 2026

    Nothing published for this version

  16. 1.5.27 30 Jan 2026

    Nothing published for this version

  17. 1.5.26 25 Jan 2026

    Nothing published for this version

  18. 1.5.25 17 Jan 2026

    Nothing published for this version

  19. 1.5.24 06 Jan 2026

    Nothing published for this version

  20. 1.5.23 21 Dec 2025

    Nothing published for this version

  21. 1.5.22 11 Dec 2025

    Nothing published for this version

  22. 1.5.21 10 Nov 2025

    Nothing published for this version

  23. 1.5.20 19 Oct 2025

    Nothing published for this version

  24. 1.5.19 30 Sep 2025

    Nothing published for this version

  25. 1.5.18 18 Mar 2025

    Nothing published for this version

  26. 1.5.17 25 Feb 2025

    Nothing published for this version

  27. 1.5.16 05 Jan 2025

    Nothing published for this version

  28. 1.5.15 21 Dec 2024

    Nothing published for this version

  29. 1.5.14 19 Dec 2024

    Nothing published for this version

  30. 1.5.13 18 Dec 2024

    Nothing published for this version

  31. 1.5.12 25 Oct 2024

    Nothing published for this version

  32. 1.5.11 15 Oct 2024

    Nothing published for this version

  33. 1.5.10 12 Oct 2024

    Nothing published for this version

  34. 1.5.9 08 Oct 2024

    Nothing published for this version

  35. 1.5.8 06 Sep 2024

    Nothing published for this version

  36. 1.5.7 15 Aug 2024

    Nothing published for this version

  37. 1.5.6 17 Apr 2024

    Nothing published for this version

  38. 1.5.5 12 Apr 2024

    Nothing published for this version

  39. 1.5.4 09 Apr 2024

    Nothing published for this version

  40. 1.5.3 04 Mar 2024

    Nothing published for this version

  41. 1.5.2 02 Mar 2024

    Nothing published for this version

  42. 1.5.1 28 Feb 2024

    Nothing published for this version

  43. 1.5.0 16 Feb 2024

    Nothing published for this version

  44. 1.4.14 01 Dec 2023

    Nothing published for this version

  45. 1.4.13 28 Nov 2023

    Nothing published for this version

  46. 1.4.12 27 Nov 2023

    Nothing published for this version

  47. 1.4.11 09 Aug 2023

    Nothing published for this version

  48. 1.4.10 09 Aug 2023

    Nothing published for this version

  49. 1.4.9 04 Aug 2023

    Nothing published for this version

  50. 1.4.8 13 Jun 2023

    Nothing published for this version

  51. 1.4.7 19 Apr 2023

    Nothing published for this version

  52. 1.4.6 15 Mar 2023

    Nothing published for this version

  53. 1.4.5 18 Nov 2022

    Nothing published for this version

  54. 1.4.4 10 Oct 2022

    Nothing published for this version

  55. 1.4.3 02 Oct 2022

    Nothing published for this version

  56. 1.4.2 02 Oct 2022

    Nothing published for this version

  57. 1.4.1 14 Sep 2022

    Nothing published for this version

  58. 1.4.0 28 Aug 2022

    Nothing published for this version

  59. 1.3.16 29 Oct 2025

    Nothing published for this version

  60. 1.3.15 28 Dec 2024

    Nothing published for this version

Every package, every release, already written down.

The archive is open and free. Watching your own project is what we are building next.

Browse the archive