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

   Bumps [org.projectlombok:lombok](https://github.com/projectlombok/lombok) 
from 1.18.30 to 1.18.42.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/projectlombok/lombok/blob/master/doc/changelog.markdown";>org.projectlombok:lombok's
 changelog</a>.</em></p>
   <blockquote>
   <h3>v1.18.42 (September 18th, 2025)</h3>
   <ul>
   <li>FEATURE: All the various <code>@Log</code> annotations now allow you to 
change their access level (they still default to <code>private</code>). <a 
href="https://redirect.github.com/projectlombok/lombok/issues/2280";>#2280</a>. 
Thanks to new contributor Liam Pace!</li>
   <li>BUGFIX: Javadoc parsing was broken in Netbeans and ErrorProne for JDK25 
<a 
href="https://redirect.github.com/projectlombok/lombok/issues/3940";>#3940</a>.</li>
   </ul>
   <h3>v1.18.40 (September 4th, 2025)</h3>
   <ul>
   <li>PLATFORM: JDK25 support added <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3859";>#3859</a>.</li>
   <li>BUGFIX: Recent versions of eclipse (or the eclipse-based java lang 
server for VSCode) caused <code>java.lang.IllegalArgumentException: Document 
does not match the AST</code>. [Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3886";>#3886</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3886";>projectlombok/lombok#3886</a>).</li>
   <li>PERFORMANCE: <code>@ExtensionMethod</code> is now significantly faster 
[Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3866";>#3866</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3866";>projectlombok/lombok#3866</a>).</li>
   <li>BUGFIX: the command line <code>config</code> tool would emit incorrect 
output for nullity annotations. [Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3931";>#3931</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3931";>projectlombok/lombok#3931</a>).</li>
   <li>FEATURE: <code>@Jacksonized @Accessors(fluent=true)</code> automatically 
creates the relevant annotations such that Jackson correctly identifies fluent 
accessors. [Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3265";>#3265</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3265";>projectlombok/lombok#3265</a>),
 [Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3270";>#3270</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3270";>projectlombok/lombok#3270</a>).</li>
   <li>IMPROBABLE BREAKING CHANGE: From versions 1.18.16 to 1.18.38, lombok 
automatically copies certain Jackson annotations (e.g., 
<code>@JsonProperty</code>) from fields to the corresponding accessors 
(getters/setters). However, it turned out to be harmful in certain situations. 
Thus, Lombok does not automatically copy those annotations any more. You can 
restore the old behavior using the <a 
href="https://projectlombok.org/features/configuration";>config key</a> 
<code>lombok.copyJacksonAnnotationsToAccessors = true</code>.</li>
   </ul>
   <h3>v1.18.38 (March 31st, 2025)</h3>
   <ul>
   <li>PLATFORM: JDK24 support added.</li>
   <li>FEATURE: Lombok's nullity annotation now supports <a 
href="https://jspecify.dev";>JSpecify</a> out of the box, using <a 
href="https://projectlombok.org/features/configuration";>config key</a> 
<code>jspecify</code>.</li>
   <li>BUGFIX: Recent eclipse releases would get you 'negative length' error. 
The bug had always been in lombok but didn't matter until recent releases. 
[Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3823";>#3823</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3823";>projectlombok/lombok#3823</a>).</li>
   <li>BUGFIX: The 'extract local variable' refactor script of VSCode wouldn't 
replace all occurrences if run on a method call to a lombok generated method. 
[Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3783";>#3783</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3783";>projectlombok/lombok#3783</a>).</li>
   </ul>
   <h3>v1.18.36 (November 15th, 2024)</h3>
   <ul>
   <li>PLATFORM: JDK23 support added.</li>
   <li>BUGFIX: Eclipse projects using the 
<code>com.pro-crafting.tools:jasperreports-maven-plugin</code> will now 
compile.</li>
   </ul>
   <h3>v1.18.34 (June 28th, 2024)</h3>
   <ul>
   <li>PLATFORM: Added support for Eclipse 2024-06; you'd get some 
<code>NoSuchMethodError</code> traces in your logs if using 
<code>@Builder</code> or <code>@Singular</code> prior to this fix. [Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3638";>#3638</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3638";>projectlombok/lombok#3638</a>).</li>
   <li>IMPROBABLE BREAKING CHANGE: Lombok now adds 
<code>@lombok.Generated</code> by default to methods and types it generates. 
This may result in accidentally increasing your test coverage percentage. 
[Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3667";>#3667</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3667";>projectlombok/lombok#3667</a>).</li>
   <li>IMPROBABLE BREAKING CHANGE: When <code>lombok.config</code> contains 
<code>lombok.onX.flagUsage = WARNING</code>, from now on warnings will actually 
be generated if onX is used.[Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/2848";>#2848</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/2848";>projectlombok/lombok#2848</a>)</li>
   <li>BUGFIX: When <code>@SuperBuilder</code> was used on a type with an 
generic array type, it would error <code>wrong number of type arguments</code>. 
 [Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3694";>#3694</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3694";>projectlombok/lombok#3694</a>).</li>
   <li>FEATURE: Lombok generates javadoc for you for most of the methods it 
adds; with this release, javadoc is also added to generated constructors. 
[Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/933";>#933</a>](<a 
href="https://redirect.github.com/projectlombok/lombok/issues/933";>projectlombok/lombok#933</a>).</li>
   </ul>
   <h3>v1.18.32 (March 20th, 2024)</h3>
   <ul>
   <li>PLATFORM: Initial JDK22 support added.</li>
   <li>PLAFTORM  Added support for Eclipse 2024-03. [Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3620";>#3620</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3620";>projectlombok/lombok#3620</a>).</li>
   <li>PLATFORM: Added support for recent versions of eclipse (released Q4 2023 
or later or so) which would cause failures in the eclipse logs such as 
<code>java.lang.NoSuchMethodError: 'java.lang.StringBuffer 
org.eclipse.jdt…</code>. [Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3564";>#3564</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3564";>projectlombok/lombok#3564</a>).</li>
   <li>FEATURE: <code>@Locked</code> has been introduced. Like 
<code>@Synchronized</code> but with <code>java.util.concurrent.locks</code> 
locks instead of the <code>synchronized</code> primitive. Thanks, Pim van der 
Loos for the PR! [Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3506";>#3506</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3506";>projectlombok/lombok#3506</a>).</li>
   <li>NECROMANCY: Inlining a generated getter in eclipse would result in 
eclipse incorrectly replacing calls with <code>@Getter</code> instead of the 
actual field's name. [Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/562";>#562</a>](<a 
href="https://redirect.github.com/projectlombok/lombok/issues/562";>projectlombok/lombok#562</a>).
 This issue is almost old enough to drink. Points for dedication go to Rawi for 
fixing this one.</li>
   <li>BUGFIX: When <code>@SuperBuilder</code> was used on a type with an 
annotated generic type, it would error <code>wrong number of type 
arguments</code>.  [Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3592";>#3592</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3592";>projectlombok/lombok#3592</a>).</li>
   <li>BUGFIX: It was possible to create an infinite build loop using 
<code>@ExtensionMethod</code>. [Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3225";>#3225</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3225";>projectlombok/lombok#3225</a>).</li>
   <li>BUGFIX: Using <code>@Getter(lazy=true)</code> would fail if the 
expression contained a variable called <code>value</code>. [Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/2917";>#2917</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/2917";>projectlombok/lombok#2917</a>).</li>
   <li>BUGFIX: Many lombok features wouldn't work properly on records contained 
within an outer type unless you explicitly marked it <code>static</code>. 
[Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3497";>#3497</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3497";>projectlombok/lombok#3497</a>)
 [Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3559";>#3559</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3559";>projectlombok/lombok#3559</a>).</li>
   <li>BUGFIX: Eclipse projects using the 
<code>com.pro-crafting.tools:jasperreports-plugin</code> will now compile.</li>
   <li>BUGFIX: <code>@FieldNameConstants</code> now works when generated fields 
are involved. [Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3529";>#3529</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/issues/3529";>projectlombok/lombok#3529</a>).</li>
   <li>IMPROBABLE BREAKING CHANGE: For JSpecify, the package name changed from 
<code>org.jspecify.nullness</code> to <code>org.jspecify.annotations</code>, 
which might lead to a different null analysis. [Issue <a 
href="https://redirect.github.com/projectlombok/lombok/issues/3608";>#3608</a>](<a
 
href="https://redirect.github.com/projectlombok/lombok/pull/3608";>projectlombok/lombok#3608</a>).</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/projectlombok/lombok/commit/2031eb0880942b5f0b7281580f6e877a3e87279a";><code>2031eb0</code></a>
 [release] pre-release version bump for v1.18.42</li>
   <li><a 
href="https://github.com/projectlombok/lombok/commit/c95a6c127e58868a16869254e47bbe2598f8c82f";><code>c95a6c1</code></a>
 Merge branch 'logger-access'</li>
   <li><a 
href="https://github.com/projectlombok/lombok/commit/71d85caef501ce987f26e498154574489dbe36ee";><code>71d85ca</code></a>
 <a 
href="https://redirect.github.com/projectlombok/lombok/issues/2280";>#2280</a> 
Add delivery of this '<code>access</code> for logging' to the changelog.</li>
   <li><a 
href="https://github.com/projectlombok/lombok/commit/99ba3e31daee7772af4eb712b0a108acdbc86962";><code>99ba3e3</code></a>
 [trivial] Slightly reworded the javadoc on each <code>@Log</code> annotation's 
`access()...</li>
   <li><a 
href="https://github.com/projectlombok/lombok/commit/e9cf11ef01081ee1e4446666afadf36368939e96";><code>e9cf11e</code></a>
 [trivial][style]</li>
   <li><a 
href="https://github.com/projectlombok/lombok/commit/a6d556856cec89be2786e5598d904497d13ed5be";><code>a6d5568</code></a>
 [deprecation] Marked <code>AccessLevel.MODULE</code> as deprecated. It was 
written for a...</li>
   <li><a 
href="https://github.com/projectlombok/lombok/commit/492011df4fa72dfa9bb2a5cef38199fb292253be";><code>492011d</code></a>
 Refactored to use Javac/Eclipse utility function</li>
   <li><a 
href="https://github.com/projectlombok/lombok/commit/c1f7f660c596ed65997974b70b0eecb0675c43f1";><code>c1f7f66</code></a>
 Update copyright in logger files</li>
   <li><a 
href="https://github.com/projectlombok/lombok/commit/f63f40aa48eee97d9bb99416cfe252a104420e29";><code>f63f40a</code></a>
 Add myself to AUTHORS</li>
   <li><a 
href="https://github.com/projectlombok/lombok/commit/9152c3408f7f058e40db570b38fc5ccb46149ae8";><code>9152c34</code></a>
 Fix failing tests</li>
   <li>Additional commits viewable in <a 
href="https://github.com/projectlombok/lombok/compare/v1.18.30...v1.18.42";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.projectlombok:lombok&package-manager=maven&previous-version=1.18.30&new-version=1.18.42)](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 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