Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 19, 2025

Bumps the dependencies group with 21 updates:

Package From To
io.swagger.core.v3:swagger-annotations 2.2.30 2.2.32
io.swagger.core.v3:swagger-models 2.2.30 2.2.32
io.swagger.parser.v3:swagger-parser 2.1.27 2.1.28
com.graphql-java:graphql-java 23.1 24.0
org.hibernate.orm:hibernate-core 6.6.14.Final 6.6.15.Final
org.jdbi:jdbi3-core 3.49.3 3.49.4
org.eclipse.jetty:jetty-server 12.0.20 12.0.21
org.eclipse.jetty.websocket:jetty-websocket-core-server 12.0.20 12.0.21
org.eclipse.jetty.websocket:jetty-websocket-jetty-api 12.0.20 12.0.21
org.eclipse.jetty.websocket:jetty-websocket-jetty-server 12.0.20 12.0.21
org.eclipse.jetty.http2:jetty-http2-server 12.0.20 12.0.21
org.eclipse.jetty:jetty-alpn-java-server 12.0.20 12.0.21
org.eclipse.jetty.http2:jetty-http2-client 12.0.20 12.0.21
io.rest-assured:rest-assured 5.5.1 5.5.2
org.jetbrains.kotlin:kotlin-stdlib 2.1.20 2.1.21
org.jetbrains.kotlin:kotlin-reflect 2.1.20 2.1.21
org.jetbrains.kotlin:kotlin-maven-plugin 2.1.20 2.1.21
software.amazon.awssdk:bom 2.31.40 2.31.45
org.jline:jline 3.30.0 3.30.1
org.jline:jline-terminal-jna 3.30.0 3.30.1
io.projectreactor:reactor-core 3.7.5 3.7.6

Updates io.swagger.core.v3:swagger-annotations from 2.2.30 to 2.2.32

Updates io.swagger.core.v3:swagger-models from 2.2.30 to 2.2.32

Updates io.swagger.core.v3:swagger-models from 2.2.30 to 2.2.32

Updates io.swagger.parser.v3:swagger-parser from 2.1.27 to 2.1.28

Release notes

Sourced from io.swagger.parser.v3:swagger-parser's releases.

Swagger-parser 2.1.28 released!

  • chore: migrate Sonatype OSSRH to Central Portal (#2189)
  • Add $dynamicRef (#2181)
Commits

Updates com.graphql-java:graphql-java from 23.1 to 24.0

Release notes

Sourced from com.graphql-java:graphql-java's releases.

24.0 is a breaking change

This release is an unexpected breaking change release. It was made to help propagate a fix in the DataLoader library

In DataLoader version 4.0.0 we introduced immutability into the DataLoaderOptions class, which was a good thing.

However it left the old mutative setXXX methods in place and made them immutable. This was a mistake. This leads to bugs at runtime for example

DataLoaderOptions options = DataLoaderOptions.newOptions();
if (maxBatchSize != BatchLoader.UNSET_BATCH_SIZE) {
  options.setMaxBatchSize(maxBatchSize);
}
return options.setCacheMap(cache);

The above code would continue to compile but the setMaxBatchSize() would never take affected at runtime with the immutable support.

So to help address this bug a DataLoader version 5.0.0 was released and it has removed the setXXX methods and requires the Builder methods to be used to ensure that code that relied on the old mutative methods now break at compile time and not at runtime.

In turn we have released this new version of graphql-java - we have designated it a breaking change because of this transitive DataLoader breaking change

We consider v23.x poisoned and we don't recommend you use it because of the latent bug above.

But the release notes of 23 are still relevant when you upgrade from 22: https://github.com/graphql-java/graphql-java/releases/tag/v23.0

Small performance fixes

There are also a set of small performance oriented fixes that have gone out in this release.

What's Changed

Full Changelog: graphql-java/graphql-java@v23.1...v24.0

Commits
  • cab5b9f Merge pull request #3974 from graphql-java/Cherry-pick-3929-dont-allocate-non...
  • 861050a Merge pull request #3973 from graphql-java/Cherry-pick-3930-remove-optional-s...
  • f8858ea Merge pull request #3972 from graphql-java/Cherry-pick-3931-imperative-filter...
  • fbb0fd1 Cherry pick PR 3929 reduce nonnullablefieldvalidator allocations
  • 697298e Cherry pick 3930 remove optional streams
  • 306c66a Merge pull request #3971 from graphql-java/Cherry-pick-3932-remove-streams-fr...
  • 53a5215 Merge pull request #3970 from graphql-java/Cherry-pick-3934-execution-step-in...
  • fb68283 Cherry pick 3931 imperative filters
  • e20dad9 Merge pull request #3969 from graphql-java/Cherry-pick-3935-skip-builder-on-esp
  • 5676eb9 Merge pull request #3968 from graphql-java/Cherry-pick-3942-fix-singleton-to-...
  • Additional commits viewable in compare view

Updates org.hibernate.orm:hibernate-core from 6.6.14.Final to 6.6.15.Final

Release notes

Sourced from org.hibernate.orm:hibernate-core's releases.

Hibernate ORM 6.6.15.Final released

Today, we published a new release of Hibernate ORM 6.6: 6.6.15.Final.

You can find the full list of 6.6.15.Final changes here.

What's new

This release introduces a few minor improvements as well as bug fixes.

Conclusion

For additional details, see:

See also the following resources related to supported APIs:

Visit the website for details on getting in touch with us.

Changelog

Sourced from org.hibernate.orm:hibernate-core's changelog.

Changes in 6.6.15.Final (May 13, 2025)

https://hibernate.atlassian.net/projects/HHH/versions/33406

** Bug * [HHH-19458] - problem starting MockSessionFactory from Quarkus dev mode with Reactive

Commits
  • fd28d90 Pre-steps for release : 6.6.15.Final
  • f2d0ded avoid use of BootstrapServiceRegistryBuilder in MockSessionFactory
  • 29a7148 HHH-19341 Move publication repositories configuration to a more common gradle...
  • c69567b Post-steps for release : 6.6.14.Final
  • See full diff in compare view

Updates org.jdbi:jdbi3-core from 3.49.3 to 3.49.4

Release notes

Sourced from org.jdbi:jdbi3-core's releases.

Jdbi3 3.49.4

  • Add experimental support for Kotlin Value types as arguments and columns (#2790, suggested and aided by @​SpyMachine)
Changelog

Sourced from org.jdbi:jdbi3-core's changelog.

3.49.4

  • Add experimental support for Kotlin Value types as arguments and columns (#2790, suggested and aided by @​SpyMachine)
Commits
  • bce8eaa [maven-release-plugin] prepare release v3.49.4
  • 97fa1ea add 3.49.4 release
  • 3e95ac5 Kotlin value class support
  • aef9353 Make kotlin to java type conversion resilient
  • 6f74099 Value type support for mappers and arguments
  • bc336ac add toString methods to mappers and arguments
  • bb8674e clean up kotlin tests to use the right plugins
  • aff79f6 Merge pull request #2802 from hgschmie/central-fixup
  • 5ef2271 fix snapshot repo ref
  • 88f62e1 Merge pull request #2801 from hgschmie/central-migration
  • Additional commits viewable in compare view

Updates org.eclipse.jetty:jetty-server from 12.0.20 to 12.0.21

Updates org.eclipse.jetty.websocket:jetty-websocket-core-server from 12.0.20 to 12.0.21

Updates org.eclipse.jetty.websocket:jetty-websocket-jetty-api from 12.0.20 to 12.0.21

Updates org.eclipse.jetty.websocket:jetty-websocket-jetty-server from 12.0.20 to 12.0.21

Updates org.eclipse.jetty.http2:jetty-http2-server from 12.0.20 to 12.0.21

Updates org.eclipse.jetty:jetty-alpn-java-server from 12.0.20 to 12.0.21

Updates org.eclipse.jetty.http2:jetty-http2-client from 12.0.20 to 12.0.21

Updates org.eclipse.jetty.websocket:jetty-websocket-core-server from 12.0.20 to 12.0.21

Updates io.rest-assured:rest-assured from 5.5.1 to 5.5.2

Changelog

Sourced from io.rest-assured:rest-assured's changelog.

Changelog 5.5.2 (2025-05-14)

  • CookieFilter now supports setting cookies correctly when Apache HTTP Client does internal redirects (when redirects().follow(true) is set).
  • Upgrading kotlin module to use Kotlin 2.2.1
  • Downgrading scale module to version 3.3.3 (LTS version) (thanks for Carlos Eduardo for PR)
Commits
  • bdf64e6 [maven-release-plugin] prepare release rest-assured-5.5.2
  • 1ba0f78 [ci skip] Preparing for release
  • a6dc07a Fixing correct version in scala3 example
  • b29df45 Fixing correct version in scala3 example
  • 03f3088 [ci skiptest] Updated changelog to reflect the latest changes
  • fd468cb Add Scala 3 example. Stick to LTS Scala version (#1795)
  • b316470 Upgrading kotlin module to use Kotlin 2.2.1
  • 30e7a20 CookieFilter now supports setting cookies correctly when Apache HTTP Client d...
  • 044671e [ci skip] Update README.md
  • 2de7586 [maven-release-plugin] prepare for next development iteration
  • See full diff in compare view

Updates org.jetbrains.kotlin:kotlin-stdlib from 2.1.20 to 2.1.21

Release notes

Sourced from org.jetbrains.kotlin:kotlin-stdlib's releases.

Kotlin 2.1.21

Changelog

Backend. Native. Debug

  • KT-75991 Xcode 16.3: Fix lldb stepping test over an inline function

Compiler

  • KT-75992 Xcode 16.3: stacktraces on simulators are not symbolicated
  • KT-76663 KJS: KotlinNothingValueException caused by expression return since 2.1.20
  • KT-75756 Backend Internal error: Exception during IR lowering when trying to access variable from providedProperties in class within kotlin custom script
  • KT-76209 CONFLICTING_UPPER_BOUNDS on Nothing bound
  • KT-70352 K2: False-negative CONFLICTING_UPPER_BOUNDS on Nothing bound
  • KT-74739 Native: "IllegalArgumentException: All constructors should've been lowered: FUNCTION_REFERENCE"
  • KT-75483 Native: redundant unboxing generated with smart cast
  • KT-71425 IR Inliner: investigate return type of an inlined block

Native

  • KT-76252 Native: executable crash with generic value classes with 2.1.20

Native. C and ObjC Import

  • KT-75781 Xcode 16.3: Fix cinterop tests failing with fatal error: could not build module '_stdint'

Native. Runtime. Memory

  • KT-74280 Native: GC.collect crashes with -Xallocator=std

Tools. CLI

  • KT-75588 [2.1.20-RC] "was compiled by a pre-release version of Kotlin and cannot be loaded by this version of the compiler" warnings despite using the same compiler version
  • KT-74663 kotlinc-js CLI: not providing -ir-output-dir results in NullPointerException

Tools. Compiler Plugins

  • KT-76162 "IllegalStateException: No mapping for symbol: VALUE_PARAMETER INSTANCE_RECEIVER" after updating to 2.1.20

Tools. Gradle

  • KT-73682 Compatibility with Gradle 8.12 release
  • KT-73142 Kotlin Gradle plugin: Remove usage of Gradle's internal ExecHandleBuilder
  • KT-36004 Update 'org.gradle.usage' attribute rules to support the 'JAVA_API' and 'JAVA_RUNTIME' value
  • KT-73968 KotlinDependencyManagement tries to mutate configuration after it was resolved
  • KT-73684 Run integration tests against Gradle 8.12
  • KT-72694 Accessing Task.project during execution is being deprecated in Gradle 8.12
  • KT-73683 Compile against Gradle API 8.12

Tools. Gradle. JS

... (truncated)

Changelog

Sourced from org.jetbrains.kotlin:kotlin-stdlib's changelog.

2.1.21

Backend. Native. Debug

  • KT-75991 Xcode 16.3: Fix lldb stepping test over an inline function

Compiler

  • KT-75992 Xcode 16.3: stacktraces on simulators are not symbolicated
  • KT-76663 KJS: KotlinNothingValueException caused by expression return since 2.1.20
  • KT-75756 Backend Internal error: Exception during IR lowering when trying to access variable from providedProperties in class within kotlin custom script
  • KT-76209 CONFLICTING_UPPER_BOUNDS on Nothing bound
  • KT-70352 K2: False-negative CONFLICTING_UPPER_BOUNDS on Nothing bound
  • KT-74739 Native: "IllegalArgumentException: All constructors should've been lowered: FUNCTION_REFERENCE"
  • KT-75483 Native: redundant unboxing generated with smart cast
  • KT-71425 IR Inliner: investigate return type of an inlined block

Native

  • KT-76252 Native: executable crash with generic value classes with 2.1.20

Native. C and ObjC Import

  • KT-75781 Xcode 16.3: Fix cinterop tests failing with fatal error: could not build module '_stdint'

Native. Runtime. Memory

  • KT-74280 Native: GC.collect crashes with -Xallocator=std

Tools. CLI

  • KT-75588 [2.1.20-RC] "was compiled by a pre-release version of Kotlin and cannot be loaded by this version of the compiler" warnings despite using the same compiler version
  • KT-74663 kotlinc-js CLI: not providing -ir-output-dir results in NullPointerException

Tools. Compiler Plugins

  • KT-76162 "IllegalStateException: No mapping for symbol: VALUE_PARAMETER INSTANCE_RECEIVER" after updating to 2.1.20

Tools. Gradle

  • KT-73682 Compatibility with Gradle 8.12 release
  • KT-73142 Kotlin Gradle plugin: Remove usage of Gradle's internal ExecHandleBuilder
  • KT-36004 Update 'org.gradle.usage' attribute rules to support the 'JAVA_API' and 'JAVA_RUNTIME' value
  • KT-73968 KotlinDependencyManagement tries to mutate configuration after it was resolved
  • KT-73684 Run integration tests against Gradle 8.12
  • KT-72694 Accessing Task.project during execution is being deprecated in Gradle 8.12
  • KT-73683 Compile against Gradle API 8.12

Tools. Gradle. JS

... (truncated)

Commits
  • f59375a Add ChangeLog for 2.1.21-RC2
  • 301186f [Gradle] Fix passing process environment when launching KotlinKarma tests
  • 12b4021 Add changelog for 2.1.21-RC
  • e16f5a8 [IC] Update inline function snapshotting
  • 5f12d8b [Cherry-picks] Update BTA specific parts for the release branch
  • f025799 [IC] Additional test cases for inline function snapshotting
  • 58df05e [Tests] More tests for inline fun abi snapshotting
  • 9512893 [KGP] Experimental: support incremental changes in inlined local classes
  • 950cee5 [IC] Additional test cases for inlined lambda snapshotting
  • a0a8ca0 [BTA Tests] Fix changedSources tracking when compilation fail is expected
  • Additional commits viewable in compare view

Updates org.jetbrains.kotlin:kotlin-reflect from 2.1.20 to 2.1.21

Release notes

Sourced from org.jetbrains.kotlin:kotlin-reflect's releases.

Kotlin 2.1.21

Changelog

Backend. Native. Debug

  • KT-75991 Xcode 16.3: Fix lldb stepping test over an inline function

Compiler

  • KT-75992 Xcode 16.3: stacktraces on simulators are not symbolicated
  • KT-76663 KJS: KotlinNothingValueException caused by expression return since 2.1.20
  • KT-75756 Backend Internal error: Exception during IR lowering when trying to access variable from providedProperties in class within kotlin custom script
  • KT-76209 CONFLICTING_UPPER_BOUNDS on Nothing bound
  • KT-70352 K2: False-negative CONFLICTING_UPPER_BOUNDS on Nothing bound
  • KT-74739 Native: "IllegalArgumentException: All constructors should've been lowered: FUNCTION_REFERENCE"
  • KT-75483 Native: redundant unboxing generated with smart cast
  • KT-71425 IR Inliner: investigate return type of an inlined block

Native

  • KT-76252 Native: executable crash with generic value classes with 2.1.20

Native. C and ObjC Import

  • KT-75781 Xcode 16.3: Fix cinterop tests failing with fatal error: could not build module '_stdint'

Native. Runtime. Memory

  • KT-74280 Native: GC.collect crashes with -Xallocator=std

Tools. CLI

  • KT-75588 [2.1.20-RC] "was compiled by a pre-release version of Kotlin and cannot be loaded by this version of the compiler" warnings despite using the same compiler version
  • KT-74663 kotlinc-js CLI: not providing -ir-output-dir results in NullPointerException

Tools. Compiler Plugins

  • KT-76162 "IllegalStateException: No mapping for symbol: VALUE_PARAMETER INSTANCE_RECEIVER" after updating to 2.1.20

Tools. Gradle

  • KT-73682 Compatibility with Gradle 8.12 release
  • KT-73142 Kotlin Gradle plugin: Remove usage of Gradle's internal ExecHandleBuilder
  • KT-36004 Update 'org.gradle.usage' attribute rules to support the 'JAVA_API' and 'JAVA_RUNTIME' value
  • KT-73968 KotlinDependencyManagement tries to mutate configuration after it was resolved
  • KT-73684 Run integration tests against Gradle 8.12
  • KT-72694 Accessing Task.project during execution is being deprecated in Gradle 8.12
  • KT-73683 Compile against Gradle API 8.12

Tools. Gradle. JS

... (truncated)

Changelog

Sourced from org.jetbrains.kotlin:kotlin-reflect's changelog.

2.1.21

Backend. Native. Debug

  • KT-75991 Xcode 16.3: Fix lldb stepping test over an inline function

Compiler

  • KT-75992 Xcode 16.3: stacktraces on simulators are not symbolicated
  • KT-76663 KJS: KotlinNothingValueException caused by expression return since 2.1.20
  • KT-75756 Backend Internal error: Exception during IR lowering when trying to access variable from providedProperties in class within kotlin custom script
  • KT-76209 CONFLICTING_UPPER_BOUNDS on Nothing bound
  • KT-70352 K2: False-negative CONFLICTING_UPPER_BOUNDS on Nothing bound
  • KT-74739 Native: "IllegalArgumentException: All constructors should've been lowered: FUNCTION_REFERENCE"
  • KT-75483 Native: redundant unboxing generated with smart cast
  • KT-71425 IR Inliner: investigate return type of an inlined block

Native

  • KT-76252 Native: executable crash with generic value classes with 2.1.20

Native. C and ObjC Import

  • KT-75781 Xcode 16.3: Fix cinterop tests failing with fatal error: could not build module '_stdint'

Native. Runtime. Memory

  • KT-74280 Native: GC.collect crashes with -Xallocator=std

Tools. CLI

  • KT-75588 [2.1.20-RC] "was compiled by a pre-release version of Kotlin and cannot be loaded by this version of the compiler" warnings despite using the same compiler version
  • KT-74663 kotlinc-js CLI: not providing -ir-output-dir results in NullPointerException

Tools. Compiler Plugins

  • KT-76162 "IllegalStateException: No mapping for symbol: VALUE_PARAMETER INSTANCE_RECEIVER" after updating to 2.1.20

Tools. Gradle

  • KT-73682 Compatibility with Gradle 8.12 release
  • KT-73142 Kotlin Gradle plugin: Remove usage of Gradle's internal ExecHandleBuilder
  • KT-36004 Update 'org.gradle.usage' attribute rules to support the 'JAVA_API' and 'JAVA_RUNTIME' value
  • KT-73968 KotlinDependencyManagement tries to mutate configuration after it was resolved
  • KT-73684 Run integration tests against Gradle 8.12
  • KT-72694 Accessing Task.project during execution is being deprecated in Gradle 8.12
  • KT-73683 Compile against Gradle API 8.12

Tools. Gradle. JS

... (truncated)

Commits
  • f59375a Add ChangeLog for 2.1.21-RC2
  • 301186f [Gradle] Fix passing process environment when launching KotlinKarma tests
  • 12b4021 Add changelog for 2.1.21-RC
  • e16f5a8 [IC] Update inline function snapshotting
  • 5f12d8b [Cherry-picks] Update BTA specific parts for the release branch
  • f025799 [IC] Additional test cases for inline function snapshotting
  • 58df05e [Tests] More tests for inline fun abi snapshotting
  • 9512893 [KGP] Experimental: support incremental changes in inlined local classes
  • 950cee5 [IC] Additional test cases for inlined lambda snapshotting
  • a0a8ca0 [BTA Tests] Fix changedSources tracking when compilation fail is expected
  • Additional commits viewable in compare view

Updates org.jetbrains.kotlin:kotlin-maven-plugin from 2.1.20 to 2.1.21

Updates org.jetbrains.kotlin:kotlin-reflect from 2.1.20 to 2.1.21

Release notes

Sourced from org.jetbrains.kotlin:kotlin-reflect's releases.

Kotlin 2.1.21

Changelog

Backend. Native. Debug

  • KT-75991 Xcode 16.3: Fix lldb stepping test over an inline function

Compiler

  • KT-75992 Xcode 16.3: stacktraces on simulators are not symbolicated
  • KT-76663 KJS: KotlinNothingValueException caused by expression return since 2.1.20
  • KT-75756 Backend Internal error: Exception during IR lowering when trying to access variable from providedProperties in class within kotlin custom script
  • KT-76209 CONFLICTING_UPPER_BOUNDS on Nothing bound
  • KT-70352 K2: False-negative CONFLICTING_UPPER_BOUNDS on Nothing bound
  • KT-74739 Native: "IllegalArgumentException: All constructors should've been lowered: FUNCTION_REFERENCE"
  • KT-75483 Native: redundant unboxing generated with smart cast
  • KT-71425 IR Inliner: investigate return type of an inlined block

Native

  • KT-76252 Native: executable crash with generic value classes with 2.1.20

Native. C and ObjC Import

  • KT-75781 Xcode 16.3: Fix cinterop tests failing with fatal error: could not build module '_stdint'

Native. Runtime. Memory

  • KT-74280 Native: GC.collect crashes with -Xallocator=std

Tools. CLI

  • KT-75588 [2.1.20-RC] "was compiled by a pre-release version of Kotlin and cannot be loaded by this version of the compiler" warnings despite using the same compiler version
  • KT-74663 kotlinc-js CLI: not providing -ir-output-dir results in NullPointerException

Tools. Compiler Plugins

  • KT-76162 "IllegalStateException: No mapping for symbol: VALUE_PARAMETER INSTANCE_RECEIVER" after updating to 2.1.20

Tools. Gradle

  • KT-73682 Compatibility with Gradle 8.12 release
  • KT-73142 Kotlin Gradle plugin: Remove usage of Gradle's internal ExecHandleBuilder
  • KT-36004 Update 'org.gradle.usage' attribute rules to support the 'JAVA_API' and 'JAVA_RUNTIME' value
  • KT-73968 KotlinDependencyManagement tries to mutate configuration after it was resolved
  • KT-73684 Run integration tests against Gradle 8.12
  • KT-72694 Accessing Task.project during execution is being deprecated in Gradle 8.12
  • KT-73683 Compile against Gradle API 8.12

Tools. Gradle. JS

... (truncated)

Changelog

Sourced from org.jetbrains.kotlin:kotlin-reflect's changelog.

2.1.21

Backend. Native. Debug

  • KT-75991 Xcode 16.3: Fix lldb stepping test over an inline function

Compiler

  • KT-75992 Xcode 16.3: stacktraces on simulators are not symbolicated
  • KT-76663 KJS: KotlinNothingValueException caused by expression return since 2.1.20
  • KT-75756 Backend Internal error: Exception during IR lowering when trying to access variable from providedProperties in class within kotlin custom script
  • KT-76209 CONFLICTING_UPPER_BOUNDS on Nothing bound
  • KT-70352 K2: False-negative CONFLICTING_UPPER_BOUNDS on Nothing bound
  • KT-74739 Native: "IllegalArgumentException: All constructors should've been lowered: FUNCTION_REFERENCE"
  • KT-75483 Native: redundant unboxing generated with smart cast
  • KT-71425 IR Inliner: investigate return type of an inlined block

Native

  • KT-76252 Native: executable crash with generic value classes with 2.1.20

Native. C and ObjC Import

  • KT-75781 Xcode 16.3: Fix cinterop tests failing with fatal error: could not build module '_stdint'

Native. Runtime. Memory

  • KT-74280 Native: GC.collect crashes with -Xallocator=std

Tools. CLI

  • KT-75588 [2.1.20-RC] "was compiled by a pre-release version of Kotlin and cannot be loaded by this version of the compiler" warnings despite using the same compiler version
  • KT-74663 kotlinc-js CLI: not providing -ir-output-dir results in NullPointerException

Tools. Compiler Plugins

  • KT-76162 "IllegalStateException: No mapping for symbol: VALUE_PARAMETER INSTANCE_RECEIVER" after updating to 2.1.20

Tools. Gradle

  • KT-73682 Compatibility with Gradle 8.12 release
  • KT-73142 Kotlin Gradle plugin: Remove usage of Gradle's internal ExecHandleBuilder
  • KT-36004 Update 'org.gradle.usage' attribute rules to support the 'JAVA_API' and 'JAVA_RUNTIME' value
  • KT-73968 KotlinDependencyManagement tries to mutate configuration after it was resolved
  • KT-73684 Run integration tests against Gradle 8.12
  • KT-72694 Accessing Task.project during execution is being deprecated in Gradle 8.12
  • KT-73683 Compile against Gradle API 8.12

Tools. Gradle. JS

... (truncated)

Commits
  • f59375a Add ChangeLog for 2.1.21-RC2
  • 301186f [Gradle] Fix passing process environment when launching KotlinKarma tests
  • 12b4021 Add changelog for 2.1.21-RC
  • e16f5a8 [IC] Update inline function snapshotting
  • 5f12d8b [Cherry-picks] Update BTA specific parts for the release branch
  • f025799 [IC] Additional test cases for inline function snapshotting
  • 58df05e [Tests] More tests for inline fun abi snapshotting
  • 9512893 [KGP] Experimental: support incremental changes in inlined local classes
  • 950cee5 [IC] Additional test cases for inlined lambda snapshotting
  • a0a8ca0 [BTA Tests] Fix changedSources tracking when compilation fail is expected
  • Additional commits viewable in compare view

Updates org.jetbrains.kotlin:kotlin-maven-plugin from 2.1.20 to 2.1.21

Updates org.eclipse.jetty.websocket:jetty-websocket-jetty-api from 12.0.20 to 12.0.21

Updates org.eclipse.jetty.websocket:jetty-websocket-jetty-server from 12.0.20 to 12.0.21

Updates org.eclipse.jetty.http2:jetty-http2-server from 12.0.20 to 12.0.21

Updates org.eclipse.jetty:jetty-alpn-java-server from 12.0.20 to 12.0.21

Updates software.amazon.awssdk:bom from 2.31.40 to 2.31.45

Updates org.jline:jline from 3.30.0 to 3.30.1

Release notes

Sourced from org.jline:jline's releases.

JLine 3.30.1

[maven-release-plugin] copy for tag jline-3.30.1

Commits
  • 8976af9 [maven-release-plugin] prepare release jline-3.30.1
  • 117acaf Fix release process
  • 7bc3dd1 Use Njord (#1273)
  • bfdcd72 docs: correct PicocliJLineExample snippet name in library-integration.md (#1271)
  • 281081f docs: validate code snippets during build time instead of runtime (#1272)
  • 2cd30a7 docs: add missing @​since 3.30.0 annotations to new methods in Terminal (#1270)
  • db37cee chore: Improve build scripts and demo integration (#1269)
  • 70e7cb6 docs: Fix website deployment
  • b5f4912 docs: integrate GitHub wiki content into website documentation (#1262)
  • 3501fad docs: Improve website build system and documentation management (#1268)
  • Additional commits viewable in compare view

Updates org.jline:jline-terminal-jna from 3.30.0 to 3.30.1

Release notes

Sourced from org.jline:jline-terminal-jna's releases.

JLine 3.30.1

[maven-release-plugin] copy for tag jline-3.30.1

Commits
  • 8976af9 [maven-release-plugin] prepare release jline-3.30.1
  • 117acaf Fix release process
  • 7bc3dd1 Use Njord (#1273)
  • bfdcd72 docs: correct PicocliJLineExample snippet name in library-integration.md (#1271)
  • 281081f docs: validate code snippets during build time instead of runtime (#1272)
  • 2cd30a7 docs: add missing @​since 3.30.0 annotations to new methods in Terminal (#1270)
  • db37cee chore: Improve build scripts and demo integration (#1269)
  • 70e7cb6 docs: Fix website deployment
  • b5f4912 docs: integrate GitHub wiki content into website documentation (#1262)
  • 3501fad docs: Improve website build system and documentation management (#1268)
  • Additional commits viewable in compare view

Updates org.jline:jline-terminal-jna from 3.30.0 to 3.30.1

Release notes

Sourced from org.jline:jline-terminal-jna's releases.

JLine 3.30.1

[maven-release-plugin] copy for tag jline-3.30.1

Commits
  • 8976af9 [maven-release-plugin] prepare release jline-3.30.1
  • 117acaf Fix release process
  • 7bc3dd1 Use Njord (#1273)
  • bfdcd72 docs: correct PicocliJLineExample snippet name in library-integration.md (#1271)
  • 281081f docs: validate code snippets during build time instead of runtime (#1272)
  • 2cd30a7 docs: add missing @​since 3.30.0 annotations to new methods in Terminal (#1270)
  • db37cee chore: Improve build scripts and demo integration (#1269)
  • 70e7cb6 docs: Fix website deployment
  • b5f4912 docs: integrate GitHub wiki content into website documentation (#1262)
  • 3501fad docs: Improve website build system and documentation management (#1268)
  • Additional commits viewable in compare view

Updates io.projectreactor:reactor-core from 3.7.5 to 3.7.6

Release notes

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

v3.7.6

Reactor Core 3.7.6 is part of 2024.0.6 Release Train.

What's Changed

✨ New features and improvements

Full Changelog: reactor/reactor-core@v3.7.5...v3.7.6

Commits
  • 90909e5 [release] Prepare and release 3.7.6
  • bca63aa Merge-ignore release 3.6.17 into 3.7.6
  • 264d689 [release] Next development version 3.6.18-SNAPSHOT...

    Description has been truncated

Bumps the dependencies group with 21 updates:

| Package | From | To |
| --- | --- | --- |
| io.swagger.core.v3:swagger-annotations | `2.2.30` | `2.2.32` |
| io.swagger.core.v3:swagger-models | `2.2.30` | `2.2.32` |
| [io.swagger.parser.v3:swagger-parser](https://github.com/swagger-api/swagger-parser) | `2.1.27` | `2.1.28` |
| [com.graphql-java:graphql-java](https://github.com/graphql-java/graphql-java) | `23.1` | `24.0` |
| [org.hibernate.orm:hibernate-core](https://github.com/hibernate/hibernate-orm) | `6.6.14.Final` | `6.6.15.Final` |
| [org.jdbi:jdbi3-core](https://github.com/jdbi/jdbi) | `3.49.3` | `3.49.4` |
| org.eclipse.jetty:jetty-server | `12.0.20` | `12.0.21` |
| org.eclipse.jetty.websocket:jetty-websocket-core-server | `12.0.20` | `12.0.21` |
| org.eclipse.jetty.websocket:jetty-websocket-jetty-api | `12.0.20` | `12.0.21` |
| org.eclipse.jetty.websocket:jetty-websocket-jetty-server | `12.0.20` | `12.0.21` |
| org.eclipse.jetty.http2:jetty-http2-server | `12.0.20` | `12.0.21` |
| org.eclipse.jetty:jetty-alpn-java-server | `12.0.20` | `12.0.21` |
| org.eclipse.jetty.http2:jetty-http2-client | `12.0.20` | `12.0.21` |
| [io.rest-assured:rest-assured](https://github.com/rest-assured/rest-assured) | `5.5.1` | `5.5.2` |
| [org.jetbrains.kotlin:kotlin-stdlib](https://github.com/JetBrains/kotlin) | `2.1.20` | `2.1.21` |
| [org.jetbrains.kotlin:kotlin-reflect](https://github.com/JetBrains/kotlin) | `2.1.20` | `2.1.21` |
| org.jetbrains.kotlin:kotlin-maven-plugin | `2.1.20` | `2.1.21` |
| software.amazon.awssdk:bom | `2.31.40` | `2.31.45` |
| [org.jline:jline](https://github.com/jline/jline3) | `3.30.0` | `3.30.1` |
| [org.jline:jline-terminal-jna](https://github.com/jline/jline3) | `3.30.0` | `3.30.1` |
| [io.projectreactor:reactor-core](https://github.com/reactor/reactor-core) | `3.7.5` | `3.7.6` |


Updates `io.swagger.core.v3:swagger-annotations` from 2.2.30 to 2.2.32

Updates `io.swagger.core.v3:swagger-models` from 2.2.30 to 2.2.32

Updates `io.swagger.core.v3:swagger-models` from 2.2.30 to 2.2.32

Updates `io.swagger.parser.v3:swagger-parser` from 2.1.27 to 2.1.28
- [Release notes](https://github.com/swagger-api/swagger-parser/releases)
- [Commits](swagger-api/swagger-parser@v2.1.27...v2.1.28)

Updates `com.graphql-java:graphql-java` from 23.1 to 24.0
- [Release notes](https://github.com/graphql-java/graphql-java/releases)
- [Commits](graphql-java/graphql-java@v23.1...v24.0)

Updates `org.hibernate.orm:hibernate-core` from 6.6.14.Final to 6.6.15.Final
- [Release notes](https://github.com/hibernate/hibernate-orm/releases)
- [Changelog](https://github.com/hibernate/hibernate-orm/blob/6.6.15/changelog.txt)
- [Commits](hibernate/hibernate-orm@6.6.14...6.6.15)

Updates `org.jdbi:jdbi3-core` from 3.49.3 to 3.49.4
- [Release notes](https://github.com/jdbi/jdbi/releases)
- [Changelog](https://github.com/jdbi/jdbi/blob/master/RELEASE_NOTES.md)
- [Commits](jdbi/jdbi@v3.49.3...v3.49.4)

Updates `org.eclipse.jetty:jetty-server` from 12.0.20 to 12.0.21

Updates `org.eclipse.jetty.websocket:jetty-websocket-core-server` from 12.0.20 to 12.0.21

Updates `org.eclipse.jetty.websocket:jetty-websocket-jetty-api` from 12.0.20 to 12.0.21

Updates `org.eclipse.jetty.websocket:jetty-websocket-jetty-server` from 12.0.20 to 12.0.21

Updates `org.eclipse.jetty.http2:jetty-http2-server` from 12.0.20 to 12.0.21

Updates `org.eclipse.jetty:jetty-alpn-java-server` from 12.0.20 to 12.0.21

Updates `org.eclipse.jetty.http2:jetty-http2-client` from 12.0.20 to 12.0.21

Updates `org.eclipse.jetty.websocket:jetty-websocket-core-server` from 12.0.20 to 12.0.21

Updates `io.rest-assured:rest-assured` from 5.5.1 to 5.5.2
- [Changelog](https://github.com/rest-assured/rest-assured/blob/master/changelog.txt)
- [Commits](rest-assured/rest-assured@rest-assured-5.5.1...rest-assured-5.5.2)

Updates `org.jetbrains.kotlin:kotlin-stdlib` from 2.1.20 to 2.1.21
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v2.1.20...v2.1.21)

Updates `org.jetbrains.kotlin:kotlin-reflect` from 2.1.20 to 2.1.21
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v2.1.20...v2.1.21)

Updates `org.jetbrains.kotlin:kotlin-maven-plugin` from 2.1.20 to 2.1.21

Updates `org.jetbrains.kotlin:kotlin-reflect` from 2.1.20 to 2.1.21
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v2.1.20...v2.1.21)

Updates `org.jetbrains.kotlin:kotlin-maven-plugin` from 2.1.20 to 2.1.21

Updates `org.eclipse.jetty.websocket:jetty-websocket-jetty-api` from 12.0.20 to 12.0.21

Updates `org.eclipse.jetty.websocket:jetty-websocket-jetty-server` from 12.0.20 to 12.0.21

Updates `org.eclipse.jetty.http2:jetty-http2-server` from 12.0.20 to 12.0.21

Updates `org.eclipse.jetty:jetty-alpn-java-server` from 12.0.20 to 12.0.21

Updates `software.amazon.awssdk:bom` from 2.31.40 to 2.31.45

Updates `org.jline:jline` from 3.30.0 to 3.30.1
- [Release notes](https://github.com/jline/jline3/releases)
- [Commits](jline/jline3@jline-3.30.0...jline-3.30.1)

Updates `org.jline:jline-terminal-jna` from 3.30.0 to 3.30.1
- [Release notes](https://github.com/jline/jline3/releases)
- [Commits](jline/jline3@jline-3.30.0...jline-3.30.1)

Updates `org.jline:jline-terminal-jna` from 3.30.0 to 3.30.1
- [Release notes](https://github.com/jline/jline3/releases)
- [Commits](jline/jline3@jline-3.30.0...jline-3.30.1)

Updates `io.projectreactor:reactor-core` from 3.7.5 to 3.7.6
- [Release notes](https://github.com/reactor/reactor-core/releases)
- [Commits](reactor/reactor-core@v3.7.5...v3.7.6)

Updates `org.eclipse.jetty.http2:jetty-http2-client` from 12.0.20 to 12.0.21

---
updated-dependencies:
- dependency-name: io.swagger.core.v3:swagger-annotations
  dependency-version: 2.2.32
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.swagger.core.v3:swagger-models
  dependency-version: 2.2.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.swagger.core.v3:swagger-models
  dependency-version: 2.2.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.swagger.parser.v3:swagger-parser
  dependency-version: 2.1.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.graphql-java:graphql-java
  dependency-version: '24.0'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: org.hibernate.orm:hibernate-core
  dependency-version: 6.6.15.Final
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jdbi:jdbi3-core
  dependency-version: 3.49.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.eclipse.jetty:jetty-server
  dependency-version: 12.0.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.eclipse.jetty.websocket:jetty-websocket-core-server
  dependency-version: 12.0.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.eclipse.jetty.websocket:jetty-websocket-jetty-api
  dependency-version: 12.0.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.eclipse.jetty.websocket:jetty-websocket-jetty-server
  dependency-version: 12.0.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.eclipse.jetty.http2:jetty-http2-server
  dependency-version: 12.0.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.eclipse.jetty:jetty-alpn-java-server
  dependency-version: 12.0.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.eclipse.jetty.http2:jetty-http2-client
  dependency-version: 12.0.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.eclipse.jetty.websocket:jetty-websocket-core-server
  dependency-version: 12.0.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.rest-assured:rest-assured
  dependency-version: 5.5.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jetbrains.kotlin:kotlin-stdlib
  dependency-version: 2.1.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jetbrains.kotlin:kotlin-reflect
  dependency-version: 2.1.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jetbrains.kotlin:kotlin-maven-plugin
  dependency-version: 2.1.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jetbrains.kotlin:kotlin-reflect
  dependency-version: 2.1.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jetbrains.kotlin:kotlin-maven-plugin
  dependency-version: 2.1.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.eclipse.jetty.websocket:jetty-websocket-jetty-api
  dependency-version: 12.0.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.eclipse.jetty.websocket:jetty-websocket-jetty-server
  dependency-version: 12.0.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.eclipse.jetty.http2:jetty-http2-server
  dependency-version: 12.0.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.eclipse.jetty:jetty-alpn-java-server
  dependency-version: 12.0.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: software.amazon.awssdk:bom
  dependency-version: 2.31.45
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jline:jline
  dependency-version: 3.30.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jline:jline-terminal-jna
  dependency-version: 3.30.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jline:jline-terminal-jna
  dependency-version: 3.30.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.projectreactor:reactor-core
  dependency-version: 3.7.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.eclipse.jetty.http2:jetty-http2-client
  dependency-version: 12.0.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels May 19, 2025
@jknack jknack added this to the 3.9.0 milestone May 19, 2025
@jknack jknack merged commit 00a0657 into 3.x May 19, 2025
5 checks passed
@dependabot dependabot bot deleted the dependabot/maven/dependencies-2057a9fc3f branch May 19, 2025 09:34
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.

2 participants