build(deps): bump the dependencies group with 21 updates
Type: Pull Request
State: Merged
Association: Contributor
Comments: 0
(about 1 year ago)
(about 1 year ago)
(about 1 year ago)
by jknack
dependencies java
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!
Commits
60dca14Fix project URL in POM78932edfix mvn command in release.ymlb63e4a5prepare release 2.1.28b6075c4Fix GH Workflow missing commab7c68fdupdate dependencies87f3e66chore: migrate Sonatype OSSRH to Central Portalaf2d7e8Addf74a954Merge pull request #2180 from swagger-api/bump-snap-2.1.28-SNAPSHOT00e6143bump snapshot 2.1.28-SNAPSHOT- See full diff in compare view
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
DataLoaderOptionsclass, which was a good thing.However it left the old mutative
setXXXmethods in place and made them immutable. This was a mistake. This leads to bugs at runtime for exampleDataLoaderOptions 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
setXXXmethods and requires theBuildermethods 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
- 24.x Cherry pick JSpecify OSGI config by
@dondonzin graphql-java/graphql-java#3960- 24.x Backport of avoid wrapping materialised value by
@dondonzin graphql-java/graphql-java#3962- Upgrade to DataLoader 5.0.0 by
@dondonzin graphql-java/graphql-java#3961- Cherry pick DataFetcherResult helpers by
@dondonzin graphql-java/graphql-java#3965- Cherry pick PR 3942 To add singleton to factory method by
@dondonzin graphql-java/graphql-java#3968- Cherry pick PR 3935 by
@dondonzin graphql-java/graphql-java#3969- Cherry pick 3934 for execution step info builder changes by
@dondonzin graphql-java/graphql-java#3970- Cherry pick 3932 to remove streams from FPKit by
@dondonzin graphql-java/graphql-java#3971- Cherry pick 3931 imperative filters by
@dondonzin graphql-java/graphql-java#3972- Cherry pick 3930 remove optional streams by
@dondonzin graphql-java/graphql-java#3973- Cherry pick PR 3929 reduce nonnullablefieldvalidator allocations by
@dondonzin graphql-java/graphql-java#3974Full Changelog: https://github.com/graphql-java/graphql-java/compare/v23.1...v24.0
Commits
cab5b9fMerge pull request #3974 from graphql-java/Cherry-pick-3929-dont-allocate-non...861050aMerge pull request #3973 from graphql-java/Cherry-pick-3930-remove-optional-s...f8858eaMerge pull request #3972 from graphql-java/Cherry-pick-3931-imperative-filter...fbb0fd1Cherry pick PR 3929 reduce nonnullablefieldvalidator allocations697298eCherry pick 3930 remove optional streams306c66aMerge pull request #3971 from graphql-java/Cherry-pick-3932-remove-streams-fr...53a5215Merge pull request #3970 from graphql-java/Cherry-pick-3934-execution-step-in...fb68283Cherry pick 3931 imperative filterse20dad9Merge pull request #3969 from graphql-java/Cherry-pick-3935-skip-builder-on-esp5676eb9Merge 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:
- the release page
- the Migration Guide
- the Introduction Guide
- the User Guide
See also the following resources related to supported APIs:
- the compatibility policy
- the incubating API report (
@Incubating)- the deprecated API report (
@Deprecated+@Remove)- the internal API report (internal packages,
@Internal)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
fd28d90Pre-steps for release :6.6.15.Finalf2d0dedavoid use of BootstrapServiceRegistryBuilder in MockSessionFactory29a7148HHH-19341 Move publication repositories configuration to a more common gradle...c69567bPost-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.497fa1eaadd 3.49.4 release3e95ac5Kotlin value class supportaef9353Make kotlin to java type conversion resilient6f74099Value type support for mappers and argumentsbc336acadd toString methods to mappers and argumentsbb8674eclean up kotlin tests to use the right pluginsaff79f6Merge pull request #2802 from hgschmie/central-fixup5ef2271fix snapshot repo ref88f62e1Merge 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.21ba0f78[ci skip] Preparing for releasea6dc07aFixing correct version in scala3 exampleb29df45Fixing correct version in scala3 example03f3088[ci skiptest] Updated changelog to reflect the latest changesfd468cbAdd Scala 3 example. Stick to LTS Scala version (#1795)b316470Upgrading kotlin module to use Kotlin 2.2.130e7a20CookieFilter now supports setting cookies correctly when Apache HTTP Client d...044671e[ci skip] Update README.md2de7586[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-75991Xcode 16.3: Fix lldb stepping test over an inline functionCompiler
KT-75992Xcode 16.3: stacktraces on simulators are not symbolicatedKT-76663KJS: KotlinNothingValueException caused by expression return since 2.1.20KT-75756Backend Internal error: Exception during IR lowering when trying to access variable from providedProperties in class within kotlin custom scriptKT-76209CONFLICTING_UPPER_BOUNDS onNothingboundKT-70352K2: False-negative CONFLICTING_UPPER_BOUNDS onNothingboundKT-74739Native: "IllegalArgumentException: All constructors should've been lowered: FUNCTION_REFERENCE"KT-75483Native: redundant unboxing generated with smart castKT-71425IR Inliner: investigate return type of an inlined blockNative
KT-76252Native: executable crash with generic value classes with 2.1.20Native. C and ObjC Import
KT-75781Xcode 16.3: Fix cinterop tests failing with fatal error: could not build module '_stdint'Native. Runtime. Memory
KT-74280Native: GC.collect crashes with -Xallocator=stdTools. 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 versionKT-74663kotlinc-js CLI: not providing -ir-output-dir results in NullPointerExceptionTools. Compiler Plugins
KT-76162"IllegalStateException: No mapping for symbol: VALUE_PARAMETER INSTANCE_RECEIVER" after updating to 2.1.20Tools. Gradle
KT-73682Compatibility with Gradle 8.12 releaseKT-73142Kotlin Gradle plugin: Remove usage of Gradle's internal ExecHandleBuilderKT-36004Update 'org.gradle.usage' attribute rules to support the 'JAVA_API' and 'JAVA_RUNTIME' valueKT-73968KotlinDependencyManagement tries to mutate configuration after it was resolvedKT-73684Run integration tests against Gradle 8.12KT-72694Accessing Task.project during execution is being deprecated in Gradle 8.12KT-73683Compile against Gradle API 8.12Tools. Gradle. JS
... (truncated)
Changelog
Sourced from org.jetbrains.kotlin:kotlin-stdlib's changelog.
2.1.21
Backend. Native. Debug
KT-75991Xcode 16.3: Fix lldb stepping test over an inline functionCompiler
KT-75992Xcode 16.3: stacktraces on simulators are not symbolicatedKT-76663KJS: KotlinNothingValueException caused by expression return since 2.1.20KT-75756Backend Internal error: Exception during IR lowering when trying to access variable from providedProperties in class within kotlin custom scriptKT-76209CONFLICTING_UPPER_BOUNDS onNothingboundKT-70352K2: False-negative CONFLICTING_UPPER_BOUNDS onNothingboundKT-74739Native: "IllegalArgumentException: All constructors should've been lowered: FUNCTION_REFERENCE"KT-75483Native: redundant unboxing generated with smart castKT-71425IR Inliner: investigate return type of an inlined blockNative
KT-76252Native: executable crash with generic value classes with 2.1.20Native. C and ObjC Import
KT-75781Xcode 16.3: Fix cinterop tests failing with fatal error: could not build module '_stdint'Native. Runtime. Memory
KT-74280Native: GC.collect crashes with -Xallocator=stdTools. 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 versionKT-74663kotlinc-js CLI: not providing -ir-output-dir results in NullPointerExceptionTools. Compiler Plugins
KT-76162"IllegalStateException: No mapping for symbol: VALUE_PARAMETER INSTANCE_RECEIVER" after updating to 2.1.20Tools. Gradle
KT-73682Compatibility with Gradle 8.12 releaseKT-73142Kotlin Gradle plugin: Remove usage of Gradle's internal ExecHandleBuilderKT-36004Update 'org.gradle.usage' attribute rules to support the 'JAVA_API' and 'JAVA_RUNTIME' valueKT-73968KotlinDependencyManagement tries to mutate configuration after it was resolvedKT-73684Run integration tests against Gradle 8.12KT-72694Accessing Task.project during execution is being deprecated in Gradle 8.12KT-73683Compile against Gradle API 8.12Tools. Gradle. JS
... (truncated)
Commits
f59375aAdd ChangeLog for 2.1.21-RC2301186f[Gradle] Fix passing process environment when launching KotlinKarma tests12b4021Add changelog for 2.1.21-RCe16f5a8[IC] Update inline function snapshotting5f12d8b[Cherry-picks] Update BTA specific parts for the release branchf025799[IC] Additional test cases for inline function snapshotting58df05e[Tests] More tests for inline fun abi snapshotting9512893[KGP] Experimental: support incremental changes in inlined local classes950cee5[IC] Additional test cases for inlined lambda snapshottinga0a8ca0[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-75991Xcode 16.3: Fix lldb stepping test over an inline functionCompiler
KT-75992Xcode 16.3: stacktraces on simulators are not symbolicatedKT-76663KJS: KotlinNothingValueException caused by expression return since 2.1.20KT-75756Backend Internal error: Exception during IR lowering when trying to access variable from providedProperties in class within kotlin custom scriptKT-76209CONFLICTING_UPPER_BOUNDS onNothingboundKT-70352K2: False-negative CONFLICTING_UPPER_BOUNDS onNothingboundKT-74739Native: "IllegalArgumentException: All constructors should've been lowered: FUNCTION_REFERENCE"KT-75483Native: redundant unboxing generated with smart castKT-71425IR Inliner: investigate return type of an inlined blockNative
KT-76252Native: executable crash with generic value classes with 2.1.20Native. C and ObjC Import
KT-75781Xcode 16.3: Fix cinterop tests failing with fatal error: could not build module '_stdint'Native. Runtime. Memory
KT-74280Native: GC.collect crashes with -Xallocator=stdTools. 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 versionKT-74663kotlinc-js CLI: not providing -ir-output-dir results in NullPointerExceptionTools. Compiler Plugins
KT-76162"IllegalStateException: No mapping for symbol: VALUE_PARAMETER INSTANCE_RECEIVER" after updating to 2.1.20Tools. Gradle
KT-73682Compatibility with Gradle 8.12 releaseKT-73142Kotlin Gradle plugin: Remove usage of Gradle's internal ExecHandleBuilderKT-36004Update 'org.gradle.usage' attribute rules to support the 'JAVA_API' and 'JAVA_RUNTIME' valueKT-73968KotlinDependencyManagement tries to mutate configuration after it was resolvedKT-73684Run integration tests against Gradle 8.12KT-72694Accessing Task.project during execution is being deprecated in Gradle 8.12KT-73683Compile against Gradle API 8.12Tools. Gradle. JS
... (truncated)
Changelog
Sourced from org.jetbrains.kotlin:kotlin-reflect's changelog.
2.1.21
Backend. Native. Debug
KT-75991Xcode 16.3: Fix lldb stepping test over an inline functionCompiler
KT-75992Xcode 16.3: stacktraces on simulators are not symbolicatedKT-76663KJS: KotlinNothingValueException caused by expression return since 2.1.20KT-75756Backend Internal error: Exception during IR lowering when trying to access variable from providedProperties in class within kotlin custom scriptKT-76209CONFLICTING_UPPER_BOUNDS onNothingboundKT-70352K2: False-negative CONFLICTING_UPPER_BOUNDS onNothingboundKT-74739Native: "IllegalArgumentException: All constructors should've been lowered: FUNCTION_REFERENCE"KT-75483Native: redundant unboxing generated with smart castKT-71425IR Inliner: investigate return type of an inlined blockNative
KT-76252Native: executable crash with generic value classes with 2.1.20Native. C and ObjC Import
KT-75781Xcode 16.3: Fix cinterop tests failing with fatal error: could not build module '_stdint'Native. Runtime. Memory
KT-74280Native: GC.collect crashes with -Xallocator=stdTools. 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 versionKT-74663kotlinc-js CLI: not providing -ir-output-dir results in NullPointerExceptionTools. Compiler Plugins
KT-76162"IllegalStateException: No mapping for symbol: VALUE_PARAMETER INSTANCE_RECEIVER" after updating to 2.1.20Tools. Gradle
KT-73682Compatibility with Gradle 8.12 releaseKT-73142Kotlin Gradle plugin: Remove usage of Gradle's internal ExecHandleBuilderKT-36004Update 'org.gradle.usage' attribute rules to support the 'JAVA_API' and 'JAVA_RUNTIME' valueKT-73968KotlinDependencyManagement tries to mutate configuration after it was resolvedKT-73684Run integration tests against Gradle 8.12KT-72694Accessing Task.project during execution is being deprecated in Gradle 8.12KT-73683Compile against Gradle API 8.12Tools. Gradle. JS
... (truncated)
Commits
f59375aAdd ChangeLog for 2.1.21-RC2301186f[Gradle] Fix passing process environment when launching KotlinKarma tests12b4021Add changelog for 2.1.21-RCe16f5a8[IC] Update inline function snapshotting5f12d8b[Cherry-picks] Update BTA specific parts for the release branchf025799[IC] Additional test cases for inline function snapshotting58df05e[Tests] More tests for inline fun abi snapshotting9512893[KGP] Experimental: support incremental changes in inlined local classes950cee5[IC] Additional test cases for inlined lambda snapshottinga0a8ca0[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-75991Xcode 16.3: Fix lldb stepping test over an inline functionCompiler
KT-75992Xcode 16.3: stacktraces on simulators are not symbolicatedKT-76663KJS: KotlinNothingValueException caused by expression return since 2.1.20KT-75756Backend Internal error: Exception during IR lowering when trying to access variable from providedProperties in class within kotlin custom scriptKT-76209CONFLICTING_UPPER_BOUNDS onNothingboundKT-70352K2: False-negative CONFLICTING_UPPER_BOUNDS onNothingboundKT-74739Native: "IllegalArgumentException: All constructors should've been lowered: FUNCTION_REFERENCE"KT-75483Native: redundant unboxing generated with smart castKT-71425IR Inliner: investigate return type of an inlined blockNative
KT-76252Native: executable crash with generic value classes with 2.1.20Native. C and ObjC Import
KT-75781Xcode 16.3: Fix cinterop tests failing with fatal error: could not build module '_stdint'Native. Runtime. Memory
KT-74280Native: GC.collect crashes with -Xallocator=stdTools. 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 versionKT-74663kotlinc-js CLI: not providing -ir-output-dir results in NullPointerExceptionTools. Compiler Plugins
KT-76162"IllegalStateException: No mapping for symbol: VALUE_PARAMETER INSTANCE_RECEIVER" after updating to 2.1.20Tools. Gradle
KT-73682Compatibility with Gradle 8.12 releaseKT-73142Kotlin Gradle plugin: Remove usage of Gradle's internal ExecHandleBuilderKT-36004Update 'org.gradle.usage' attribute rules to support the 'JAVA_API' and 'JAVA_RUNTIME' valueKT-73968KotlinDependencyManagement tries to mutate configuration after it was resolvedKT-73684Run integration tests against Gradle 8.12KT-72694Accessing Task.project during execution is being deprecated in Gradle 8.12KT-73683Compile against Gradle API 8.12Tools. Gradle. JS
... (truncated)
Changelog
Sourced from org.jetbrains.kotlin:kotlin-reflect's changelog.
2.1.21
Backend. Native. Debug
KT-75991Xcode 16.3: Fix lldb stepping test over an inline functionCompiler
KT-75992Xcode 16.3: stacktraces on simulators are not symbolicatedKT-76663KJS: KotlinNothingValueException caused by expression return since 2.1.20KT-75756Backend Internal error: Exception during IR lowering when trying to access variable from providedProperties in class within kotlin custom scriptKT-76209CONFLICTING_UPPER_BOUNDS onNothingboundKT-70352K2: False-negative CONFLICTING_UPPER_BOUNDS onNothingboundKT-74739Native: "IllegalArgumentException: All constructors should've been lowered: FUNCTION_REFERENCE"KT-75483Native: redundant unboxing generated with smart castKT-71425IR Inliner: investigate return type of an inlined blockNative
KT-76252Native: executable crash with generic value classes with 2.1.20Native. C and ObjC Import
KT-75781Xcode 16.3: Fix cinterop tests failing with fatal error: could not build module '_stdint'Native. Runtime. Memory
KT-74280Native: GC.collect crashes with -Xallocator=stdTools. 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 versionKT-74663kotlinc-js CLI: not providing -ir-output-dir results in NullPointerExceptionTools. Compiler Plugins
KT-76162"IllegalStateException: No mapping for symbol: VALUE_PARAMETER INSTANCE_RECEIVER" after updating to 2.1.20Tools. Gradle
KT-73682Compatibility with Gradle 8.12 releaseKT-73142Kotlin Gradle plugin: Remove usage of Gradle's internal ExecHandleBuilderKT-36004Update 'org.gradle.usage' attribute rules to support the 'JAVA_API' and 'JAVA_RUNTIME' valueKT-73968KotlinDependencyManagement tries to mutate configuration after it was resolvedKT-73684Run integration tests against Gradle 8.12KT-72694Accessing Task.project during execution is being deprecated in Gradle 8.12KT-73683Compile against Gradle API 8.12Tools. Gradle. JS
... (truncated)
Commits
f59375aAdd ChangeLog for 2.1.21-RC2301186f[Gradle] Fix passing process environment when launching KotlinKarma tests12b4021Add changelog for 2.1.21-RCe16f5a8[IC] Update inline function snapshotting5f12d8b[Cherry-picks] Update BTA specific parts for the release branchf025799[IC] Additional test cases for inline function snapshotting58df05e[Tests] More tests for inline fun abi snapshotting9512893[KGP] Experimental: support incremental changes in inlined local classes950cee5[IC] Additional test cases for inlined lambda snapshottinga0a8ca0[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.1117acafFix release process7bc3dd1Use Njord (#1273)bfdcd72docs: correct PicocliJLineExample snippet name in library-integration.md (#1271)281081fdocs: validate code snippets during build time instead of runtime (#1272)2cd30a7docs: add missing@since3.30.0 annotations to new methods in Terminal (#1270)db37ceechore: Improve build scripts and demo integration (#1269)70e7cb6docs: Fix website deploymentb5f4912docs: integrate GitHub wiki content into website documentation (#1262)3501faddocs: 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.1117acafFix release process7bc3dd1Use Njord (#1273)bfdcd72docs: correct PicocliJLineExample snippet name in library-integration.md (#1271)281081fdocs: validate code snippets during build time instead of runtime (#1272)2cd30a7docs: add missing@since3.30.0 annotations to new methods in Terminal (#1270)db37ceechore: Improve build scripts and demo integration (#1269)70e7cb6docs: Fix website deploymentb5f4912docs: integrate GitHub wiki content into website documentation (#1262)3501faddocs: 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.1117acafFix release process7bc3dd1Use Njord (#1273)bfdcd72docs: correct PicocliJLineExample snippet name in library-integration.md (#1271)281081fdocs: validate code snippets during build time instead of runtime (#1272)2cd30a7docs: add missing@since3.30.0 annotations to new methods in Terminal (#1270)db37ceechore: Improve build scripts and demo integration (#1269)70e7cb6docs: Fix website deploymentb5f4912docs: integrate GitHub wiki content into website documentation (#1262)3501faddocs: 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 Core3.7.6is part of2024.0.6Release Train.What's Changed
:sparkles: New features and improvements
- Bump byteBuddyVersion from 1.17.2 to 1.17.5 by
@dependabotin reactor/reactor-core#4018- Depend on
Micrometer1.14.7by@chemicLin 90909e5010215daca84433d5679eb7705276c3d7- Depend on
Micrometer Tracing1.4.6by@chemicLin 90909e5010215daca84433d5679eb7705276c3d7Full Changelog: https://github.com/reactor/reactor-core/compare/v3.7.5...v3.7.6
Pull Request Statistics
1
4
+11
-11
Package Dependencies
software.amazon.awssdk:bom
maven
2.31.40 → 2.31.45
Patch
io.rest-assured:rest-assured
maven
5.5.1 → 5.5.2
Patch
org.eclipse.jetty:jetty-server
maven
12.0.20 → 12.0.21
Patch
org.jetbrains.kotlin:kotlin-stdlib
maven
2.1.20 → 2.1.21
Patch
org.jetbrains.kotlin:kotlin-reflect
maven
2.1.20 → 2.1.21
Patch
maven
2.2.30 → 2.2.32
Patch
io.swagger.parser.v3:swagger-parser
maven
2.1.27 → 2.1.28
Patch
org.hibernate.orm:hibernate-core
maven
6.6.14.Final → 6.6.15.Final
Patch
maven
2.1.20 → 2.1.21
Patch
org.jline:jline-terminal-jna
maven
3.30.0 → 3.30.1
Patch
io.projectreactor:reactor-core
maven
3.7.5 → 3.7.6
Patch
io.swagger.core.v3:swagger-models
maven
2.2.30 → 2.2.32
Patch
maven
12.0.20 → 12.0.21
Patch
maven
12.0.20 → 12.0.21
Patch
maven
12.0.20 → 12.0.21
Patch
maven
12.0.20 → 12.0.21
Patch
maven
12.0.20 → 12.0.21
Patch
maven
12.0.20 → 12.0.21
Patch
Technical Details
| ID: | 1055888 |
| UUID: | 2527286123 |
| Node ID: | PR_kwDOAYRJs86Wo1Nr |
| Host: | GitHub |
| Repository: | jooby-project/jooby |
| Merge State: | Unknown |