You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2022/06/23 19:02:55 UTC

[GitHub] [camel-k-runtime] dependabot[bot] opened a new pull request, #839: build(deps): bump logstash-logback-encoder from 4.11 to 7.2

dependabot[bot] opened a new pull request, #839:
URL: https://github.com/apache/camel-k-runtime/pull/839

   Bumps [logstash-logback-encoder](https://github.com/logfellow/logstash-logback-encoder) from 4.11 to 7.2.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/logfellow/logstash-logback-encoder/releases">logstash-logback-encoder's releases</a>.</em></p>
   <blockquote>
   <h2>logstash-logback-encoder-7.2</h2>
   <h1>Bug Fixes</h1>
   <ul>
   <li><a href="https://github-redirect.dependabot.com/logfellow/logstash-logback-encoder/issues/722">#722</a> Fix a memory leak appearing in Java 16+ when logging from a thread managed by a ForkJoinPool (<a href="https://github.com/caesar-ralf"><code>@​caesar-ralf</code></a>)</li>
   </ul>
   <h1>Improvements</h1>
   <ul>
   <li>
   <p><a href="https://github-redirect.dependabot.com/logfellow/logstash-logback-encoder/issues/807">#807</a> Allow inline generation of stacktrace (<a href="https://github.com/MarneusCalgarXP"><code>@​MarneusCalgarXP</code></a>)</p>
   <p>The <code>ShortenedThrowableConverter</code> now allows you to specify the line separator to use instead of a new line by default. This is particularly useful to format a stacktrace on a single line when using rsyslog or fluentd when you don't want to use json format.
   For example:</p>
   </li>
   </ul>
   <pre lang="xml"><code>&lt;conversionRule conversionWord=&quot;stack&quot;
                   converterClass=&quot;net.logstash.logback.stacktrace.ShortenedThrowableConverter&quot; /&gt;
   <p>&lt;appender name=&quot;CONSOLE&quot; class=&quot;ch.qos.logback.core.ConsoleAppender&quot;&gt;
   &lt;encoder&gt;
   &lt;pattern&gt;... %stack{full,40,500,rootFirst,inline} ...&lt;/pattern&gt;
   &lt;/encoder&gt;
   &lt;/appender&gt;
   </code></pre></p>
   <h1>Dependency version changes</h1>
   <table>
   <thead>
   <tr>
   <th>Usage</th>
   <th>Dependency</th>
   <th>Old Version</th>
   <th>New Version</th>
   </tr>
   </thead>
   <tbody>
   <tr>
   <td>Runtime</td>
   <td>jackson</td>
   <td>2.13.2.20220328</td>
   <td>2.13.3</td>
   </tr>
   </tbody>
   </table>
   <h2>logstash-logback-encoder-7.1.1</h2>
   <p>Version 7.1.1 is a minor release with bug fixes only.</p>
   <h1>Bug Fixes</h1>
   <ul>
   <li><a href="https://github-redirect.dependabot.com/logfellow/logstash-logback-encoder/issues/789">#789</a> NullPointerException thrown when timestamp is after the last ZoneOffsetTransition (<a href="https://github.com/brenuart"><code>@​brenuart</code></a>)</li>
   <li><a href="https://github-redirect.dependabot.com/logfellow/logstash-logback-encoder/issues/797">#797</a> <code>Z[UTC]</code> time zone indication is missing when using ISO_ZONED_DATE_TIME or ISO_DATE_TIME formats (<a href="https://github.com/brenuart"><code>@​brenuart</code></a>)</li>
   </ul>
   <h2>logstash-logback-encoder-7.1</h2>
   <h1>Bug Fixes</h1>
   <ul>
   <li>
   <p><a href="https://github-redirect.dependabot.com/logfellow/logstash-logback-encoder/issues/747">#747</a>/<a href="https://github-redirect.dependabot.com/logfellow/logstash-logback-encoder/issues/748">#748</a> Logger name shortening down to the <em>class name</em> (length set to zero). (<a href="https://github.com/brenuart"><code>@​brenuart</code></a>)</p>
   <p>When using a <code>LogstashEncoder</code>, the <code>&lt;shortenedLoggerNameLength&gt;</code> configuration property can be used to shorten the logger name as described in <a href="https://github.com/logfellow/logstash-logback-encoder#customizing-logger-name-length">here</a>. This feature is supposed to behave the same as the standard <a href="https://logback.qos.ch/manual/layouts.html#conversionWord">Logback <em>length</em> conversion word</a>. However, although the logger name was properly shortened when the desired length was greater than zero, it did not produce the expected result when the length was set to <code>0</code>. In fact, <code>foo.bar.baz.MyClass</code> was shortened to <code>f.b.b.MyClass</code> instead of <code>MyClass</code>.</p>
   </li>
   <li>
   <p><a href="https://github-redirect.dependabot.com/logfellow/logstash-logback-encoder/issues/765">#765</a> PatternJsonProvider: <em>omitEmptyFields</em> doesn't work with <em>%property{key}</em>. (<a href="https://github.com/brenuart"><code>@​brenuart</code></a>)</p>
   <p>The Logback <em>%property{key}</em> conversion specifier returns null when the property does not exists. This value is added as-is to the String evaluation of the pattern which ultimately gives the string <code>&quot;null&quot;</code> (in letters) that won't be filtered out by the <em>omitEmptyField</em> feature.
   To solve this issue, the PatternJsonProvider now uses a custom <em>%property{key}</em> converter that returns an empty string instead of null when the property does not exist. It also allows you to specify a default value to use when the property does not exist. People wanting to revert to the old behaviour can explicitly set the default value to &quot;null&quot; like this <code>%property{key:-null}</code>.</p>
   </li>
   <li>
   <p><a href="https://github-redirect.dependabot.com/logfellow/logstash-logback-encoder/issues/751">#751</a> Fixed wrong link in README.md for #event-specific-custom-fields (<a href="https://github.com/mightymoogle"><code>@​mightymoogle</code></a>)</p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/logfellow/logstash-logback-encoder/commit/e83e6666ad072db05d77b46ddbc3b3f7c9ad76af"><code>e83e666</code></a> [maven-release-plugin] prepare release logstash-logback-encoder-7.2</li>
   <li><a href="https://github.com/logfellow/logstash-logback-encoder/commit/88bde0d8d2da6908e4a895d56094cc5a4b5f654c"><code>88bde0d</code></a> [release]</li>
   <li><a href="https://github.com/logfellow/logstash-logback-encoder/commit/faadf210429a23604e774719f7822e927c0bcf69"><code>faadf21</code></a> allow inline stacktrace generation (<a href="https://github-redirect.dependabot.com/logfellow/logstash-logback-encoder/issues/807">#807</a>)</li>
   <li><a href="https://github.com/logfellow/logstash-logback-encoder/commit/f248f22ade924454c85f7c01c03110bd1039749a"><code>f248f22</code></a> Fixes memory leak on JDK 16+ (<a href="https://github-redirect.dependabot.com/logfellow/logstash-logback-encoder/issues/806">#806</a>)</li>
   <li><a href="https://github.com/logfellow/logstash-logback-encoder/commit/81f8493f0fb4d17294ddc1ac5d5713cd12245c8a"><code>81f8493</code></a> (javadoc plugin) Add link to logback-access apidoc</li>
   <li><a href="https://github.com/logfellow/logstash-logback-encoder/commit/e97af9de73688dc1d302a901e9bc444d1d9b31d9"><code>e97af9d</code></a> Bump maven-bundle-plugin from 5.1.4 to 5.1.6 (<a href="https://github-redirect.dependabot.com/logfellow/logstash-logback-encoder/issues/809">#809</a>)</li>
   <li><a href="https://github.com/logfellow/logstash-logback-encoder/commit/6f306c6bdeacadad7b48936fef4dccdcc09d8998"><code>6f306c6</code></a> Bump jackson-bom from 2.13.2.20220328 to 2.13.3 (<a href="https://github-redirect.dependabot.com/logfellow/logstash-logback-encoder/issues/808">#808</a>)</li>
   <li><a href="https://github.com/logfellow/logstash-logback-encoder/commit/c5820d44cd3c641d8b06f427f5259585818d9d00"><code>c5820d4</code></a> Fetch Logback javadoc from <a href="https://javadoc.io">https://javadoc.io</a> (<a href="https://github-redirect.dependabot.com/logfellow/logstash-logback-encoder/issues/810">#810</a>)</li>
   <li><a href="https://github.com/logfellow/logstash-logback-encoder/commit/d463762b46c1375be608f1e50d591569f02c5f4f"><code>d463762</code></a> Bump nexus-staging-maven-plugin from 1.6.12 to 1.6.13 (<a href="https://github-redirect.dependabot.com/logfellow/logstash-logback-encoder/issues/803">#803</a>)</li>
   <li><a href="https://github.com/logfellow/logstash-logback-encoder/commit/f84c676bb344dca24535ae1bbb39d88cc76e8aff"><code>f84c676</code></a> Bump maven-javadoc-plugin from 3.3.2 to 3.4.0 (<a href="https://github-redirect.dependabot.com/logfellow/logstash-logback-encoder/issues/801">#801</a>)</li>
   <li>Additional commits viewable in <a href="https://github.com/logfellow/logstash-logback-encoder/compare/logstash-logback-encoder-4.11...logstash-logback-encoder-7.2">compare view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=net.logstash.logback:logstash-logback-encoder&package-manager=maven&previous-version=4.11&new-version=7.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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 merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
   - `@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: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-k-runtime] dependabot[bot] closed pull request #839: build(deps): bump logstash-logback-encoder from 4.11 to 7.2

Posted by GitBox <gi...@apache.org>.
dependabot[bot] closed pull request #839: build(deps): bump logstash-logback-encoder from 4.11 to 7.2
URL: https://github.com/apache/camel-k-runtime/pull/839


-- 
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: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-k-runtime] dependabot[bot] commented on pull request #839: build(deps): bump logstash-logback-encoder from 4.11 to 7.2

Posted by GitBox <gi...@apache.org>.
dependabot[bot] commented on PR #839:
URL: https://github.com/apache/camel-k-runtime/pull/839#issuecomment-1169648713

   Looks like net.logstash.logback:logstash-logback-encoder is up-to-date now, so this is no longer needed.


-- 
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: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org