Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Update all dependencies #120

Merged
merged 1 commit into from
Jun 4, 2023
Merged

Update all dependencies #120

merged 1 commit into from
Jun 4, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 15, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/checkout action minor v3.3.0 -> v3.5.2 age adoption passing confidence
actions/setup-java action minor v3.10.0 -> v3.11.0 age adoption passing confidence
gradle (source) minor 8.0.2 -> 8.1.1 age adoption passing confidence
io.kotest.extensions:kotest-assertions-arrow dependencies patch 1.3.0 -> 1.3.3 age adoption passing confidence
io.kotest.extensions:kotest-property-arrow dependencies patch 1.3.0 -> 1.3.3 age adoption passing confidence
org.codehaus.mojo:animal-sniffer-annotations (source) dependencies minor 1.22 -> 1.23 age adoption passing confidence
com.fasterxml.jackson.module:jackson-module-kotlin dependencies minor 2.14.2 -> 2.15.2 age adoption passing confidence
io.gitlab.arturbosch.detekt (source) plugin minor 1.22.0 -> 1.23.0 age adoption passing confidence
org.jetbrains.kotlinx.binary-compatibility-validator plugin patch 0.13.0 -> 0.13.2 age adoption passing confidence
io.kotest:kotest-runner-junit5 dependencies minor 5.5.5 -> 5.6.2 age adoption passing confidence
io.kotest:kotest-property dependencies minor 5.5.5 -> 5.6.2 age adoption passing confidence
io.kotest:kotest-framework-engine dependencies minor 5.5.5 -> 5.6.2 age adoption passing confidence
io.kotest:kotest-assertions-core dependencies minor 5.5.5 -> 5.6.2 age adoption passing confidence
org.jetbrains.kotlin.multiplatform (source) plugin patch 1.8.10 -> 1.8.21 age adoption passing confidence
org.jetbrains.kotlin.jvm (source) plugin patch 1.8.10 -> 1.8.21 age adoption passing confidence

Release Notes

actions/checkout

v3.5.2

Compare Source

v3.5.1

Compare Source

v3.5.0

Compare Source

v3.4.0

Compare Source

actions/setup-java

v3.11.0

Compare Source

In scope of this release we added support for IBM Semeru (OpenJ9) JDK (https://github.com/actions/setup-java/pull/289).

steps:
 - name: Checkout
   uses: actions/checkout@v3
 - name: Setup-java
   uses: actions/setup-java@v3
   with:
     distribution: semeru
     java-version: 17
Supported distributions

Currently, the following distributions are supported:

Keyword Distribution Official site License
temurin Eclipse Temurin Link Link
zulu Azul Zulu OpenJDK Link Link
adopt or adopt-hotspot AdoptOpenJDK Hotspot Link Link
adopt-openj9 AdoptOpenJDK OpenJ9 Link Link
liberica Liberica JDK Link Link
microsoft Microsoft Build of OpenJDK Link Link
corretto Amazon Corretto Build of OpenJDK Link Link
semeru IBM Semeru Runtime Open Edition Link Link
oracle Oracle JDK Link Link
gradle/gradle

v8.1.1: 8.1.1

This is a patch release for Gradle 8.1. We recommend using 8.1.1 instead of 8.1.

It fixes the following issues:

  • #​24748 MethodTooLargeException when instrumenting a class with thousand of lambdas for configuration cache
  • #​24754 Kotlin DSL precompiled script plugins built with Gradle 8.1 cannot be used with other versions of Gradle
  • #​24788 Gradle 8.1 configure freeCompilerArgs for Kotlin in buildSrc breaks build with unhelpful errors

Read the Release Notes

Upgrade Instructions

Switch your build to use Gradle 8.1.1 by updating your wrapper:

./gradlew wrapper --gradle-version=8.1.1

See the Gradle 8.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading to Gradle 8.1.1.

Reporting Problems

If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines.
If you're not sure you're encountering a bug, please use the forum.

mojohaus/animal-sniffer

v1.23

🚀 New features and improvements

📦 Dependency updates

👻 Maintenance

detekt/detekt

v1.23.0

We're so proud to announce the next upcoming stable release of detekt: 1.23.0 🚀
This release is coming with 25 new rules and much more.

We moved the detekt-compiler-plugin to the main repo, and you can now use it in your builds following the official documentation.

This release also marks the beginning of development of 2.x from the main branch! You can follow the progress here

We want to take the opportunity to thank our Sponsors and our Contributors for testing, bug reporting and helping us release this new version of Detekt. You're more than welcome to join our community on the #detekt channel on KotlinLang's Slack (you can get an invite here).

Notable Changes
  • This is the first version of Detekt that ships with the detekt-compiler-plugin. The Detekt Compiler plugin is still experimental, but we're moving it closer to Detekt to make it easier to integrate. From now on the compiler plugin will follow the same versioning schema as Detekt. We invite you to try it and provide feedback till we stabilize it. You can read more about it in the official documentation page - #​5492
  • We added 25 new Rules to detekt
  • Notable changes to existing rules:
    • UnnecessaryAbstractClass now only runs with type resolution - #​5829
    • UnusedPrivateMember has been refactored with some of its logic moved to UnusedParameter and UnusedPrivateProperty - #​5722
    • Removed the ignoreOverridden config from BooleanPropertyNaming, ConstructorParameterNaming, FunctionNaming, VariableNaming and FunctionParameterNaming as not useful for those rules - #​5718
    • Added ignoredSubjectTypes to rule ElseCaseInsteadOfExhaustiveWhen to specify types that should be ignored by the rule (#​5623) - #​5634
    • Added allowOperators to rule DataClassContainsFunctions - #​5658
    • MandatoryBracesIfStatements has been removed in favor of BracesOnIfStatements - #​5700
    • Added ignoreWhenContainingVariableDeclaration to UseIfInsteadOfWhen to ignore captured variables - #​5681
    • Several rules in the detekt-formatting ruleset now accepts an indentSize parameter (see the full list here).
    • We followed the KtLint decisions on turning on some rules by default, so several rules in the detekt-formatting ruleset are now turned on by default (see the full list here).
  • We added support for Gradle's Worker API inside Detekt Gradle Plugin, for faster execution on bigger projects. - #​4128
  • We fixed the includes/excludes logic on the config file as they were overriding each other - #​5782
  • We fully removed support for Spek from detekt-test-utils. The recommended testing framework is JUnit - #​5785
  • The minimum supported Gradle version is now v6.8.3 - #​5616
  • This version of detekt is built with Gradle v8.1, AGP 8.0.1, Kotlin 1.8.21 and KtLint 0.49.1 (see #​5893 #​5723 #​5877 #​6028 #​6043 #​5995 #​5996)
  • We now added a Code of Conduct to our repo. Please read it and follow it when interacting with our community on our channels.
Changelog
  • SerialVersionUIDInSerializableClass - Update the error location - #​6114
  • Reduce LoopWithTooManyJumpStatements finding scope - #​6110
  • Add alias for SuspendFunWithCoroutineScopeReceiver - #​6089
  • CastNullableToNonNullableType - Check the SimpleType instead of typeElement - #​6071
  • Update plugin com.gradle.enterprise to v3.13.1 - #​6069
  • CanBeNonNullable: Check parent condition for checking if nullability info is used or not - #​6064
  • Add configuration to add alternate trimming methods - #​6063
  • Check if property is documented at class header - #​6061
  • OutdatedDocumentation - Check if only public property is documented - #​6057
  • UnnecessaryLet: fix false positive in call chains - #​6052
  • Add comments with a list of regexes to ForbiddenComment - #​5981
  • Fix incomplete requireRootInDeclaration check in InvalidPackageDeclaration - #​6045
  • BracesOnWhenStatements: fix false positive for necessary braces - #​6042
  • Fix redundant ClassOrdering violations using maximum increasing section - #​6003
  • UseIsNullOrEmpty: fix false negative with chained call - #​6027
  • Create docs for Gradle Worker API - #​6016
  • Compile compiler plugin against kotlin-compiler-embeddable - #​6012
  • Update intro.mdx to use setFrom() on detekt config - #​6010
  • Use detekt-versions.properties instead of versions.properties - #​6006
  • Implement parentPath accessor in concrete config implementations - #​6002
  • Increase ALIASES_LIMIT to 100 for YamlConfig - #​5986
  • Fix elvis to +/- case in case UnnecessaryParentheses when precedence is unclear - #​5983
  • jdkHome as @​Internal - #​5978
  • Fix broken POM file for detetk-compiler-plugin - #​5971
  • Fix broken publishToMavenLocal - #​5970
  • Add allowOmitUnit to rule LibraryCodeMustSpecifyReturnType - #​5861
  • Remove dependency that creates a cycle. - #​5777
  • Update dependency org.jetbrains:annotations to v24 - #​5969
  • Update github/codeql-action digest to 8c8d71d - #​5966
  • Add functions to ExitOutsideMain rule - #​5963
  • Update README.md - #​5954
  • Prevent import statements from counting as references for UnusedPrivateProperty - #​5942
  • Fix ExpressionBodySyntax not checking property getters/setters - #​5938
  • Improve correctness of UnusedPrivateProperty - #​5935
  • Fix documentation for deprecated 'reports' object (Issue #​5908) - #​5924
  • Print file path report as link file - #​5921
  • "detekt" or "Detekt" - #​5898
  • Update JSON schema URL - #​5881
  • Add support for local suppression inside formatting - #​5876
  • Fix checkExhaustiveness for formatting and third party rules - #​5869
  • Allow newline style for MaxChainedCallsOnSameLine - #​5865
  • Declare inputs and outputs to support incremental build for testPluginKotlinc - #​5862
  • Use code syntax for Unit for ImplicitUnitReturnType rule - #​5857
  • MatchingDeclarationName. KtFilesSpec also remove .common.kt suffix from kotlin files - #​5851
  • Fix double mutability issues with Gradle plugin's use of ConfigurableFileCollection - #​5850
  • MagicNumber - Make ignoreNamedArgument catch more complex expression - #​5837
  • Exclude super call when generating guard clauses - #​5835
  • Enable test retry for all our modules - #​5825
  • Stop configuring report merge tasks while configuring Detekt tasks - #​5813
  • FunctionMatcher support for fully qualified function names - #​5812
  • Boy Scout - #​5808
  • Simplify TestConfig usages - #​5801
  • Reduce configuration of UnusedPrivateMember's split rules - #​5800
  • Force SerialVerionUID to be private - #​5798
  • Exclude the KMP test folders for android - #​5797
  • Add aliases for PackageNaming and InvalidPackageDeclaration - #​5795
  • Forbid using Jupiter Kotlin assertions - #​5794
  • ModifierOrder: fix false positive with block comments - #​5791
  • Fixed ProtectedMemberInFinalClass rule reporting valid JVM finalize - #​5788
  • Remove unnecessary usage of BeforeAll in tests - #​5781
  • Run Kotlin compiler plugin CLI test as part of standard build - #​5766
  • Refactor to remove java.util.Array* imports - #​5761
  • Replace java.util.Stack with Kotlin's ArrayDeque implementation - #​5760
  • Replace java.time.Duration with kotlin.time.Duration - #​5759
  • Add NixOS installation method to doc - #​5757
  • Remove & forbid usage of java.util.stream - #​5756
  • Use stdlib functions for file & path operations - #​5754
  • Enable UnnecessaryBackticks in detekt project - #​5753
  • Update docusaurus monorepo to v2.3.1 - #​5752
  • Resolve runtime classpaths consistently with compile classpaths - #​5730
  • Exclude new Kotlin Test directories in default config - #​5727
  • Fail when unexpected version of kotlin-compiler-embeddable is on runtime classpath - #​5726
  • Fix IgnoredReturnValue rule crash in parallel mode - #​5724
  • Use name that return name after backticks - #​5719
  • UnusedPrivateMember - Fix false positive in case of invoke operator - #​5717
  • Fix false positive for CanBeNonNullable rule - #​5714
  • IgnoredReturnValue: fix false negative when annotation is on the package - #​5706
  • Check Thread.sleep for block expression - #​5699
  • Fix false positive of in UnnecessaryParentheses - #​5684
  • Fix url and kotlin reference support in kdoc - #​5683
  • Add config for variable expression in when - #​5681
  • Enable NoSemicolons rule - #​5663
  • Use correct resolvable/consumable flags on detekt's configurations - #​5657
  • Prepare for Gradle 8 - #​5656
  • ExplicitCollectionElementAccessMethod rule update - #​5654
  • Cast nullable to non nullable type - #​5653
  • Enable verbose mode for Codecov GH Action - #​5652
  • Fail build when issues found with JVM target compatibility of related compile tasks - #​5651
  • Don't silently use Kotlin compiler fallback strategy - #​5650
  • Documentation tweaks - #​5639
  • Have consistent compile-test-snippets between project and system property - #​5630
  • Exclude operator functions in function min/max length - #​5618
  • Broken link at EmptyFunctionBlock - #​5604
  • Update rule description for errorprone rules - #​5603
  • FunctionMaxLength false positive for overridden methods #​5590 - #​5599
  • Report proper code position in MaxLineLength - #​5583
  • Allow access to nonpublic members of public types in java.base/java.lang package - #​5579
  • NonBooleanPropertyPrefixedWithIs: Allow AtomicBoolean - #​5577
  • Pass compilation output classes to detekt analysis classpath - #​5556
  • Fix KDocReferencesNonPublicProperty false positive - #​5534
Dependency Updates
  • Update dependency io.github.detekt.sarif4k:sarif4k to v0.4.0 - #​6113
  • Update dependency org.jetbrains.kotlinx:kotlinx-coroutines-core to v1.7.1 - #​6097
  • Update dependency org.jetbrains.kotlinx:kotlinx-coroutines-core to v1.7.0 - #​6074
  • Update com.android.tools.build - #​6065
  • Update JaCoCo to v0.8.10 - #​6044
  • Update plugin pluginPublishing to v1.2.0 - #​5975
  • Update ktlint to v0.48.1 - #​5661
  • Update dependency com.android.tools.build:gradle to v7.4.0 - #​5693
  • JaCoCo 0.8.9 - #​5959
  • Update dependency com.github.tschuchortdev:kotlin-compile-testing to v1.5.0 - #​5882
  • Update dependency org.jetbrains.dokka to v1.8.10 - #​5878
  • Compile detekt-compiler-plugin against standard Kotlin compiler artifact - #​5765
  • Migrate to SnakeYAML Engine - #​5751
  • Update kotlin monorepo to v1.8.10 - #​5745
  • Update ktlint to v0.48.0 - #​5625
  • Migrate to Gradle Nexus Publish Plugin - #​5554
  • Update dependency io.github.detekt.sarif4k:sarif4k to v0.2.0 - #​5496
Housekeeping & Refactorings
  • Inline Cases enum and inline other external test code into the test classes - #​6107
  • Update codecov/codecov-action digest to eaaf4be - #​6102
  • Remove unnecessary baselines - #​6092
  • Remove unused dependenciesAsNames - #​6059
  • Reduce eager POM task creation - #​6041
  • Improve our configuration of ClassNaming and FunctionNaming - #​6019
  • Comment text in the Issue/PR Template - #​5992
  • Fix typo: Github -> GitHub - #​5956
  • Review all Detekt and Detekt Gradle Plugin usages. - #​5955
  • Review all Detekt and Detekt Gradle Plugin usages. - #​5953
  • Add a test for catching undocumented public interfaces - #​5951
  • Execute tests in parallel - #​5944
  • Make GeneratorSpec use resources - #​5932
  • Cleanup detekt-formatting to use detekt's own assertThat function - #​5911
  • Stale any issue with support tag in one month - #​5904
  • Remove instances of double mutability - #​5899
  • Handle todo in LinesOfCode logic - #​5897
  • Boy scout - detekt-generator - #​5854
  • Tweak GHA configs a bit - #​5852
  • Create generateWebsite - #​5849
  • Remove dependency between check and jacocoMergedReport - #​5846
  • Sort deprecation properties - #​5845
  • Simplify generate documentation - #​5844
  • Remove unnecessary @Suppress("ReturnCount") - #​5841
  • Cleaner merging of Gradle blocks for functionalTests - #​5830
  • Replace trimMargin usages - #​5827
  • Disable PTS from local and enable it for PRs - #​5826
  • Activate MultilineRawStringIndentation on detekt - #​5819
  • Remove single-use times method, use stdlib's repeat instead. - #​5774
  • Remove redundant build config - #​5617
  • Migrate to AGP namespaces - #​5569
  • Fix typo - #​5557
Contributors

We would like to thank the following contributors that made this release possible: @​3flex, @​BeBAKE, @​BraisGabin, @​Goooler, @​SaumyaBhushan, @​TWiStErRob, @​VitalyVPinchuk, @​adef145, @​asomov, @​atulgpt, @​chao2zhang, @​cketti, @​cortinico, @​drawers, @​dzirbel, @​igorwojda, @​lexa-diky, @​luanpotter, @​marschwar, @​mjovanc, @​mmorozkov, @​ncteisen, @​osipxd, @​ov7a, @​schalkms, @​t-kameyama, @​tresni

See all issues at: 1.23.0

Kotlin/binary-compatibility-validator

v0.13.2

Compare Source

  • kotlinx-metadata is updated to 0.6.2 with the support of LV 2.0

v0.13.1

Compare Source

kotest/kotest

v5.6.2

5.6.2 May 2023

Assertions
Property testing
Documentation
Other

⚠️ Reverted behavior of Arb.string()

With Kotest 5.6.0, Codepoint.ascii() was changed to include a wider range of ascii chararacters, and Codepoint.printableAscii() was introduced with the historic range used by Codepoint.ascii().

Arb.string() has been using Codepoint.ascii() as it's default for generating chars for the string. This caused issues for some users, and we decided to revert Arb.string() to the historic behavior by changing the default to the new Codepoint.printableAscii().

Hopefully this doesn't cause any issues for you. If it does, you can revert to the 5.6.0 ~ 5.6.1 behavior by using Codepoint.ascii() explicitly.

If you added explicit usage of Codepoint.printableAscii() to circumvent the issue, you can safely remove the explicit parameter starting with Kotest 5.6.2.

New Contributors

Full Changelog: kotest/kotest@v5.6.1...v5.6.2

v5.6.1

Maintenance release, published since 5.6.0 failed to upload for some targets.

Breaking changes (from 5.5.5 -> 5.6.x)

  • Moved ConstantNow-related functions to a new module named io.kotest:kotest-extensions-now (remember to add -jvm suffix for Maven)
    • Add this module as a dependency to keep using withConstantNow
  • Remove Iterable checking logic from IterableEq (#​3420)

See full changelog at https://kotest.io/docs/changelog.html

v5.6.0

Breaking changes

  • Moved ConstantNow-related functions to a new module named io.kotest:kotest-extensions-now (remember to add -jvm suffix for Maven)
    • Add this module as a dependency to keep using withConstantNow
  • Remove Iterable checking logic from IterableEq (#​3420)

See full changelog at https://kotest.io/docs/changelog.html

JetBrains/kotlin

v1.8.21

Compiler
  • KT-57848 Native: compilation of dynamic/static library fails with Xcode 14.3
  • KT-57875 Native compilation failure: Suspend functions should be lowered out at this point, but FUN LOCAL_FUNCTION_FOR_LAMBDA
  • KT-57946 KAPT: "RuntimeException: No type for expression" with delegate
JavaScript
  • KT-57356 KJS: StackOverflowException on @​JsExport with type parameters referring to one another
Tools. Compiler plugins. Serialization
  • KT-58067 Serialization: NullPointerException caused by @​Contextual property with type with generic
  • KT-57730 Serialization: "IllegalStateException: Serializer for element of type .Foo has not been found" caused by serialization of Java type
Tools. Gradle. JS
  • KT-57766 KJS / Gradle "Module not found: Error: Can't resolve 'kotlin-kotlin-stdlib-js-ir'" when using "useEsModules"
Tools. Kapt
  • KT-58027 Kotlin 1.8.20 kapt issue "null: KtCallExpression: build()"
Tools. Maven
  • KT-58048 Maven: "Too many source module declarations found" after upgrading to 1.8.20
  • KT-58101 'Unable to access class' in kotlin-maven-plugin after updating to Kotlin 1.8.20

v1.8.20

Analysis API
  • KT-55510 K2: Lost designation for local classes
  • KT-55191 AA: add an API to compare symbol pointers
  • KT-55487 K2: symbol pointer restoring doesn't work for static members
  • KT-55336 K2 IDE: "java.lang.IllegalStateException: Required value was null." exception while importing a compiled JPS project
  • KT-55098 AA: KtDeclarationRenderer should render a context receivers
  • KT-51181 LL API: errors for SAM with suspend function from another module
  • KT-50250 Analysis API: Implement Analysis API of KtExpression.isUsedAsExpression
  • KT-54360 KtPropertySymbol: support JvmField in javaSetterName and javaGetterName
Analysis API. FE1.0
  • KT-55825 AA FE1.0: stackoverflow when resolution to a function with a recursive type parameter
Analysis API. FIR
  • KT-54311 K2: proper implementation of KtSymbolPointer
  • KT-50238 Analysis API: Implement KSymbolPointer for KtSymbol
Analysis API. FIR Low Level API
  • KT-52160 FIR: Substitution overrides on FirValueParameter-s are incorrectly unwrapped
  • KT-55566 LL FIR: Tests in compiler/testData/diagnostics/tests/testsWithJava17 fail under LL FIR
  • KT-55339 LL FIR: Missing RECURSIVE_TYPEALIAS_EXPANSION error in function type alias
  • KT-55327 LL FIR: Diverging UNRESOLVED_REFERENCE errors in recursive local function test
  • KT-54826 KtSymbolPointer: migrate from IdSignature to our own solution
Android
  • KT-54464 MPP, Android SSL2: Add a flag for suppressing warning in case of using Android Style folders
Backend. Wasm
  • KT-38924 Wasm support in nodejs
  • KT-56160 Getting WebAssembly.CompileError in browsers not supported GC and other required proposals
  • KT-46773 Implement an experimental version of the Kotlin/Wasm compiler backend
  • KT-56584 K/Wasm: Can't link symbol class
  • KT-56166 Fix compatibility with Firefox Nightly
  • KT-55589 Basic support of WASI
  • KT-53790 Reading from "node:module" is not handled by plugins error with Kotlin/Wasm 1.7.20-Beta
Compiler
New Featur

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title Update actions/checkout action to v3.4.0 Update actions/checkout action to v3.5.0 Mar 24, 2023
@renovate renovate bot changed the title Update actions/checkout action to v3.5.0 Update all dependencies Mar 25, 2023
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from dcbd976 to f22b71b Compare March 30, 2023 10:32
@renovate renovate bot force-pushed the renovate/all branch 8 times, most recently from 0de340b to 8d08866 Compare April 18, 2023 18:13
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from bf8a932 to 2ef26eb Compare April 25, 2023 12:30
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 3f14d92 to 9fdfe4f Compare May 31, 2023 03:03
| datasource     | package                                                                                                                 | from    | to      |
| -------------- | ----------------------------------------------------------------------------------------------------------------------- | ------- | ------- |
| github-tags    | actions/checkout                                                                                                        | v3.3.0  | v3.5.2  |
| github-tags    | actions/setup-java                                                                                                      | v3.10.0 | v3.11.0 |
| gradle-version | gradle                                                                                                                  | 8.0.2   | 8.1.1   |
| maven          | io.kotest.extensions:kotest-assertions-arrow                                                                            | 1.3.0   | 1.3.3   |
| maven          | io.kotest.extensions:kotest-property-arrow                                                                              | 1.3.0   | 1.3.3   |
| maven          | org.codehaus.mojo:animal-sniffer-annotations                                                                            | 1.22    | 1.23    |
| maven          | com.fasterxml.jackson.module:jackson-module-kotlin                                                                      | 2.14.2  | 2.15.2  |
| maven          | io.gitlab.arturbosch.detekt:io.gitlab.arturbosch.detekt.gradle.plugin                                                   | 1.22.0  | 1.23.0  |
| maven          | org.jetbrains.kotlinx.binary-compatibility-validator:org.jetbrains.kotlinx.binary-compatibility-validator.gradle.plugin | 0.13.0  | 0.13.2  |
| maven          | io.kotest:kotest-runner-junit5                                                                                          | 5.5.5   | 5.6.2   |
| maven          | io.kotest:kotest-property                                                                                               | 5.5.5   | 5.6.2   |
| maven          | io.kotest:kotest-framework-engine                                                                                       | 5.5.5   | 5.6.2   |
| maven          | io.kotest:kotest-assertions-core                                                                                        | 5.5.5   | 5.6.2   |
| maven          | org.jetbrains.kotlin.multiplatform:org.jetbrains.kotlin.multiplatform.gradle.plugin                                     | 1.8.10  | 1.8.21  |
| maven          | org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin                                                         | 1.8.10  | 1.8.21  |
@myuwono myuwono merged commit 2918f2c into main Jun 4, 2023
2 checks passed
@renovate renovate bot deleted the renovate/all branch June 4, 2023 21:47
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.

None yet

1 participant