Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump org.projectlombok:lombok from 1.18.30 to 1.18.32 #722

Merged
merged 4 commits into from
Apr 1, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2024

Bumps org.projectlombok:lombok from 1.18.30 to 1.18.32.

Changelog

Sourced from org.projectlombok:lombok's changelog.

v1.18.32 (March 20th, 2024)

  • PLATFORM: Initial JDK22 support added.
  • PLAFTORM Added support for Eclipse 2024-03. [Issue #3620](projectlombok/lombok#3620).
  • 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 java.lang.NoSuchMethodError: 'java.lang.StringBuffer org.eclipse.jdt…. [Issue #3564](projectlombok/lombok#3564).
  • FEATURE: @Locked has been introduced. Like @Synchronized but with java.util.concurrent.locks locks instead of the synchronized primitive. Thanks, Pim van der Loos for the PR! [Issue #3506](projectlombok/lombok#3506).
  • NECROMANCY: Inlining a generated getter in eclipse would result in eclipse incorrectly replacing calls with @Getter instead of the actual field's name. [Issue #562](projectlombok/lombok#562). This issue is almost old enough to drink. Points for dedication go to Rawi for fixing this one.
  • BUGFIX: When @SuperBuilder was used on a type with an annotated generic type, it would error wrong number of type arguments. [Issue #3592](projectlombok/lombok#3592).
  • BUGFIX: It was possible to create an infinite build loop using @ExtensionMethod. [Issue #3225](projectlombok/lombok#3225).
  • BUGFIX: Using @Getter(lazy=true) would fail if the expression contained a variable called value. [Issue #2917](projectlombok/lombok#2917).
  • BUGFIX: Many lombok features wouldn't work properly on records contained within an outer type unless you explicitly marked it static. [Issue #3497](projectlombok/lombok#3497) [Issue #3559](projectlombok/lombok#3559).
  • BUGFIX: Eclipse projects using the com.pro-crafting.tools:jasperreports-plugin will now compile.
  • BUGFIX: @FieldNameConstants now works when generated fields are involved. [Issue #3529](projectlombok/lombok#3529).
  • IMPROBABLE BREAKING CHANGE: For JSpecify, the package name changed from org.jspecify.nullness to org.jspecify.annotations, which might lead to a different null analysis. [Issue #3608](projectlombok/lombok#3608).
Commits
  • 2618848 [release] pre-release version bump
  • 5719fde Update changelog in preparation for the upcoming release
  • 1b713ad Add eclipse 2024-03 as test target
  • 521be03 Remove unused string literal code
  • 3b20b70 Support @​Delegate in eclipse 2024-03
  • 98cdf67 Javadoc support for eclipse 2024-03
  • e4824cb Fix Javadoc in Eclipse
  • c93400d [fixes #2917] Use $value instead of value in lazy getter
  • 23307eb [jdk22] Adds support for unnamed variables (JEP 456)
  • a54ec70 Document using jdk22 GA
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

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)

Bumps [org.projectlombok:lombok](https://github.com/projectlombok/lombok) from 1.18.30 to 1.18.32.
- [Changelog](https://github.com/projectlombok/lombok/blob/master/doc/changelog.markdown)
- [Commits](projectlombok/lombok@v1.18.30...v1.18.32)

---
updated-dependencies:
- dependency-name: org.projectlombok:lombok
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file skip-changelog The PR will not appear in the release changelogs labels Apr 1, 2024
Copy link
Member

@curquiza curquiza left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bors merge

meili-bors bot added a commit that referenced this pull request Apr 1, 2024
720: Bump com.squareup.okio:okio from 3.8.0 to 3.9.0 r=curquiza a=dependabot[bot]

Bumps [com.squareup.okio:okio](https://github.com/square/okio) from 3.8.0 to 3.9.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/square/okio/blob/master/CHANGELOG.md">com.squareup.okio:okio's changelog</a>.</em></p>
<blockquote>
<h2>Version 3.9.0</h2>
<p><em>2024-03-12</em></p>
<ul>
<li>New: <code>FileSystem.SYSTEM</code> can be used in source sets that target both Kotlin/Native and
Kotlin/JVM. Previously, we had this symbol in each source set but it wasn't available to
common source sets.</li>
<li>New: <code>COpaquePointer.readByteString(...)</code> creates a ByteString from a memory address.</li>
<li>New: Support <code>InflaterSource</code>, <code>DeflaterSink</code>, <code>GzipSink</code>, and <code>GzipSource</code> in Kotlin/Native.</li>
<li>New: Support openZip() on Kotlin/Native. One known bug in this implementation is that
<code>FileMetadata.lastModifiedAtMillis()</code> is interpreted as UTC and not the host machine's time zone.</li>
<li>New: Prefer NTFS timestamps in ZIP file systems' metadata. This avoids the time zone problems
of ZIP's built-in DOS timestamps, and the 2038 time bombs of ZIP's extended timestamps.</li>
<li>Fix: Don't leak file handles to opened JAR files open in <code>FileSystem.RESOURCES</code>.</li>
<li>Fix: Don't throw a <code>NullPointerException</code> if <code>Closeable.use { ... }</code> returns null.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/square/okio/commit/d6c38c257c79974ac7e6d77b84ce2eeefc1b92b0"><code>d6c38c2</code></a> Prepare for release 3.9.0.</li>
<li><a href="https://github.com/square/okio/commit/eac869b27d4c7ebf8039a8d94c0b8a525c2b2cb9"><code>eac869b</code></a> Create FileSystem.SYSTEM property in shared source set (<a href="https://redirect.github.com/square/okio/issues/1455">#1455</a>)</li>
<li><a href="https://github.com/square/okio/commit/fe6ac99a29ec207c9c5f4421f3fed62fd5bc9d45"><code>fe6ac99</code></a> Fix <code>Closeable.use</code> <code>NullPointerException</code> (<a href="https://redirect.github.com/square/okio/issues/1453">#1453</a>)</li>
<li><a href="https://github.com/square/okio/commit/940496a3d172f1368ea719b5af022b6fa0f92f1b"><code>940496a</code></a> Get ZipFileSystem to prefer NTFS timestamps when present (<a href="https://redirect.github.com/square/okio/issues/1449">#1449</a>)</li>
<li><a href="https://github.com/square/okio/commit/2c0d99ed5b86c3ec2bf0b7edf7cde84de044356a"><code>2c0d99e</code></a> Merge pull request <a href="https://redirect.github.com/square/okio/issues/1451">#1451</a> from square/renovate/org.jetbrains.dokka-dokka-gradl...</li>
<li><a href="https://github.com/square/okio/commit/6c96879c5d7c248c1ddc7d4c9b322d65977b9938"><code>6c96879</code></a> Update dependency org.jetbrains.dokka:dokka-gradle-plugin to v1.9.20</li>
<li><a href="https://github.com/square/okio/commit/0b889e3155cf75f3901a120a9366b5bb0a90cb86"><code>0b889e3</code></a> Update actions/setup-java action to v4.1.0 (<a href="https://redirect.github.com/square/okio/issues/1446">#1446</a>)</li>
<li><a href="https://github.com/square/okio/commit/eb0b918cd1155e5718ab613c511311774137d21d"><code>eb0b918</code></a> Tag the language in code samples (<a href="https://redirect.github.com/square/okio/issues/1445">#1445</a>)</li>
<li><a href="https://github.com/square/okio/commit/20b83aaf698d282cd98d26fe0b51d92305a75fd0"><code>20b83aa</code></a> Get openZip working on KotlinNative (<a href="https://redirect.github.com/square/okio/issues/1439">#1439</a>)</li>
<li><a href="https://github.com/square/okio/commit/3bcb813b4e8c8b0e01ae762041d38da453865f84"><code>3bcb813</code></a> Handle DOS dates in Kotlin/Multiplatform (<a href="https://redirect.github.com/square/okio/issues/1438">#1438</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/square/okio/compare/parent-3.8.0...parent-3.9.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.squareup.okio:okio&package-manager=gradle&previous-version=3.8.0&new-version=3.9.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR 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>

721: Bump org.json:json from 20240205 to 20240303 r=curquiza a=dependabot[bot]

Bumps [org.json:json](https://github.com/douglascrockford/JSON-java) from 20240205 to 20240303.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/douglascrockford/JSON-java/releases">org.json:json's releases</a>.</em></p>
<blockquote>
<h2>20240303</h2>
<table>
<thead>
<tr>
<th>Pull Request</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://redirect.github.com/douglascrockford/JSON-java/issues/875">#875</a></td>
<td><a href="https://redirect.github.com/stleary/JSON-java/pull/875">20240303-pre-release-updates</a></td>
</tr>
<tr>
<td><a href="https://redirect.github.com/douglascrockford/JSON-java/issues/874">#874</a></td>
<td><a href="https://redirect.github.com/stleary/JSON-java/pull/874">Deployment and Pipeline action updates</a></td>
</tr>
<tr>
<td><a href="https://redirect.github.com/douglascrockford/JSON-java/issues/869">#869</a></td>
<td><a href="https://redirect.github.com/stleary/JSON-java/pull/869">Revert recent obj long get long changes</a></td>
</tr>
<tr>
<td><a href="https://redirect.github.com/douglascrockford/JSON-java/issues/860">#860</a></td>
<td><a href="https://redirect.github.com/stleary/JSON-java/pull/860">Added missing Javadocs for Java 21</a></td>
</tr>
<tr>
<td><a href="https://redirect.github.com/douglascrockford/JSON-java/issues/858">#858</a></td>
<td>[cleanup-after-commit for <a href="https://redirect.github.com/douglascrockford/JSON-java/issues/854">#854</a> and <a href="https://redirect.github.com/douglascrockford/JSON-java/issues/856">#856</a>](<a href="https://redirect.github.com/stleary/JSON-java/pull/858">stleary/JSON-java#858</a>)</td>
</tr>
<tr>
<td><a href="https://redirect.github.com/douglascrockford/JSON-java/issues/856">#856</a></td>
<td><a href="https://redirect.github.com/stleary/JSON-java/pull/856">add ability for custom delimiters</a></td>
</tr>
</tbody>
</table>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/stleary/JSON-java/blob/master/docs/RELEASES.md">org.json:json's changelog</a>.</em></p>
<blockquote>
<p>20240303    Revert optLong/getLong changes, and recent commits.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/douglascrockford/JSON-java/commits">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.json:json&package-manager=gradle&previous-version=20240205&new-version=20240303)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR 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>

722: Bump org.projectlombok:lombok from 1.18.30 to 1.18.32 r=curquiza a=dependabot[bot]

Bumps [org.projectlombok:lombok](https://github.com/projectlombok/lombok) from 1.18.30 to 1.18.32.
<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.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/2618848385de2ec4b79677e01eb8045714de1110"><code>2618848</code></a> [release] pre-release version bump</li>
<li><a href="https://github.com/projectlombok/lombok/commit/5719fde58e1faf04d436e85c86ae50acf8ede272"><code>5719fde</code></a> Update changelog in preparation for the upcoming release</li>
<li><a href="https://github.com/projectlombok/lombok/commit/1b713add959430ee22145050a638f01102d158c5"><code>1b713ad</code></a> Add eclipse 2024-03 as test target</li>
<li><a href="https://github.com/projectlombok/lombok/commit/521be03be45887ea738e005b5f317e04ca6196d2"><code>521be03</code></a> Remove unused string literal code</li>
<li><a href="https://github.com/projectlombok/lombok/commit/3b20b70363fe85f354934fcfb47fdcfd0701a31e"><code>3b20b70</code></a> Support <a href="https://github.com/Delegate"><code>`@​Delegate</code></a>` in eclipse 2024-03</li>
<li><a href="https://github.com/projectlombok/lombok/commit/98cdf67ed6846580e8e4e77391fd48f3293603f6"><code>98cdf67</code></a> Javadoc support for eclipse 2024-03</li>
<li><a href="https://github.com/projectlombok/lombok/commit/e4824cbe1405fd665f289f7178d6149a8fcdd7b5"><code>e4824cb</code></a> Fix Javadoc in Eclipse</li>
<li><a href="https://github.com/projectlombok/lombok/commit/c93400d9f44b1e06aa3763c4a2818e43b70f3630"><code>c93400d</code></a> [fixes <a href="https://redirect.github.com/projectlombok/lombok/issues/2917">#2917</a>] Use $value instead of value in lazy getter</li>
<li><a href="https://github.com/projectlombok/lombok/commit/23307eb8d137d7e4a3f645552135ab7354ca1e6e"><code>23307eb</code></a> [jdk22] Adds support for unnamed variables (JEP 456)</li>
<li><a href="https://github.com/projectlombok/lombok/commit/a54ec7005ed253d480621f042d923f3353e6a1d0"><code>a54ec70</code></a> Document using jdk22 GA</li>
<li>Additional commits viewable in <a href="https://github.com/projectlombok/lombok/compare/v1.18.30...v1.18.32">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=gradle&previous-version=1.18.30&new-version=1.18.32)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR 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>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Copy link
Contributor

meili-bors bot commented Apr 1, 2024

This PR was included in a batch that successfully built, but then failed to merge into main. It will not be retried.

Additional information:

{"message":"Changes must be made through a pull request.","documentation_url":"https://docs.github.com/articles/about-protected-branches"}

@curquiza
Copy link
Member

curquiza commented Apr 1, 2024

bors merge

meili-bors bot added a commit that referenced this pull request Apr 1, 2024
721: Bump org.json:json from 20240205 to 20240303 r=curquiza a=dependabot[bot]

Bumps [org.json:json](https://github.com/douglascrockford/JSON-java) from 20240205 to 20240303.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/douglascrockford/JSON-java/releases">org.json:json's releases</a>.</em></p>
<blockquote>
<h2>20240303</h2>
<table>
<thead>
<tr>
<th>Pull Request</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://redirect.github.com/douglascrockford/JSON-java/issues/875">#875</a></td>
<td><a href="https://redirect.github.com/stleary/JSON-java/pull/875">20240303-pre-release-updates</a></td>
</tr>
<tr>
<td><a href="https://redirect.github.com/douglascrockford/JSON-java/issues/874">#874</a></td>
<td><a href="https://redirect.github.com/stleary/JSON-java/pull/874">Deployment and Pipeline action updates</a></td>
</tr>
<tr>
<td><a href="https://redirect.github.com/douglascrockford/JSON-java/issues/869">#869</a></td>
<td><a href="https://redirect.github.com/stleary/JSON-java/pull/869">Revert recent obj long get long changes</a></td>
</tr>
<tr>
<td><a href="https://redirect.github.com/douglascrockford/JSON-java/issues/860">#860</a></td>
<td><a href="https://redirect.github.com/stleary/JSON-java/pull/860">Added missing Javadocs for Java 21</a></td>
</tr>
<tr>
<td><a href="https://redirect.github.com/douglascrockford/JSON-java/issues/858">#858</a></td>
<td>[cleanup-after-commit for <a href="https://redirect.github.com/douglascrockford/JSON-java/issues/854">#854</a> and <a href="https://redirect.github.com/douglascrockford/JSON-java/issues/856">#856</a>](<a href="https://redirect.github.com/stleary/JSON-java/pull/858">stleary/JSON-java#858</a>)</td>
</tr>
<tr>
<td><a href="https://redirect.github.com/douglascrockford/JSON-java/issues/856">#856</a></td>
<td><a href="https://redirect.github.com/stleary/JSON-java/pull/856">add ability for custom delimiters</a></td>
</tr>
</tbody>
</table>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/stleary/JSON-java/blob/master/docs/RELEASES.md">org.json:json's changelog</a>.</em></p>
<blockquote>
<p>20240303    Revert optLong/getLong changes, and recent commits.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/douglascrockford/JSON-java/commits">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.json:json&package-manager=gradle&previous-version=20240205&new-version=20240303)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR 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>

722: Bump org.projectlombok:lombok from 1.18.30 to 1.18.32 r=curquiza a=dependabot[bot]

Bumps [org.projectlombok:lombok](https://github.com/projectlombok/lombok) from 1.18.30 to 1.18.32.
<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.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/2618848385de2ec4b79677e01eb8045714de1110"><code>2618848</code></a> [release] pre-release version bump</li>
<li><a href="https://github.com/projectlombok/lombok/commit/5719fde58e1faf04d436e85c86ae50acf8ede272"><code>5719fde</code></a> Update changelog in preparation for the upcoming release</li>
<li><a href="https://github.com/projectlombok/lombok/commit/1b713add959430ee22145050a638f01102d158c5"><code>1b713ad</code></a> Add eclipse 2024-03 as test target</li>
<li><a href="https://github.com/projectlombok/lombok/commit/521be03be45887ea738e005b5f317e04ca6196d2"><code>521be03</code></a> Remove unused string literal code</li>
<li><a href="https://github.com/projectlombok/lombok/commit/3b20b70363fe85f354934fcfb47fdcfd0701a31e"><code>3b20b70</code></a> Support <a href="https://github.com/Delegate"><code>`@​Delegate</code></a>` in eclipse 2024-03</li>
<li><a href="https://github.com/projectlombok/lombok/commit/98cdf67ed6846580e8e4e77391fd48f3293603f6"><code>98cdf67</code></a> Javadoc support for eclipse 2024-03</li>
<li><a href="https://github.com/projectlombok/lombok/commit/e4824cbe1405fd665f289f7178d6149a8fcdd7b5"><code>e4824cb</code></a> Fix Javadoc in Eclipse</li>
<li><a href="https://github.com/projectlombok/lombok/commit/c93400d9f44b1e06aa3763c4a2818e43b70f3630"><code>c93400d</code></a> [fixes <a href="https://redirect.github.com/projectlombok/lombok/issues/2917">#2917</a>] Use $value instead of value in lazy getter</li>
<li><a href="https://github.com/projectlombok/lombok/commit/23307eb8d137d7e4a3f645552135ab7354ca1e6e"><code>23307eb</code></a> [jdk22] Adds support for unnamed variables (JEP 456)</li>
<li><a href="https://github.com/projectlombok/lombok/commit/a54ec7005ed253d480621f042d923f3353e6a1d0"><code>a54ec70</code></a> Document using jdk22 GA</li>
<li>Additional commits viewable in <a href="https://github.com/projectlombok/lombok/compare/v1.18.30...v1.18.32">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=gradle&previous-version=1.18.30&new-version=1.18.32)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR 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>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Clémentine U. - curqui <[email protected]>
Copy link
Contributor

meili-bors bot commented Apr 1, 2024

This PR was included in a batch that successfully built, but then failed to merge into main. It will not be retried.

Additional information:

{"message":"Changes must be made through a pull request.","documentation_url":"https://docs.github.com/articles/about-protected-branches"}

@curquiza
Copy link
Member

curquiza commented Apr 1, 2024

bors merge

Copy link
Contributor

meili-bors bot commented Apr 1, 2024

Build succeeded:

  • integration-and-unit-tests
  • linter

@meili-bors meili-bors bot merged commit 969d576 into main Apr 1, 2024
3 checks passed
@meili-bors meili-bors bot deleted the dependabot/gradle/org.projectlombok-lombok-1.18.32 branch April 1, 2024 15:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file skip-changelog The PR will not appear in the release changelogs
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant