-
-
Notifications
You must be signed in to change notification settings - Fork 261
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 #1254
Merged
Merged
Update Kotlin #1254
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
renovate
bot
force-pushed
the
renovate/kotlin
branch
from
December 21, 2023 14:09
da402cb
to
9945025
Compare
renovate
bot
changed the title
Update dependency com.google.devtools.ksp to v1.9.21-1.0.16
Update Kotlin
Dec 21, 2023
renovate
bot
force-pushed
the
renovate/kotlin
branch
from
December 25, 2023 09:25
9945025
to
1c9b7df
Compare
renovate
bot
force-pushed
the
renovate/kotlin
branch
from
January 19, 2024 00:58
1c9b7df
to
6dcb1e0
Compare
renovate
bot
force-pushed
the
renovate/kotlin
branch
from
February 15, 2024 16:03
6dcb1e0
to
f416163
Compare
renovate
bot
force-pushed
the
renovate/kotlin
branch
from
February 29, 2024 04:55
f416163
to
dbf58a2
Compare
renovate
bot
force-pushed
the
renovate/kotlin
branch
3 times, most recently
from
March 13, 2024 11:14
013cfeb
to
4e1c49d
Compare
renovate
bot
force-pushed
the
renovate/kotlin
branch
from
April 2, 2024 10:42
4e1c49d
to
eece74e
Compare
renovate
bot
force-pushed
the
renovate/kotlin
branch
from
April 5, 2024 02:31
eece74e
to
1b04f2e
Compare
Maxr1998
approved these changes
Apr 7, 2024
taitsmith
added a commit
to taitsmith/jellyfin-android
that referenced
this pull request
Apr 9, 2024
Update CI dependencies (jellyfin#1332) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Update eps1lon/actions-label-merge-conflict action to v3 (jellyfin#1336) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Update dependency org.chromium.net:cronet-embedded to v119 (jellyfin#1335) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Update dependency org.jellyfin.sdk:jellyfin-core to v1.4.7 (jellyfin#1333) * Update dependency org.jellyfin.sdk:jellyfin-core to v1.4.7 * 🐛 Fix build error due to new enum --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Maxr1998 <max.rumpf1998@gmail.com> Update dependency de.maxr1998:modernandroidpreferences to v2.4.0-beta2 Update Kotlin (jellyfin#1254) * Update Kotlin * Update dependency androidx.compose.compiler:compiler to v1.5.11 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Update compose to v1.6.5 (jellyfin#1320) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Update dependency androidx.compose.foundation:foundation to v1.6.5 (jellyfin#1322) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Update compose.material to v1.6.5 (jellyfin#1321) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Update dependency androidx.mediarouter:mediarouter to v1.7.0 (jellyfin#1328) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Update dependency androidx.webkit:webkit to v1.10.0 (jellyfin#1338) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Update dependency androidx.activity:activity-ktx to v1.8.2 Update koin to v3.5.4 Update dependency io.coil-kt:coil-base to v2.6.0 Update gradle/gradle-build-action action to v3.2.1 Update dependency com.google.android.material:material to v1.11.0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.7.3
->1.8.0
1.7.3
->1.8.0
1.9.21-1.0.15
->1.9.23-1.0.20
1.9.21
->1.9.23
1.9.21
->1.9.23
Release Notes
Kotlin/kotlinx.coroutines (org.jetbrains.kotlinx:kotlinx-coroutines-android)
v1.8.0
Compare Source
Dispatchers.Main != Dispatchers.Main.immediate
(#3545, #3963).Flow
operators that limit cancel the upstream flow to forget that they were already finished if there is another such operator upstream (#4035, #4038)kotlinx-coroutines-debug
is published with the correct Java 9 module info (#3944).kotlinx-coroutines-debug
no longer requires manually settingDebugProbes.enableCoroutineCreationStackTraces
tofalse
, it's the default (#3783).kotlinx-coroutines-test
: set the default timeout ofrunTest
to 60 seconds, added the ability to configure it on the JVM with thekotlinx.coroutines.test.default_timeout=10s
(#3800).kotlinx-coroutines-test
: fixed a bug that could lead to not all uncaught exceptions being reported after some tests failed (#3800).delay(Duration)
rounds nanoseconds up to whole milliseconds and not down (#3920). Thanks @kevincianfarini!Dispatchers.Default
and the default thread for background work are guaranteed to use the same context classloader as the object containing it them (#3832).SharedFlow.collect
suspends for the first time, it's registered as a subscriber for thatSharedFlow
(#3885). Before, it was also true, but not documented.withLock
on JS (#3881). Thanks @CLOVIS-AI!Changelog relative to version 1.8.0-RC2
kotlinx-coroutines-debug
no longer requires manually settingDebugProbes.enableCoroutineCreationStackTraces
tofalse
, it's the default (#3783).Flow
operators that limit cancel the upstream flow to forget that they were already finished if there is another such operator upstream (#4035, #4038)google/ksp (com.google.devtools.ksp)
v1.9.23-1.0.20
Compare Source
KSP1 issues fixed
KSP2 issues fixed
v1.9.23-1.0.19
New APIs
SymbolProcessorEnvironment.kspVersion
CodeGenerator.associateWithFunctions
andCodeGenerator.associateWithProperties
Issues fixed in KSP2
Issues fixed in KSP Gradle Plugin
Known issues
v1.9.22-1.0.17
Compare Source
Issues fixed
Resolver#getJvmCheckedException
results in<ERROR TYPE>
when throwing type variable. #1460$
in name arenull
when used in Kotlin source #1671v1.9.22-1.0.16
Compare Source
This is KSP 1.0.16 for Kotlin compiler 1.9.22
v1.9.21-1.0.16
Compare Source
Issue fixed
#1653 KSP 1.9.21-1.0.15 leaking memory and causing OOMs
JetBrains/kotlin (org.jetbrains.kotlin.plugin.parcelize)
v1.9.23
: Kotlin 1.9.231.9.23
Apple Ecosystem
KT-65542
Cinterop tasks fails if Xcode 15.3 is usedBackend. Wasm
KT-64486
Kotlin/Wasm/WASI exported function callback for coroutines supportCompiler
KT-53478
Could not load moduleKT-66044
JDK's new API is used over Kotlin's SDK functionsKT-64640
Prevent mutating SequenceCollection methods from JDK 21 be available on read-only collectionsKT-65441
K1: Remove JDK 21 getFirst()/getLast() in (Mutable)List interfacesKT-65634
K/N: data race during monolithic cache creationKT-53109
CompilationErrorException generateUnboundSymbolsAsDependencies with builder inference and lambdasKT-52757
Type inference for builders fails if inferred from a functionTools. Gradle
KT-65792
Add JSON build reportKT-65091
Update compiler metrics in build reportsKT-62490
KGP dropping resource directoriesTools. Gradle. JS
KT-64119
K/JS: Migrate package manager from Yarn onto NPMKT-64561
K/JS tests are not executed after upgrade to 1.9.22Tools. Gradle. Multiplatform
KT-65954
commonTest dependencies affect commoMainMetadata compilationTools. Gradle. Native
KT-64573
Default value forproduceUnpackedKlib
was not providedv1.9.22
JavaScript
KT-63719
KJS: Test results ignored for ES module kindKT-63808
compileTestDevelopmentExecutableKotlinJs failed in JsIntrinsicTransformersNative
KT-64139
Weird bug with while and coroutine in Kotlin NativeKT-63471
linkDebugTestIosX64 Failed to build cache: NoSuchFileException bitcode_depsKT-63789
Native: Incremental compilation problem with composeTools. CLI
KT-64485
CLI: cache and optimize parsing of command-line argumentsTools. Gradle
KT-63990
"Cannot query the value of property 'buildFlowServiceProperty' because it has no value available" with Isolated ProjectsTools. Gradle. Native
KT-63363
Kotlin Gradle Plugin:KotlinNativeHostSpecificMetadataArtifact
breaks configuration cache, implicitly includes output file as configuration cache inputKT-63742
Gradle wrongly caches Kotlin/Native compiler flagsTools. JPS
KT-64305
Kotlin JPS builder requests chunk rebuild with graph implementationKT-64112
Avoid using IJ's JPS mappings in Kotlin JPS testsKT-63799
Make plugin classpath serialization path agnosticConfiguration
📅 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.
This PR has been generated by Mend Renovate. View repository job log here.