dependabot[bot] opened a new pull request, #7536:
URL: https://github.com/apache/myfaces-tobago/pull/7536

   Bumps `logback.version` from 1.6.1 to 1.6.2.
   Updates `ch.qos.logback:logback-classic` from 1.6.1 to 1.6.2
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/qos-ch/logback/releases";>ch.qos.logback:logback-classic's
 releases</a>.</em></p>
   <blockquote>
   <h2>Logback 1.6.2</h2>
   <p><a 
href="https://github.com/user-attachments/assets/9ceaf157-b758-4188-815d-edfe4e1b4edd";>https://github.com/user-attachments/assets/9ceaf157-b758-4188-815d-edfe4e1b4edd</a></p>
   <h1>2026-08-10 Release of logback version 1.6.2</h1>
   <ul>
   <li>
   <p>Configuration analysis now detects <em>contradictory caller-data 
inclusion instructions</em>. For example, an <code>AsyncAppender</code>, 
<code>SocketAppender</code> or <code>SMTPAppender</code> with 
<code>includeCallerData</code> left at the default <code>false</code> is 
incompatible with a layout or encoder pattern that uses a caller-data converter 
such as <code>%C</code>, <code>%M</code>, <code>%L</code>, <code>%F</code>, 
<code>%l</code> or <code>%caller</code>. 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 <a 
href="https://logback.qos.ch/codes.html#callerContradiction";>codes.html#callerContradiction</a>
 for details. This issue was reported in <a 
href="https://redirect.github.com/qos-ch/logback/issues/1059";>issues/1059</a> 
by <a href="https://github.com/leeychee";>leeychee</a>. The initial analysis was 
contributed by <a href="https:/
 /github.com/seonwooj0810">seonwoo_jung</a>.</p>
   </li>
   <li>
   <p>Caller-contradiction analysis can be turned off by setting the 
<code>logback.skipCallerContradictionAnalysis</code> variable to 
<code>true</code>, either as a system property 
(<code>-Dlogback.skipCallerContradictionAnalysis=true</code>) or as a property 
in the configuration file:</p>
   <pre lang="xml"><code>&lt;property 
name=&quot;logback.skipCallerContradictionAnalysis&quot; 
value=&quot;true&quot;/&gt;
   </code></pre>
   </li>
   <li>
   <p><code>SimpleSocketServer</code> and <code>SimpleSSLSocketServer</code> 
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 
<code>addAllowedClientAddress(String)</code> or 
<code>setAllowedClientAddresses(Collection)</code> before clients connect. See 
the documentation on <a 
href="https://logback.qos.ch/manual/appenders.html#simpleSocketServerClientAccess";>restricting
 client access</a>.</p>
   </li>
   <li>
   <p>Added <code>ThrowableProxyVOBuilder</code> for assembling a 
<code>ThrowableProxyVO</code> field by field, with a corresponding 
<code>ThrowableProxyVO.builder()</code> entry point.</p>
   </li>
   <li>
   <p>Dependency analysis handlers now run their <code>postHandle</code> method 
after child models have been processed, so checks that depend on nested 
appenders (such as caller-contradiction analysis) see a complete picture.</p>
   </li>
   <li>
   <p>Updated several dependencies, including Angus Mail to 2.0.4 and Jetty 
(test) to 12.1.12.</p>
   </li>
   <li>
   <p>A bit-wise identical binary of this version can be reproduced by building 
from <a href="https://github.com/qos-ch/logback";>source code</a> at commit 
e3d78330ad1ba024fd987fd00c3ffb9cfcdb07dc associated with the tag 
<code>v_1.6.2</code>. The release was built using Java &quot;21&quot; 
2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.</p>
   </li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/qos-ch/logback/commit/e3d78330ad1ba024fd987fd00c3ffb9cfcdb07dc";><code>e3d7833</code></a>
 prepare release 1.6.2</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/919127d92eeee481928122678d017dd61922d5d4";><code>919127d</code></a>
 test for skipping contradiction analysis</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/67dcd4028b9d2b84e4e13fb98e14130b920752f4";><code>67dcd40</code></a>
 allow skipping caller contradiction analysis</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/2619c6d27bd63d8fb3e1955968c4f00d4ea0fd3c";><code>2619c6d</code></a>
 remove unused message string in CallerContradictionWarnAnalyser</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/22cfade9da5a5c69e425f8567d04e90b3d5f5583";><code>22cfade</code></a>
 add support for SMTPAppender in caller data contradiction analysis</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/656fb6dc2372c7fc939c3e4b0412915838073efb";><code>656fb6d</code></a>
 minor javadoc change in SMTPAppenderBase</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/efb1ce29f5f89955f5148228c18a1e1aa89e4b80";><code>efb1ce2</code></a>
 cover SocketAppender in caller contradiction analysis</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/d3a01f8bd3d9dda2dfd748f81defc054401b4aea";><code>d3a01f8</code></a>
 more tests for caller contradiction analysis</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/b1a80d67be0780230b12a6e51cd3cd470ce2c168";><code>b1a80d6</code></a>
 more complete logic in  caller contradiction analysis</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/067895430f39ee37de41c477559bcee3580a4a78";><code>0678954</code></a>
 SimpleSocketServer and SLLSimpleSocketServer now accept whitelisted</li>
   <li>Additional commits viewable in <a 
href="https://github.com/qos-ch/logback/compare/v_1.6.1...v_1.6.2";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `ch.qos.logback:logback-core` from 1.6.1 to 1.6.2
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/qos-ch/logback/releases";>ch.qos.logback:logback-core's 
releases</a>.</em></p>
   <blockquote>
   <h2>Logback 1.6.2</h2>
   <p><a 
href="https://github.com/user-attachments/assets/9ceaf157-b758-4188-815d-edfe4e1b4edd";>https://github.com/user-attachments/assets/9ceaf157-b758-4188-815d-edfe4e1b4edd</a></p>
   <h1>2026-08-10 Release of logback version 1.6.2</h1>
   <ul>
   <li>
   <p>Configuration analysis now detects <em>contradictory caller-data 
inclusion instructions</em>. For example, an <code>AsyncAppender</code>, 
<code>SocketAppender</code> or <code>SMTPAppender</code> with 
<code>includeCallerData</code> left at the default <code>false</code> is 
incompatible with a layout or encoder pattern that uses a caller-data converter 
such as <code>%C</code>, <code>%M</code>, <code>%L</code>, <code>%F</code>, 
<code>%l</code> or <code>%caller</code>. 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 <a 
href="https://logback.qos.ch/codes.html#callerContradiction";>codes.html#callerContradiction</a>
 for details. This issue was reported in <a 
href="https://redirect.github.com/qos-ch/logback/issues/1059";>issues/1059</a> 
by <a href="https://github.com/leeychee";>leeychee</a>. The initial analysis was 
contributed by <a href="https:/
 /github.com/seonwooj0810">seonwoo_jung</a>.</p>
   </li>
   <li>
   <p>Caller-contradiction analysis can be turned off by setting the 
<code>logback.skipCallerContradictionAnalysis</code> variable to 
<code>true</code>, either as a system property 
(<code>-Dlogback.skipCallerContradictionAnalysis=true</code>) or as a property 
in the configuration file:</p>
   <pre lang="xml"><code>&lt;property 
name=&quot;logback.skipCallerContradictionAnalysis&quot; 
value=&quot;true&quot;/&gt;
   </code></pre>
   </li>
   <li>
   <p><code>SimpleSocketServer</code> and <code>SimpleSSLSocketServer</code> 
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 
<code>addAllowedClientAddress(String)</code> or 
<code>setAllowedClientAddresses(Collection)</code> before clients connect. See 
the documentation on <a 
href="https://logback.qos.ch/manual/appenders.html#simpleSocketServerClientAccess";>restricting
 client access</a>.</p>
   </li>
   <li>
   <p>Added <code>ThrowableProxyVOBuilder</code> for assembling a 
<code>ThrowableProxyVO</code> field by field, with a corresponding 
<code>ThrowableProxyVO.builder()</code> entry point.</p>
   </li>
   <li>
   <p>Dependency analysis handlers now run their <code>postHandle</code> method 
after child models have been processed, so checks that depend on nested 
appenders (such as caller-contradiction analysis) see a complete picture.</p>
   </li>
   <li>
   <p>Updated several dependencies, including Angus Mail to 2.0.4 and Jetty 
(test) to 12.1.12.</p>
   </li>
   <li>
   <p>A bit-wise identical binary of this version can be reproduced by building 
from <a href="https://github.com/qos-ch/logback";>source code</a> at commit 
e3d78330ad1ba024fd987fd00c3ffb9cfcdb07dc associated with the tag 
<code>v_1.6.2</code>. The release was built using Java &quot;21&quot; 
2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.</p>
   </li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/qos-ch/logback/commit/e3d78330ad1ba024fd987fd00c3ffb9cfcdb07dc";><code>e3d7833</code></a>
 prepare release 1.6.2</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/919127d92eeee481928122678d017dd61922d5d4";><code>919127d</code></a>
 test for skipping contradiction analysis</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/67dcd4028b9d2b84e4e13fb98e14130b920752f4";><code>67dcd40</code></a>
 allow skipping caller contradiction analysis</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/2619c6d27bd63d8fb3e1955968c4f00d4ea0fd3c";><code>2619c6d</code></a>
 remove unused message string in CallerContradictionWarnAnalyser</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/22cfade9da5a5c69e425f8567d04e90b3d5f5583";><code>22cfade</code></a>
 add support for SMTPAppender in caller data contradiction analysis</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/656fb6dc2372c7fc939c3e4b0412915838073efb";><code>656fb6d</code></a>
 minor javadoc change in SMTPAppenderBase</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/efb1ce29f5f89955f5148228c18a1e1aa89e4b80";><code>efb1ce2</code></a>
 cover SocketAppender in caller contradiction analysis</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/d3a01f8bd3d9dda2dfd748f81defc054401b4aea";><code>d3a01f8</code></a>
 more tests for caller contradiction analysis</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/b1a80d67be0780230b12a6e51cd3cd470ce2c168";><code>b1a80d6</code></a>
 more complete logic in  caller contradiction analysis</li>
   <li><a 
href="https://github.com/qos-ch/logback/commit/067895430f39ee37de41c477559bcee3580a4a78";><code>0678954</code></a>
 SimpleSocketServer and SLLSimpleSocketServer now accept whitelisted</li>
   <li>Additional commits viewable in <a 
href="https://github.com/qos-ch/logback/compare/v_1.6.1...v_1.6.2";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to