Skip to content

Update all dependencies#7

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all
Open

Update all dependencies#7
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 18, 2023

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
org.codehaus.mojo:exec-maven-plugin (source) 3.6.13.6.3 age confidence
org.apache.maven.plugins:maven-shade-plugin (source) 3.6.13.6.2 age confidence
org.apache.maven.plugins:maven-compiler-plugin (source) 3.14.13.15.0 age confidence
io.kotest:kotest-assertions-core-jvm 6.0.36.1.7 age confidence
io.kotest:kotest-runner-junit5-jvm 6.0.36.1.7 age confidence
org.jetbrains.kotlinx:kotlinx-serialization-json 1.9.01.10.0 age confidence
org.jetbrains.kotlin:kotlin-maven-serialization (source) 2.2.212.3.20 age confidence
org.jetbrains.kotlin:kotlin-maven-plugin (source) 2.2.212.3.20 age confidence
org.jetbrains.kotlin:kotlin-reflect (source) 2.2.212.3.20 age confidence
org.jetbrains.kotlin:kotlin-stdlib (source) 2.2.212.3.20 age confidence

Release Notes

mojohaus/exec-maven-plugin (org.codehaus.mojo:exec-maven-plugin)

v3.6.3

Compare Source

📝 Documentation updates

👻 Maintenance

📦 Dependency updates

v3.6.2

Compare Source

🚀 New features and improvements

📦 Dependency updates

kotest/kotest (io.kotest:kotest-assertions-core-jvm)

v6.1.7

Compare Source

v6.1.6

Compare Source

v6.1.5

Compare Source

What's Changed

Full Changelog: kotest/kotest@v6.1.4...v6.1.5

v6.1.4

Compare Source

v6.1.3

Compare Source

What's Changed
New Contributors

Full Changelog: kotest/kotest@v6.1.2...v6.1.3

v6.1.2

Compare Source

What's Changed

Full Changelog: kotest/kotest@6.1.2...v6.1.2

v6.1.1

Compare Source

What's Changed

Full Changelog: kotest/kotest@v6.1.0...v6.1.1

v6.1.0

Compare Source

The first Kotest release of 2026 is here - 6.1 'Bouncing Boimler'

  • Compatible with Kotlin 2.0, 2.1, 2.2 and 2.3
  • Enhanced data-testing with new syntax that mirrors the spec style to enable more intuitive tests. This also gives you control over how data tests interact with test lifecycle callbacks!
  • Much improved IDE plugin support including running individual tests for native targets and fixes for many long standing issues. Re-run tests and jump to source for all nested tests in JVM mode
  • The test framework has been updated with Jasmine style f-focused syntax to mirror the x-disabled syntax.
  • Support for JUnit 6 via the new kotest-runner-junit6 module.
  • The popular TestContainers extension has been updated to support Docker ComposeContainers. Also now with an option to pipe the container logs directly into the test output for easier debugging!
  • Full support for the Gradle test-retry plugin.
  • Many improvements and bug fixes to our assertions library including support for custom equality in shouldBe assertions
  • New assertions added such as shouldBeAtMost(x) and shouldBeAtLeast(y) for primitives. A reminder that assertions don't require the Kotest test framework. They are still the best Kotlin assertions library, in our opinion, even if you are using JUnit or another test framework.
  • Recreate race conditions easily using our parallel runner.
  • Various property test improvements such as new Arb types for arrays and support for specifying Arb collection sizes globally. Just like assertions, the property testing library doesn't require the Kotest test framework.
What's Changed
New Contributors

Full Changelog: kotest/kotest@v6.0.7...v6.1.0

v6.0.7

Compare Source

What's Changed

Full Changelog: kotest/kotest@v6.0.6...v6.0.7

v6.0.6

Compare Source

What's Changed

Full Changelog: kotest/kotest@v6.0.5...v6.0.6

v6.0.5

Compare Source

What's Changed

New Contributors

Full Changelog: kotest/kotest@6.0.4...v6.0.5

v6.0.4

Compare Source

What's Changed

New Contributors

Full Changelog: kotest/kotest@v6.0.3...v6.0.4

Kotlin/kotlinx.serialization (org.jetbrains.kotlinx:kotlinx-serialization-json)

v1.10.0

==================

This release is based on Kotlin 2.3.0 and contains all of the changes from 1.10.0-RC.
The only additional change is a fix for ProtoBuf packing of Kotlin unsigned types (#​3079).
Big thanks to KosmX for contributing the fix.

For your convenience, the changelog for 1.10.0-RC is duplicated below:

Stabilization of APIs

kotlinx-serialization 1.10 and subsequent releases will be focused on stabilization of existing APIs.
The following APIs and configuration options are no longer experimental because they're widely used without any known major issues:

  • Json configuration options: decodeEnumsCaseInsensitive, allowTrailingComma, allowComments, and prettyPrintIndent. (#​3100)
  • @EncodeDefault annotation and its modes. (#​3106)
  • JsonUnquotedLiteral constructor function (#​2900)
  • JsonPrimitive constructor function overloads that accept unsigned types. (#​3117)
  • JSON DSL functions on JsonElement with Nothing? overloads. (#​3117)

Readiness for return value checker

Kotlin 2.3.0 introduces a new feature aimed
at helping you to catch bugs related to the accidentally ignored return value of the function.
kotlinx-serialization 1.10.0-RC code is fully marked for this feature, meaning that you
can get warnings for unused function calls like Json.encodeToString(...).
To get the warnings, the feature has to be enabled in your project as described here.

Polymorphism improvements

Polymorphic serialization received a couple of improvements in this release:

New subclassesOfSealed utility to automatically register sealed subclasses serializers in polymorphic modules (#​2201).
Use it in your SerializersModule when configuring a polymorphic hierarchy which contains both abstract and sealed classes.
For example, when root of your hierarchy is an interface, but most of your inheritors are sealed classes.
The new function will register all known sealed subclasses for you, so you don’t need to list them one by one.
This makes writing your SerializerModules much faster and simpler.
Big thanks to Paul de Vrieze for contributing this feature.

Class discriminator conflict check rework (#​3105).
If a payload already contains a property with the same name as the configured discriminator (for example, type),
it is called a class discriminator conflict.
To produce a correct output and allow more inputs to be deserialized at the same time, the following changes were made:

  • Conflicts introduced by JsonNamingStrategy transformations are now detected during serialization as well and will cause SerializationException.
    It also affects non-polymorphic classes.
  • Conflicts from ClassDisciminatorMode.ALL_JSON_OBJECTS and SerializersModuleBuilder.polymorphicDefaultSerializer are also detected.
  • It is allowed to deserialize such a conflicting key for both sealed and open polymorphic hierarchies.
    Previously, it was possible in the sealed hierarchies alone due to missing assertion. See #​1664 for details.

General improvements

  • Add .serialName to MissingFieldException for clearer diagnostics. (#​3114)
  • Generate unique Automatic-Module-Name entries for metadata JARs. (#​3109)
  • Revised ProGuard rules and added R8 tests. (#​3041)
  • CBOR: Improved error message when a byte string/array type mismatch is encountered. (#​3052)

Bugfixes

  • Fix the type in the BIGNUM_NEGATIVE tag name. (#​3090)
  • CBOR: Fix various bugs in the decoder implementation to be more strict and consistent with the specification.
JetBrains/kotlin (org.jetbrains.kotlin:kotlin-maven-serialization)

v2.3.20: Kotlin 2.3.20

Compare Source

Changelog

Analysis API. FIR
New Features
  • KT-78090 Implement stubs support for new conditional returns and holdsIn contracts
Fixes
  • KT-82948 'FirRegularClass' expected as a containing declaration, got 'FirTypeAliasImpl'
  • KT-83467 Package-level JSpecify annotations are ignored when coming from jars or libraries
  • KT-82057 K2. Cannot infer type parameter 'R' in Ktor routing post() function with explicit response type
  • KT-82846 AA: unresolved KtExpression.expressionType for the reference to the parameter with default value
  • KT-80485 False positive UNRESOLVED_REFERENCE on nested interface from super-super class in the super type position inside an anonymous object
  • KT-82772 Flaky false positive deprecation warning on PersistentMap.put in Kotlin repo in IDE mode
  • KT-76487 StdLibSourcesLazyDeclarationResolveTestGenerated.testWrappedInt is unstable
  • KT-82618 Various tests are failing with NPE in kt-master after updating the compiler on 19.11.25
  • KT-82076 Error querying members of JavaClass created for SymbolLightClassForAnnotationClass during library analysis
  • KT-71596 Include Js/Wasi checkers in AbstractLLFirDiagnosticsCollector
  • KT-82085 No OUTER_CLASS_ARGUMENTS_REQUIRED on type parameter bound in IDE
  • KT-81873 Provide a way of including traces in phase JFR events
  • KT-71929 Consider leaving the non-post-compute version at EnhancementSymbolsCache.enhancedFunctions
Analysis API. Infrastructure
  • KT-83173 Analysis API Tests: Library names with RC versions aren't sanitised
  • KT-65140 LL FIR: Implement Abstra

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.12.0 Update all dependencies Dec 21, 2023
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from e1e50e1 to ea68c68 Compare February 22, 2024 01:08
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 2a2d565 to 7653e0c Compare March 11, 2024 08:16
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 9abeab2 to b69fad9 Compare May 10, 2024 12:48
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 3d22a12 to cb44ca5 Compare May 22, 2024 02:46
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 05ece70 to 36a2a42 Compare June 6, 2024 15:09
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from fac2e27 to 3b78e22 Compare August 12, 2024 21:33
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 687c5f8 to ec3289a Compare August 28, 2024 19:58
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from bd28bd2 to f0b6bd6 Compare September 19, 2024 16:16
@renovate renovate bot force-pushed the renovate/all branch from f065abf to b8517ca Compare June 4, 2025 22:10
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 15b0c63 to 5e3c286 Compare June 27, 2025 18:34
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 456a25a to 38112db Compare August 18, 2025 08:57
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 7e8cd99 to b6573de Compare September 10, 2025 10:34
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 69b0c3f to 5ce0dc0 Compare October 5, 2025 21:37
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from ecf20c2 to a95e234 Compare October 19, 2025 08:30
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from a10ebf9 to 8ecd260 Compare December 3, 2025 10:22
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from dabc821 to d7255ad Compare December 22, 2025 01:11
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from b11fde9 to 252b889 Compare January 23, 2026 19:41
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from e55c6f1 to a313e8e Compare February 1, 2026 20:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants