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 kotlin monorepo to v1.9.23 #7027

Merged
merged 2 commits into from Mar 7, 2024
Merged

Update kotlin monorepo to v1.9.23 #7027

merged 2 commits into from Mar 7, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 7, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
org.jetbrains.kotlin:kotlin-reflect (source) 1.9.22 -> 1.9.23 age adoption passing confidence
org.jetbrains.kotlin:kotlin-stdlib-jdk8 (source) 1.9.22 -> 1.9.23 age adoption passing confidence
org.jetbrains.kotlin:kotlin-main-kts (source) 1.9.22 -> 1.9.23 age adoption passing confidence
org.jetbrains.kotlin:kotlin-gradle-plugin-api (source) 1.9.22 -> 1.9.23 age adoption passing confidence
org.jetbrains.kotlin:kotlin-gradle-plugin (source) 1.9.22 -> 1.9.23 age adoption passing confidence
org.jetbrains.kotlin:kotlin-compiler-embeddable (source) 1.9.22 -> 1.9.23 age adoption passing confidence
org.jetbrains.kotlin:kotlin-compiler (source) 1.9.22 -> 1.9.23 age adoption passing confidence

Release Notes

JetBrains/kotlin (org.jetbrains.kotlin:kotlin-reflect)

v1.9.23: Kotlin 1.9.23

1.9.23
Apple Ecosystem
  • KT-65542 Cinterop tasks fails if Xcode 15.3 is used
Backend. Wasm
  • KT-64486 Kotlin/Wasm/WASI exported function callback for coroutines support
Compiler
  • KT-53478 Could not load module
  • KT-66044 JDK's new API is used over Kotlin's SDK functions
  • KT-64640 Prevent mutating SequenceCollection methods from JDK 21 be available on read-only collections
  • KT-65441 K1: Remove JDK 21 getFirst()/getLast() in (Mutable)List interfaces
  • KT-65634 K/N: data race during monolithic cache creation
  • KT-53109 CompilationErrorException generateUnboundSymbolsAsDependencies with builder inference and lambdas
  • KT-52757 Type inference for builders fails if inferred from a function
Tools. Gradle
  • KT-65792 Add JSON build report
  • KT-65091 Update compiler metrics in build reports
  • KT-62490 KGP dropping resource directories
Tools. Gradle. JS
  • KT-64119 K/JS: Migrate package manager from Yarn onto NPM
  • KT-64561 K/JS tests are not executed after upgrade to 1.9.22
Tools. Gradle. Multiplatform
  • KT-65954 commonTest dependencies affect commoMainMetadata compilation
Tools. Gradle. Native
  • KT-64573 Default value for produceUnpackedKlib was not provided

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.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • 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 added the dependencies Pull requests that update a dependency file label Mar 7, 2024
Copy link

codecov bot commented Mar 7, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 83.78%. Comparing base (e33d614) to head (9378c0e).

Additional details and impacted files
@@            Coverage Diff            @@
##               main    #7027   +/-   ##
=========================================
  Coverage     83.78%   83.78%           
  Complexity     3929     3929           
=========================================
  Files           578      578           
  Lines         12099    12099           
  Branches       2505     2505           
=========================================
  Hits          10137    10137           
  Misses          710      710           
  Partials       1252     1252           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@detekt-ci detekt-ci added the build label Mar 7, 2024
@3flex 3flex added notable changes Marker for notable changes in the changelog and removed build labels Mar 7, 2024
Copy link
Contributor Author

renovate bot commented Mar 7, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@3flex 3flex added this to the 2.0.0 milestone Mar 7, 2024
@3flex 3flex enabled auto-merge (squash) March 7, 2024 10:28
@3flex 3flex merged commit 860b9e8 into main Mar 7, 2024
21 checks passed
@3flex 3flex deleted the renovate/kotlin-monorepo branch March 7, 2024 10:42
@o-shevchenko
Copy link

Hey
When can we expect such a release?
Usually, Detekt is the only library that prevents us from the Kotlin upgrade. It happens every Kotlin release.
Thanks!

@3flex
Copy link
Member

3flex commented Mar 11, 2024

Unless there are new language features in the new version that detekt's Kotlin version doesn't support yet, you are not blocked by detekt.

Please see #6198 for more.

Also refer to our docs https://detekt.dev/docs/gettingstarted/gradle#gradle-runtime-dependencies

If you have suggestions on how to improve the docs please open an issue or PR, thanks!

@o-shevchenko
Copy link

thanks @3flex
yes, I'm talking about detekt was compiled with Kotlin 1.9.22 but is currently running with 1.9.23 error.
So, we can't upgrade to Kotlin 1.9.23, and have to wait for the new Detekt release with this PR included.

The following configuration helps here:

configurations.all {
    resolutionStrategy.eachDependency {
        if (requested.group == "org.jetbrains.kotlin") {
            useVersion(io.gitlab.arturbosch.detekt.getSupportedKotlinVersion())
        }
    }
}

but will be great to align Detekt releases with Kotlin releases if detekt is tightly coupled to the Kotlin version

@cortinico cortinico added the pick request Marker for PRs that should be ported to the 1.0 release branch label Mar 23, 2024
cortinico pushed a commit that referenced this pull request Mar 23, 2024
* Update kotlin monorepo to v1.9.23

* Update checksum for Kotlin 1.9.23

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Matthew Haughton <3flex@users.noreply.github.com>
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 notable changes Marker for notable changes in the changelog pick request Marker for PRs that should be ported to the 1.0 release branch
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants