Skip to content

chore(deps): bump the gradle-minor-patch group with 26 updates#1190

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/gradle-minor-patch-6d00025f7a
Open

chore(deps): bump the gradle-minor-patch group with 26 updates#1190
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/gradle-minor-patch-6d00025f7a

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 19, 2026

Copy link
Copy Markdown
Contributor

Bumps the gradle-minor-patch group with 26 updates:

Package From To
org.projectlombok:lombok 1.18.30 1.18.46
org.apache.tika:tika-core 3.2.2 3.3.1
com.google.auth:google-auth-library-oauth2-http 1.33.0 1.48.0
org.apache.pdfbox:pdfbox 3.0.5 3.0.7
com.google.guava:guava 33.5.0-jre 33.6.0-jre
com.github.jknack:handlebars 4.5.0 4.5.2
org.mozilla:rhino 1.8.0 1.9.1
io.projectreactor:reactor-test 3.5.11 3.8.6
com.google.protobuf:protobuf-gradle-plugin 0.9.5 0.10.0
com.google.protobuf:protoc 3.25.5 3.25.9
com.google.protobuf 0.9.6 0.10.0
org.xerial:sqlite-jdbc 3.49.0.0 3.53.2.0
net.java.dev.jna:jna 5.7.0 5.19.1
com.fasterxml.jackson.core:jackson-core 2.18.0 2.22.0
org.apache.httpcomponents.client5:httpclient5 5.2.1 5.6.1
org.opensearch.client:opensearch-rest-client 2.18.0 2.19.5
org.opensearch.client:opensearch-rest-high-level-client 2.18.0 2.19.5
com.google.cloud:google-cloud-storage 2.36.1 2.69.0
org.slf4j:slf4j-api 2.0.9 2.0.18
ch.qos.logback:logback-classic 1.5.21 1.5.34
com.azure:azure-core-http-jdk-httpclient 1.0.3 1.1.5
org.conductoross:conductor-client 5.0.1 5.0.3
org.awaitility:awaitility 4.2.0 4.3.0
org.apache.commons:commons-lang3 3.14.0 3.20.0
org.apache.commons:commons-compress 1.26.1 1.28.0
org.conductoross:java-sdk 5.0.1 5.0.3

Updates org.projectlombok:lombok from 1.18.30 to 1.18.46

Changelog

Sourced from org.projectlombok:lombok's changelog.

v1.18.46 (April 22nd, 2026)

  • PLATFORM: JDK26 support added #4019.
  • PLATFORM: Spring Tools Suite 5 supported #3985.
  • BUGFIX: @Jacksonized no longer stops generating @JsonProperty once an explicit @JsonIgnore annotations is encountered #4022.
  • BUGFIX: In eclipse, mixing @Jacksonized and fluent = true no longer causes the error com.fasterxml.jackson.annotation.JsonProperty is not a repeatable annotation interface. #3934.
  • BUGFIX: Some finishing touches for v1.18.44's support of Jackson3 #4004.

v1.18.44 (March 11th, 2026)

  • FEATURE: @Jacksonized now supports both Jackson2 and Jackson3; you'll get a warning until you configure which one (or even both!) you want lombok to generate. #3950.
  • BUGFIX: On JDK25, val and @ExtensionMethod could sometimes cause erroneous errors (in that you see errors but compilation succeeds anyway) using javac. #3947.
  • BUGFIX: @Jacksonized + fields marked transient would result in those transient fields being serialised which is surprising (and thus undesired) behaviour. #3936.

v1.18.42 (September 18th, 2025)

  • FEATURE: All the various @Log annotations now allow you to change their access level (they still default to private). #2280. Thanks to new contributor Liam Pace!
  • BUGFIX: Javadoc parsing was broken in Netbeans and ErrorProne for JDK25 #3940.

v1.18.40 (September 4th, 2025)

  • PLATFORM: JDK25 support added #3859.
  • BUGFIX: Recent versions of eclipse (or the eclipse-based java lang server for VSCode) caused java.lang.IllegalArgumentException: Document does not match the AST. [Issue #3886](projectlombok/lombok#3886).
  • PERFORMANCE: @ExtensionMethod is now significantly faster [Issue #3866](projectlombok/lombok#3866).
  • BUGFIX: the command line config tool would emit incorrect output for nullity annotations. [Issue #3931](projectlombok/lombok#3931).
  • FEATURE: @Jacksonized @Accessors(fluent=true) automatically creates the relevant annotations such that Jackson correctly identifies fluent accessors. [Issue #3265](projectlombok/lombok#3265), [Issue #3270](projectlombok/lombok#3270).
  • IMPROBABLE BREAKING CHANGE: From versions 1.18.16 to 1.18.38, lombok automatically copies certain Jackson annotations (e.g., @JsonProperty) 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 config key lombok.copyJacksonAnnotationsToAccessors = true.

v1.18.38 (March 31st, 2025)

  • PLATFORM: JDK24 support added.
  • FEATURE: Lombok's nullity annotation now supports JSpecify out of the box, using config key jspecify.
  • 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 #3823](projectlombok/lombok#3823).
  • 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 #3783](projectlombok/lombok#3783).

v1.18.36 (November 15th, 2024)

  • PLATFORM: JDK23 support added.
  • BUGFIX: Eclipse projects using the com.pro-crafting.tools:jasperreports-maven-plugin will now compile.

v1.18.34 (June 28th, 2024)

  • PLATFORM: Added support for Eclipse 2024-06; you'd get some NoSuchMethodError traces in your logs if using @Builder or @Singular prior to this fix. [Issue #3638](projectlombok/lombok#3638).
  • IMPROBABLE BREAKING CHANGE: Lombok now adds @lombok.Generated by default to methods and types it generates. This may result in accidentally increasing your test coverage percentage. [Issue #3667](projectlombok/lombok#3667).
  • IMPROBABLE BREAKING CHANGE: When lombok.config contains lombok.onX.flagUsage = WARNING, from now on warnings will actually be generated if onX is used.[Issue #2848](projectlombok/lombok#2848)
  • BUGFIX: When @SuperBuilder was used on a type with an generic array type, it would error wrong number of type arguments. [Issue #3694](projectlombok/lombok#3694).
  • FEATURE: Lombok generates javadoc for you for most of the methods it adds; with this release, javadoc is also added to generated constructors. [Issue #933](projectlombok/lombok#933).

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).

... (truncated)

Commits
  • 936ca59 [build] lombok's launcher is still intended to be 1.4 compatible, or at least...
  • fcdab3f [version] pre-release version bump
  • 1cb7d49 [changelog]#4004 Mention Jackson3 final touches in changelog.
  • 12a15b0 Fix: Bump EA_JDK to 27 (25 and 26 have been released)
  • 2be766c Merge branch 'jackson3-final-touches'
  • 290fa4c [trivial] constantize the warning we spit out for ambiguous jackson2/3, and m...
  • e6567b6 test: Add Jackson 3 test cases and version ambiguity warnings
  • 45e72e2 feat: Add Jackson 3 databind/dataformat annotations to HandlerUtil copy lists
  • 184d423 feat: Add Jackson 3 support to @​Jacksonized handlers
  • e027ad0 refactored to ShadowClassLoader use Collections::enumeration instead of Vector
  • Additional commits viewable in compare view

Updates org.apache.tika:tika-core from 3.2.2 to 3.3.1

Changelog

Sourced from org.apache.tika:tika-core's changelog.

Release 3.3.1 - 5/20/2026

  • Dependency upgrades (TIKA-4695).

  • Use the IANA-registered text/markdown as the primary media type, with text/x-web-markdown and text/x-markdown kept as aliases (TIKA-4724).

  • Fix several potential resource/file-handle leaks across the OOXML and ODF parsers, the HTTP fetcher, the gRPC server, and ForkClient (TIKA-4704).

  • The resourceName of a nested tarball no longer includes the parent directories of its parent gzip file, and fix a typo in the .gz extension (TIKA-4705).

Release 3.3.0 - 3/18/2026

  • Switch to poi-ooxml-full (TIKA-4563).

  • Users need to add "allowAbsolutePaths=true" for the FileSystemFetcher to fetch an absolute path (TIKA-4649).

  • Add a markdown option for content handlers (TIKA-4563).

  • Improve zip parsing (TIKA-4650).

  • Add detection of compressed bmp (TIKA-4511).

  • Allow per file timeouts in tika-pipes (TIKA-4497).

  • Add matroska detector (TIKA-1180).

  • Allow multiple values for many Dublin Core keys (TIKA-4466).

  • Extract macros by default in tika-app's commandline and gui (TIKA-4472).

  • Improve extraction of Javascript from PDFs (TIKA-4465).

Release 3.2.3 - 9/11/2025

  • Allow backwards compatibility with versions of commons-compress before 1.28.0 (TIKA-4469).

  • Fix XFA parsing within PDFs when woodstox is on the classpath as in tika-server (TIKA-4482).

  • Dependency updates.

Release 3.2.2 - 8/6/2025

  • Improve detection of encrypted ODT files (TIKA-4459)

  • Dependency updates (TIKA-4455).

... (truncated)

Commits
  • bf9aa92 [maven-release-plugin] prepare release 3.3.1-rc1
  • bc80738 TIKA-4729 - prep for 3.3.1 release
  • 5a2e4a7 TIKA-4695: update aws, jbig2
  • 75dbf68 TIKA-4695: update aws, enforcer plugin, azure
  • 3b6e1f6 TIKA-4695: update plexus-classworlds
  • 1de9eb9 TIKA-4695: update maven-model
  • 90b43fe TIKA-4695: update aws, junrar
  • 2485c0d TIKA-4695: update aws, asm
  • 687006f TIKA-4695: update slf4j
  • bdaa2af [TIKA-4724] Use IANA-registered text/markdown as primary type (#2806)
  • Additional commits viewable in compare view

Updates com.google.auth:google-auth-library-oauth2-http from 1.33.0 to 1.48.0

Updates org.apache.pdfbox:pdfbox from 3.0.5 to 3.0.7

Updates com.google.guava:guava from 33.5.0-jre to 33.6.0-jre

Release notes

Sourced from com.google.guava:guava's releases.

33.6.0

Maven

<dependency>
  <groupId>com.google.guava</groupId>
  <artifactId>guava</artifactId>
  <version>33.6.0-jre</version>
  <!-- or, for Android: -->
  <version>33.6.0-android</version>
</dependency>

Jar files

Guava requires one runtime dependency, which you can download here:

Javadoc

JDiff

Changelog

  • Migrated some classes from finalize() to PhantomReference in preparation for the removal of finalization. (786b619dd6, 7c6b17c, aeef90988d)
  • cache: Deprecated CacheBuilder APIs that use TimeUnit in favor of those that use Duration. (73f8b0bb84)
  • collect: Added toImmutableSortedMap collectors that use the natural comparator. (64d70b9f94)
  • collect: Changed ConcurrentHashMultiset, ImmutableMap and TreeMultiset deserialization to avoid mutating final fields. In extremely unlikely scenarios in which an instance of that type contains an object that refers back to that instance, this could lead to a broken instance that throws NullPointerException when used. (8240c7e596, 046468055f)
  • graph: Removed @Beta from all APIs in the package. (dae9566b73)
  • graph: Added support to Graphs.transitiveClosure() for different strategies for adding self-loops. (2e13df25b2)
  • graph: Added an asNetwork() view to Graph and ValueGraph. (909c593c61)
  • hash: Added BloomFilter.serializedSize(). (df9bcc251a)
  • net: Added HttpHeaders.CDN_CACHE_CONTROL. (75331b5030)
Commits

Updates com.github.jknack:handlebars from 4.5.0 to 4.5.2

Release notes

Sourced from com.github.jknack:handlebars's releases.

handlebars.java 4.5.2

What's Changed

New Contributors

Full Changelog: jknack/handlebars.java@v4.5.1...v4.5.2

handlebars.java 4.5.1

What's Changed

New Contributors

Full Changelog: jknack/handlebars.java@v4.5.0...v4.5.1

Commits
  • cf34668 v4.5.2
  • 638d24d build: fix violations tests, root classpath with no extension
  • 08f3d9d Merge commit from fork
  • b5870fa Whitespace is discarded in token stream
  • 7cac15f Merge pull request #1153 from SijieMei/master
  • 25cc890 - fix preserve Parent Context configuration for partial context handling
  • 0829644 build: version bump
  • d177cde Fix path traversal vulnerability
  • cf6beed Merge pull request #1174 from bronsa/patch-1
  • 95a42d0 no need of parent-first, this is the default behaviour ref #1167 ref #1171
  • Additional commits viewable in compare view

Updates org.mozilla:rhino from 1.8.0 to 1.9.1

Release notes

Sourced from org.mozilla:rhino's releases.

Rhino 1.9.1

February 15, 2026

This release fixes a few small regressions introduced in Rhino 1.9.0.

  • Ensure that the "global" object is present, necessary for core-js to run
  • Prevent compiled methods from introducing illegal characters in their names
  • Support reserved words like "class" as names of XML attributes
  • Fix a performance regression in the RegExp engine.

Thanks to all who contributed!

Full Changelog: mozilla/rhino@Rhino1_9_0_Release...Rhino1_9_1_Release

Rhino 1.9.0

This release represents about a year of work on Rhino by a growing team of contributors.

Some of the improvements include:

  • Compatibility improvements in areas like destructuring and spread syntax.
  • Performance improvements from 10 to 30% in benchmarks like Delta Blue, Earley-Boyer, and Crypto in both interpreted and compiled mode
  • Better support for generics and other things when Java integration is used.

Some other improvements:

JavaScript Language Updates:

  • ES6+: Significant advancements in destructuring, spread syntax for arrays/objects, Symbol API, and improved let/const scoping. TypedArray.from/of and BigInt.asUintN/asIntN fixes.
  • RegExp: New features like named capture groups, lookbehind assertions, and Unicode mode support.
  • Future ES (ES2024/2025): Early implementation of proposals such as Promise.withResolvers, Promise.try, ArrayBuffer transfer methods, and new Set methods.

Core Engine Enhancements:

  • Major Refactoring: Extensive migration of built-in objects to a lambda-based architecture and a comprehensive overhaul of the interpreter bytecodes for better performance and maintainability.
  • Concurrency & Interop: Continued focus on thread safety improvements and enhanced Java interoperability, including better generics support.

Going forward -- we have lots of plans for Rhino, including some changes that may affect compatibility for projects that embed Rhino into larger frameworks. We think that these changes will be worth it because they will unlock better language compatibility and performance.

As such, the next version going forward will be 2.0.0-SNAPSHOT.

... (truncated)

Changelog

Sourced from org.mozilla:rhino's changelog.

Rhino 1.9.0

December 22, 2025

This release represents about a year of work on Rhino by a growing team of contributors.

Some of the improvements include:

  • Compatibility improvements in areas like destructuring and spread syntax.
  • Performance improvements from 10 to 30% in benchmarks like Delta Blue, Earley-Boyer, and Crypto in both interpreted and compiled mode
  • Better support for generics and other things when Java integration is used.

Some other improvements:

JavaScript Language Updates:

  • ES6+: Significant advancements in destructuring, spread syntax for arrays/objects, Symbol API, and improved let/const scoping. TypedArray.from/of and BigInt.asUintN/asIntN fixes.
  • RegExp: New features like named capture groups, lookbehind assertions, and Unicode mode support.
  • Future ES (ES2024/2025): Early implementation of proposals such as Promise.withResolvers, Promise.try, ArrayBuffer transfer methods, and new Set methods.

Core Engine Enhancements:

  • Major Refactoring: Extensive migration of built-in objects to a lambda-based architecture and a comprehensive overhaul of the interpreter bytecodes for better performance and maintainability.
  • Concurrency & Interop: Continued focus on thread safety improvements and enhanced Java interoperability, including better generics support.

Going forward -- we have lots of plans for Rhino, including some changes that may affect compatibility for projects that embed Rhino into larger frameworks. We think that these changes will be worth it because they will unlock better language compatibility and performance.

As such, the next version going forward will be 2.0.0-SNAPSHOT.

Thanks to everyone who contributed!

Rhino 1.8.1, Rhino 1.7.15.1, Rhino 1.7.14.1

December 2, 2025

These releases fix a bug in the code that formats floating-point numbers into strings that could result in very bad performance in some cases.

We recommend that all users of Rhino upgrade to release 1.8.1 if possible, and upgrade to Java 17 or 21.

Users who need an older release, or who cannot yet leave Java 8, can also

... (truncated)

Commits

Updates io.projectreactor:reactor-test from 3.5.11 to 3.8.6

Release notes

Sourced from io.projectreactor:reactor-test's releases.

v3.8.6

Reactor Core 3.8.6 is part of the 2025.0.6 Release Train.

What's Changed

✨ New features and improvements

  • Bump ByteBuddy from 1.18.8 to 1.18.10 by @​dependabot[bot] in #4260
  • Bump BlockHound from 1.0.16.RELEASE to 1.0.17.RELEASE by @​violetagg in edccbec5931696eb68f2323d568a5c584730a15f
  • Depend on Micrometer v1.16.6 by @​violetagg in edccbec5931696eb68f2323d568a5c584730a15f
  • Depend on Micrometer Tracing v1.6.6 by @​violetagg in edccbec5931696eb68f2323d568a5c584730a15f

📖 Documentation

New Contributors

Full Changelog: reactor/reactor-core@v3.8.5...v3.8.6

v3.8.5

Reactor Core 3.8.5 is part of the 2025.0.5 Release Train.

What's Changed

✨ New features and improvements

Full Changelog: reactor/reactor-core@v3.8.4...v3.8.5

v3.8.4

Reactor Core 3.8.4 is part of the 2025.0.4 Release Train.

What's Changed

✨ New features and improvements

📖 Documentation

Full Changelog: reactor/reactor-core@v3.8.3...v3.8.4

... (truncated)

Commits
  • edccbec [release] Prepare and release 3.8.6
  • 5c0d5f9 Merge-ignore release 3.7.19 into 3.8.6
  • 1c7af05 [release] Next development version 3.7.20-SNAPSHOT
  • c84e170 [release] Prepare and release 3.7.19
  • 9ea8793 [doc] Fix an outdated link in the Mono class javadoc (#4206)
  • 60752ef Merge #4265 into 3.8.6
  • e3ea874 Bump com.gradle.shadow from 8.3.7 to 9.4.2 (#4265)
  • 5822ae6 Merge #4263 into 3.8.6
  • 00c7b5a Bump actions/checkout from 6.0.2 to 6.0.3 in /.github/workflows (#4263)
  • fbed057 Bump com.uber.nullaway:nullaway from 0.13.4 to 0.13.5 (#4261)
  • Additional commits viewable in compare view

Updates com.google.protobuf:protobuf-gradle-plugin from 0.9.5 to 0.10.0

Release notes

Sourced from com.google.protobuf:protobuf-gradle-plugin's releases.

v0.10.0

What's Changed

New Contributors

Full Changelog: google/protobuf-gradle-plugin@v0.9.6...v0.10.0

v0.9.6

What's Changed

New Contributors

Full Changelog: google/protobuf-gradle-plugin@v0.9.5...v0.9.6

Commits

Updates com.google.protobuf:protoc from 3.25.5 to 3.25.9

Commits

Updates com.google.protobuf from 0.9.6 to 0.10.0

Updates org.xerial:sqlite-jdbc from 3.49.0.0 to 3.53.2.0

Release notes

Sourced from org.xerial:sqlite-jdbc's releases.

Release 3.53.2.0

Changelog

🚀 Features

sqlite

  • upgrade to sqlite 3.53.2 (3e1dabf)

🛠 Build

deps

  • bump org.graalvm.buildtools:native-maven-plugin (d24c1cc)
  • bump org.graalvm.buildtools:native-maven-plugin (751989a)
  • bump org.graalvm.sdk:nativeimage from 25.0.2 to 25.0.3 (cc3e1a5)
  • bump shanegenschaw/pull-request-comment-trigger (cc93aa7)

deps-dev

  • bump surefire.version from 3.5.5 to 3.5.6 (3c29706)
  • bump org.apache.maven.plugins:maven-enforcer-plugin (8a20a64)

unscoped

  • fail workflow if child workflow also fails (49ea263)
  • remove PR comment trigger (03bfd9a)

Contributors

We'd like to thank the following people for their contributions: Gauthier, Gauthier Roebroeck

Release 3.53.1.0

Changelog

🚀 Features

sqlite

  • upgrade to sqlite 3.53.1 (8263322)

🔄️ Changes

  • rewrite amalgamation_version.sh for POSIX shell (52522d0)
  • fix android usage (7ef8e0f)

🛠 Build

deps

  • bump gummy-bears-api-24 to 0.14.0 (a28d6ce)
  • bump gummy-bears-api-24 to 0.13.0 (248e1e9)

deps-dev

  • bump org.jreleaser:jreleaser-maven-plugin (396fdf3)
  • bump com.tngtech.archunit:archunit-junit5 (458abe1)

unscoped

  • conditionally bootstrap SLF4J API JAR (bc7d223)

... (truncated)

Commits
  • 3f06522 chore(release): 3.53.2.0 [skip ci]
  • 49ea263 ci: fail workflow if child workflow also fails
  • eb0564f chore: update native libraries
  • 3e1dabf feat(sqlite): upgrade to sqlite 3.53.2
  • d24c1cc build(deps): bump org.graalvm.buildtools:native-maven-plugin
  • 3c29706 build(deps-dev): bump surefire.version from 3.5.5 to 3.5.6
  • 03bfd9a ci: remove PR comment trigger
  • 751989a build(deps): bump org.graalvm.buildtools:native-maven-plugin
  • cc3e1a5 build(deps): bump org.graalvm.sdk:nativeimage from 25.0.2 to 25.0.3
  • 8a20a64 build(deps-dev): bump org.apache.maven.plugins:maven-enforcer-plugin
  • Additional commits viewable in compare view

Updates net.java.dev.jna:jna from 5.7.0 to 5.19.1

Changelog

Sourced from net.java.dev.jna:jna's changelog.

Release 5.19.1

Bug Fixes

Release 5.19.0

Features

  • #1696: Add LARGE_INTEGER.ByValue to LARGE_INTEGER in WinNT.java - @​baier233.
  • #1697: Add WlanApi module - @​eranl.
  • #1718: Add Cups to c.s.j.p.unix providing CUPS printing system bindings for destinations, jobs, options, and server configuration - @​dbwiddis.
  • #1720: Add groupCount and groupMasks fields to CACHE_RELATIONSHIP in c.s.j.p.win32.WinNT, matching the updated Windows struct layout - @​dbwiddis.
  • #1719: Add CoreGraphics to c.s.j.p.mac with Quartz Window Services and Display Services bindings; implement getAllWindows() in MacWindowUtils - @​dbwiddis.
  • #1723: Add ProcFdInfo, InSockInfo, TcpSockInfo, proc_pidfdinfo, statfs64, and vm_deallocate to c.s.j.p.mac.SystemB - @​dbwiddis.
  • #1725: Add BluetoothApis to c.s.j.p.win32 providing Bluetooth device and radio enumeration via BluetoothFindFirstRadio, BluetoothFindFirstDevice, and related functions - @​dbwiddis.

Bug Fixes

  • #1644: Fix bug in VARDESC and TYPEDESC causing an illegal memory access - @​lwahonen
  • #1715: Fix UdevDevice.getSysname() calling udev_device_get_syspath instead of udev_device_get_sysname - @​dbwiddis.
  • #1721: Fix switched serverName/domainName arguments in Netapi32Util#getDCName - @​dbwiddis.
  • #1722: Fix Advapi32#RegisterServiceCtrlHandler using wrong Handler type - @​dbwiddis.
  • #1636: Drop hard dependency on java.lang.SecurityManager/java.security.AccessController - @​matthiasblaesing.
  • #1724: Fix host_page_size in c.s.j.p.mac.SystemB and getxattr/setxattr/listxattr in c.s.j.p.mac.XAttr using long instead of pointer-sized types for size_t/ssize_t parameters - @​dbwiddis.
  • #1727: Include DragonFlyBSD in NativeLibrary versioned library resolution, libc special-case loading, and 64-bit search paths - @​dbwiddis.
  • #1709: Rebuild native library for OpenBSD 7.9 x86-64, drop OpenBSD x86 - @​matthiasblaesing.

Release 5.18.1

Bug Fixes

  • #1686: Fix sortFields race condition while getting fields - @​bendk.

Release 5.18.0

Features

  • #1671: Add isRISCV to c.s.j.Platform - @​Glavo.
  • #1672: Add CFLocale, CFLocaleCopyCurrent, CFCFDateFormatter, CFDateFormatterStyle, CFDateFormatterCreate and CFDateFormatterGetFormat to c.s.j.p.mac.CoreFoundation - @​dbwiddis.
  • #1669: Document requirement for running on JDK 24+ - @​matthiasblaesing.

Bug Fixes

... (truncated)

Commits
  • 1a91122 Release 5.19.1
  • cbfcb4a Merge pull request #1731 from matthiasblaesing/ancient_android
  • 4ba086b Restore support for Android versions not supporting MethodHandles
  • 699935f Merge pull request #1729 from thesamesam/parallel-fix
  • 3fe4cb5 native: fix parallel build issue
  • 01c7807 Prepare next development iteration
  • 9ff1381 Release 5.19.0
  • 2d038ef Merge pull request #1726 from matthiasblaesing/openbsd
  • eecab35 Update native built for OpenBSD 7.9 (x86-64 only)
  • f670868 Merge pull request #1727 from dbwiddis/fix/dragonflybsd-library-loading
  • Additional commits viewable in compare view

Updates com.fasterxml.jackson.core:jackson-core from 2.18.0 to 2.22.0

Commits
  • d763562 [maven-release-plugin] prepare release jackson-core-2.22.0
  • e5c69fe Re-do 2.22.0 release
  • 0ba6a36 Bump version after release
  • b106011 [maven-release-plugin] prepare for next development iteration
  • 18a7fe4 [maven-release-plugin] prepare release jackson-core-2.22.0
  • 503a14f Re-do 2.22.0 release
  • ab95bc0 ...
  • 0a4b8de Post-release dep version bump
  • 719a42f [maven-release-plugin] prepare for next development iteration
  • 9248848 [maven-release-plugin] prepare release jackson-core-2.22.0
  • Additional commits viewable in compare view

Updates org.apache.httpcomponents.client5:httpclient5 from 5.2.1 to 5.6.1

Changelog

Sourced from org.apache.httpcomponents.client5:httpclient5's changelog.

Release 5.6.1

This is a maintenance release disables experimental SCRAM auth scheme by default and fixes SCRAM final response handling. The SCRAM auth scheme can be re-enabled by choosing a custom auth scheme preference sequence that explici...

Description has been truncated

Bumps the gradle-minor-patch group with 26 updates:

| Package | From | To |
| --- | --- | --- |
| [org.projectlombok:lombok](https://github.com/projectlombok/lombok) | `1.18.30` | `1.18.46` |
| [org.apache.tika:tika-core](https://github.com/apache/tika) | `3.2.2` | `3.3.1` |
| com.google.auth:google-auth-library-oauth2-http | `1.33.0` | `1.48.0` |
| org.apache.pdfbox:pdfbox | `3.0.5` | `3.0.7` |
| [com.google.guava:guava](https://github.com/google/guava) | `33.5.0-jre` | `33.6.0-jre` |
| [com.github.jknack:handlebars](https://github.com/jknack/handlebars.java) | `4.5.0` | `4.5.2` |
| [org.mozilla:rhino](https://github.com/mozilla/rhino) | `1.8.0` | `1.9.1` |
| [io.projectreactor:reactor-test](https://github.com/reactor/reactor-core) | `3.5.11` | `3.8.6` |
| [com.google.protobuf:protobuf-gradle-plugin](https://github.com/google/protobuf-gradle-plugin) | `0.9.5` | `0.10.0` |
| [com.google.protobuf:protoc](https://github.com/protocolbuffers/protobuf) | `3.25.5` | `3.25.9` |
| com.google.protobuf | `0.9.6` | `0.10.0` |
| [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) | `3.49.0.0` | `3.53.2.0` |
| [net.java.dev.jna:jna](https://github.com/java-native-access/jna) | `5.7.0` | `5.19.1` |
| [com.fasterxml.jackson.core:jackson-core](https://github.com/FasterXML/jackson-core) | `2.18.0` | `2.22.0` |
| [org.apache.httpcomponents.client5:httpclient5](https://github.com/apache/httpcomponents-client) | `5.2.1` | `5.6.1` |
| [org.opensearch.client:opensearch-rest-client](https://github.com/opensearch-project/OpenSearch) | `2.18.0` | `2.19.5` |
| [org.opensearch.client:opensearch-rest-high-level-client](https://github.com/opensearch-project/OpenSearch) | `2.18.0` | `2.19.5` |
| [com.google.cloud:google-cloud-storage](https://github.com/googleapis/google-cloud-java) | `2.36.1` | `2.69.0` |
| org.slf4j:slf4j-api | `2.0.9` | `2.0.18` |
| [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) | `1.5.21` | `1.5.34` |
| [com.azure:azure-core-http-jdk-httpclient](https://github.com/Azure/azure-sdk-for-java) | `1.0.3` | `1.1.5` |
| [org.conductoross:conductor-client](https://github.com/conductor-oss/conductor-java-sdk) | `5.0.1` | `5.0.3` |
| [org.awaitility:awaitility](https://github.com/awaitility/awaitility) | `4.2.0` | `4.3.0` |
| org.apache.commons:commons-lang3 | `3.14.0` | `3.20.0` |
| [org.apache.commons:commons-compress](https://github.com/apache/commons-compress) | `1.26.1` | `1.28.0` |
| [org.conductoross:java-sdk](https://github.com/conductor-oss/conductor-java-sdk) | `5.0.1` | `5.0.3` |


Updates `org.projectlombok:lombok` from 1.18.30 to 1.18.46
- [Changelog](https://github.com/projectlombok/lombok/blob/master/doc/changelog.markdown)
- [Commits](projectlombok/lombok@v1.18.30...v1.18.46)

Updates `org.apache.tika:tika-core` from 3.2.2 to 3.3.1
- [Changelog](https://github.com/apache/tika/blob/3.3.1/CHANGES.txt)
- [Commits](apache/tika@3.2.2...3.3.1)

Updates `com.google.auth:google-auth-library-oauth2-http` from 1.33.0 to 1.48.0

Updates `org.apache.pdfbox:pdfbox` from 3.0.5 to 3.0.7

Updates `com.google.guava:guava` from 33.5.0-jre to 33.6.0-jre
- [Release notes](https://github.com/google/guava/releases)
- [Commits](https://github.com/google/guava/commits)

Updates `com.github.jknack:handlebars` from 4.5.0 to 4.5.2
- [Release notes](https://github.com/jknack/handlebars.java/releases)
- [Commits](jknack/handlebars.java@v4.5.0...v4.5.2)

Updates `org.mozilla:rhino` from 1.8.0 to 1.9.1
- [Release notes](https://github.com/mozilla/rhino/releases)
- [Changelog](https://github.com/mozilla/rhino/blob/master/RELEASE-NOTES.md)
- [Commits](https://github.com/mozilla/rhino/commits)

Updates `io.projectreactor:reactor-test` from 3.5.11 to 3.8.6
- [Release notes](https://github.com/reactor/reactor-core/releases)
- [Commits](reactor/reactor-core@v3.5.11...v3.8.6)

Updates `com.google.protobuf:protobuf-gradle-plugin` from 0.9.5 to 0.10.0
- [Release notes](https://github.com/google/protobuf-gradle-plugin/releases)
- [Commits](google/protobuf-gradle-plugin@v0.9.5...v0.10.0)

Updates `com.google.protobuf:protoc` from 3.25.5 to 3.25.9
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Commits](https://github.com/protocolbuffers/protobuf/commits)

Updates `com.google.protobuf` from 0.9.6 to 0.10.0

Updates `org.xerial:sqlite-jdbc` from 3.49.0.0 to 3.53.2.0
- [Release notes](https://github.com/xerial/sqlite-jdbc/releases)
- [Changelog](https://github.com/xerial/sqlite-jdbc/blob/master/CHANGELOG)
- [Commits](xerial/sqlite-jdbc@3.49.0.0...3.53.2.0)

Updates `net.java.dev.jna:jna` from 5.7.0 to 5.19.1
- [Changelog](https://github.com/java-native-access/jna/blob/master/CHANGES.md)
- [Commits](java-native-access/jna@5.7.0...5.19.1)

Updates `com.fasterxml.jackson.core:jackson-core` from 2.18.0 to 2.22.0
- [Commits](FasterXML/jackson-core@jackson-core-2.18.0...jackson-core-2.22.0)

Updates `org.apache.httpcomponents.client5:httpclient5` from 5.2.1 to 5.6.1
- [Changelog](https://github.com/apache/httpcomponents-client/blob/rel/v5.6.1/RELEASE_NOTES.txt)
- [Commits](apache/httpcomponents-client@rel/v5.2.1...rel/v5.6.1)

Updates `org.opensearch.client:opensearch-rest-client` from 2.18.0 to 2.19.5
- [Release notes](https://github.com/opensearch-project/OpenSearch/releases)
- [Changelog](https://github.com/opensearch-project/OpenSearch/blob/main/CHANGELOG.md)
- [Commits](opensearch-project/OpenSearch@2.18.0...2.19.5)

Updates `org.opensearch.client:opensearch-rest-high-level-client` from 2.18.0 to 2.19.5
- [Release notes](https://github.com/opensearch-project/OpenSearch/releases)
- [Changelog](https://github.com/opensearch-project/OpenSearch/blob/main/CHANGELOG.md)
- [Commits](opensearch-project/OpenSearch@2.18.0...2.19.5)

Updates `com.google.cloud:google-cloud-storage` from 2.36.1 to 2.69.0
- [Release notes](https://github.com/googleapis/google-cloud-java/releases)
- [Changelog](https://github.com/googleapis/google-cloud-java/blob/main/java-document-ai/CHANGELOG.md)
- [Commits](https://github.com/googleapis/google-cloud-java/commits)

Updates `org.slf4j:slf4j-api` from 2.0.9 to 2.0.18

Updates `ch.qos.logback:logback-classic` from 1.5.21 to 1.5.34
- [Release notes](https://github.com/qos-ch/logback/releases)
- [Commits](qos-ch/logback@v_1.5.21...v_1.5.34)

Updates `com.azure:azure-core-http-jdk-httpclient` from 1.0.3 to 1.1.5
- [Release notes](https://github.com/Azure/azure-sdk-for-java/releases)
- [Commits](Azure/azure-sdk-for-java@azure-sdk-bom_1.0.3...azure-identity-broker_1.1.5)

Updates `org.conductoross:conductor-client` from 5.0.1 to 5.0.3
- [Release notes](https://github.com/conductor-oss/conductor-java-sdk/releases)
- [Changelog](https://github.com/conductor-oss/java-sdk/blob/main/CHANGELOG.md)
- [Commits](conductor-oss/java-sdk@v5.0.1...v5.0.3)

Updates `org.awaitility:awaitility` from 4.2.0 to 4.3.0
- [Changelog](https://github.com/awaitility/awaitility/blob/master/changelog.txt)
- [Commits](awaitility/awaitility@awaitility-4.2.0...awaitility-4.3.0)

Updates `org.apache.commons:commons-lang3` from 3.14.0 to 3.20.0

Updates `org.apache.commons:commons-compress` from 1.26.1 to 1.28.0
- [Changelog](https://github.com/apache/commons-compress/blob/master/RELEASE-NOTES.txt)
- [Commits](apache/commons-compress@rel/commons-compress-1.26.1...rel/commons-compress-1.28.0)

Updates `org.conductoross:java-sdk` from 5.0.1 to 5.0.3
- [Release notes](https://github.com/conductor-oss/conductor-java-sdk/releases)
- [Changelog](https://github.com/conductor-oss/java-sdk/blob/main/CHANGELOG.md)
- [Commits](conductor-oss/java-sdk@v5.0.1...v5.0.3)

---
updated-dependencies:
- dependency-name: org.projectlombok:lombok
  dependency-version: 1.18.46
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-minor-patch
- dependency-name: org.apache.tika:tika-core
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: com.google.auth:google-auth-library-oauth2-http
  dependency-version: 1.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: org.apache.pdfbox:pdfbox
  dependency-version: 3.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-minor-patch
- dependency-name: com.google.guava:guava
  dependency-version: 33.6.0-jre
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: com.github.jknack:handlebars
  dependency-version: 4.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-minor-patch
- dependency-name: org.mozilla:rhino
  dependency-version: 1.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: io.projectreactor:reactor-test
  dependency-version: 3.8.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: com.google.protobuf:protobuf-gradle-plugin
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: com.google.protobuf:protoc
  dependency-version: 3.25.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-minor-patch
- dependency-name: com.google.protobuf
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: org.xerial:sqlite-jdbc
  dependency-version: 3.53.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: net.java.dev.jna:jna
  dependency-version: 5.19.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: com.fasterxml.jackson.core:jackson-core
  dependency-version: 2.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: org.apache.httpcomponents.client5:httpclient5
  dependency-version: 5.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: org.opensearch.client:opensearch-rest-client
  dependency-version: 2.19.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: org.opensearch.client:opensearch-rest-high-level-client
  dependency-version: 2.19.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: com.google.cloud:google-cloud-storage
  dependency-version: 2.69.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: org.slf4j:slf4j-api
  dependency-version: 2.0.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-minor-patch
- dependency-name: ch.qos.logback:logback-classic
  dependency-version: 1.5.34
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-minor-patch
- dependency-name: com.azure:azure-core-http-jdk-httpclient
  dependency-version: 1.1.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: org.conductoross:conductor-client
  dependency-version: 5.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-minor-patch
- dependency-name: org.awaitility:awaitility
  dependency-version: 4.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: org.apache.commons:commons-lang3
  dependency-version: 3.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: org.apache.commons:commons-compress
  dependency-version: 1.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-minor-patch
- dependency-name: org.conductoross:java-sdk
  dependency-version: 5.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jun 19, 2026
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 java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants