This repository was archived by the owner on Jul 21, 2023. It is now read-only.
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.6.4->1.7.21.4.0->1.5.11.7.10-1.0.6->1.9.0-1.0.121.7.10->1.9.01.7.10->1.9.0Release Notes
Kotlin/kotlinx.coroutines (org.jetbrains.kotlinx:kotlinx-coroutines-jdk8)
v1.7.2Compare Source
Bug fixes and improvements
CopyableThreadContextElementnow properly copies an element when crossing the coroutine boundary inflowOn(#3787). Thanks @wanyingd1996!newSingleThreadContextfrom closing (#3768).MutexduringtryLock/unlocksequence with owners is fixed (#3745).v1.7.1Compare Source
Bug fixes and improvements
runTestis restored (#3673)onUndeliveredElementnow allocate less memory (#3646)v1.7.0Compare Source
Core API significant improvements
Channelimplementation with significant performance improvements across the API (#3621).selectoperator implementation: faster, more lightweight, and more robust (#3020).MutexandSemaphorenow share the same underlying data structure (#3020).Dispatchers.IOis added to K/N (#3205)newFixedThreadPoolandDispatchers.Defaultimplementations on K/N were wholly rewritten to support graceful growth under load (#3595).kotlinx-coroutines-testrework:timeoutparameter torunTestfor the whole-test timeout, 10 seconds by default (#3270). This replaces the configuration of quiescence timeouts, which is now deprecated (#3603).withTimeoutexception messages indicate if the timeout used the virtual time (#3588).TestCoroutineScheduler,runTest, andTestScopeAPI are promoted to stable (#3622).runTestnow also fails if there were uncaught exceptions in coroutines not inherited from the test coroutine (#1205).Breaking changes
kotlinx-coroutines-coreandkotlinx-coroutines-jdk8artifacts were merged into a single artifact (#3268).\bsymbol and are now navigable in IDE and supplied with proper documentation (#2291).CoroutineContext.isActivereturnstruefor contexts without any job in them (#3300).Bug fixes and improvements
JavaFxversion is updated to 17.0.2 inkotlinx-coroutines-javafx(#3671)..BroadcastChanneland all the corresponding API are deprecated (#2680).Dispatchers.Defaultis backed by the number of threads equal to the number of available cores (#3366).Job.parentAPI (#3201).TestSchedulerleaked cancelled jobs (#3398).TestScope.timeSourcenow provides comparable time marks (#3617). Thanks @hfhbd!withTimeouthandles were preserved in JS runtime (#3440).awaitFrameonly awaits a single frame when used from the main looper (#3432). Thanks @pablobaxter!Class-Pathattribute was removed fromkotlinx-coroutines-debug.jarmanifest (#3361).updateThreadContextoperated on the parent context (#3411).Flow.filterIsInstanceextension (#3240).Dispatchers.Defaultthread name prefixes are now configurable with system property (#3231).Flow.timeoutoperator as@FlowPreview(#2624). Thanks @pablobaxter!futurebuilder in case of exceptions (#3475). Thanks @He-Pin!Mono.awaitSingleOrNullnow waits for theonCompletesignal (#3487).Channel.isClosedForSendandChannel.isClosedForReceiveare promoted from experimental to delicate (#3448).EventLoop(#3547).Dispatchers.IO.limitedParallelism(valueLargerThanIOSize)no longer creates an additional wrapper (#3442). Thanks @dovchinnikov!@FlowPreviewand@ExperimentalCoroutinesApiare promoted to experimental and stable respectively (#3542, #3097, #3548).Dispatchers.DefaultandDispatchers.IO(#3416, #3418).suspendCancellableCoroutineReusablemight have hanged (#3613).CoroutineExceptionHandleris no longer invoked in case of unprocessedfuturefailure (#3452).withContextoperator (#3592).DebugProbes(#3527).CoroutineDispatcher.asExecutor()runs tasks without dispatching if the dispatcher is unconfined (#3683). Thanks @odedniv!SharedFlow.toMutableListandSharedFlow.toSetlints are introduced (#3706).Channel.invokeOnCloseis promoted to stable API (#3358).Dispatchers.DefaultandDispatchers.IOduring the startup phase (#3652).Dispatchers.Default(#3642).limitedParallelismto perform dispatches even after the underlying dispatcher was closed (#3672).causewas selected (#3714).Changelog for previous versions may be found in CHANGES_UP_TO_1.7.md
Kotlin/kotlinx.serialization (org.jetbrains.kotlinx:kotlinx-serialization-json)
v1.5.1==================
This release contains an important Native targets overhaul, as well as numerous enhancements and bugfixes.
Kotlin 1.8.21 is used by default.
New set of Native targets
The official Kotlin target support policy has recently been published
describing new target policy: each target belongs to a certain tier, and different tiers have different stability guarantees.
The official recommendation for library authors is to support targets up to Tier 3,
and kotlinx.serialization now follows it.
It means that in this release, there are a lot of new targets added from this tier,
such as
androidNativeX86orwatchosDeviceArm64.Note that since they belong to Tier 3, they're not auto-tested on CI.
kotlinx.serialization also ships some deprecated Kotlin/Native targets that do not belong to any tier (e.g.
iosArm32,mingwX86).We'll continue to release them, but we do not provide support for them, nor do we plan to add new targets from the deprecated list.
Improvements in Json elements
There are two new function sets that should make creating raw Json elements easier.
First one contains overloads for
JsonPrimitiveconstructor-like functionthat accept unsigned types:
JsonPrimitive(1u).Second one adds new
addAllfunctions toJsonArrayBuilderto be used with collectionsof numbers, booleans or strings:
buildJsonArray { addAll(listOf(1, 2, 3)) }Both were contributed to us by aSemy.
Other enhancements
targetvariables tosink(#2226)Bugfixes
v1.5.0==================
This release contains all features and bugfixes from 1.5.0-RC plus some experimental features and bugfixes on its own (see below).
Kotlin 1.8.10 is used as a default.
HoconEncoder and HoconDecoder interfaces and HOCON-specific serializers
These interfaces work in a way similar to
JsonEncoderandJsonDecoder: they allow intercepting (de)serialization process,making writing if custom HOCON-specific serializers easier. New
ConfigMemorySizeSerializerandJavaDurationSerializeralready make use of them.See more details in the PR.
Big thanks to Alexander Mikhailov for contributing this!
Ability to read buffered huge strings in custom Json deserializers
New interface
ChunkedDecoderallows you to read huge strings that may not fit in memory by chunks.Currently, this interface is only implemented by Json decoder that works with strings and streams,
but we may expand it later, if there's a demand for it.
See more details in the PR authored by Alexey Sviridov.
Bugfixes
v1.4.1==================
This is patch release contains several bugfixes and improvements.
Kotlin 1.7.20 is used by default.
Improvements
Bugfixes
google/ksp (com.google.devtools.ksp)
v1.9.0-1.0.12Compare Source
Issues Fixed
The complete list of issues fixed in this release can be found here.
Other Notable Changes
While there is still no direct model of package elements, the following APIs in
Resolverare added to better support the operations around packages:fun getPackageAnnotations(packageName: String): Sequence<KSAnnotation>fun getPackagesWithAnnotation(annotationName: String): Sequence<String>Contributors
Thank you for the PRs!
@cdsap
@damianw
@danysantiago
@lukellmann
@ribafish
v1.9.0-1.0.11Compare Source
v1.8.22-1.0.11: ReleaseCompare Source
v1.8.21-1.0.11: ReleaseCompare Source
Bump Kotlin Compiler to 1.8.21 for 1.0.11 release
v1.8.20-1.0.11: ReleaseCompare Source
Issues fixed
Incremental compilation fails with "Number of loaded files in snapshots differs" #1280
v1.8.20-1.0.10Compare Source
New Features
KSP can now be run with K2 compiler frontend.
Issues fixed
Known issue
There is a known issue with incremental with this release #1280 from compiler update, we are working on a hotfix release to address this, if you are impacted by this issue, please try to disable incremental or hold on for hotfix release.
Contributors
Thanks for your contributions!
@larryxiao625
@ansman
v1.8.10-1.0.9Compare Source
v1.8.0-1.0.9Compare Source
New Features
KSDefNonNullReferencefor definitely non null types.KSVisitordirectly, you need to overridevisitDefNonNullReferencein your visitor as well.excludedProcessorsis added to Gradle extensions to allow excluding certain processors.Any?is added to unbounded type parametersIssues fixed
Contributors
Thanks for your contributions!
@3flex
@danysantiago
v1.8.0-1.0.8Compare Source
KSP 1.0.8 for Kotlin 1.8.0.
v1.7.22-1.0.8Compare Source
KSP 1.0.8 for Kotlin 1.7.22
v1.7.21-1.0.8Compare Source
KSP 1.0.8 for Kotlin 1.7.21
v1.7.20-1.0.8Compare Source
Issues Fixed
contributors
@cdsap
@3flex
v1.7.20-1.0.7Compare Source
Behavior Changes
blockOtherPluginsis on by default. The old behavior (allowing other plugins to be loaded in KSP's Gradle task) is deprecated and will be removed in the future.New Features
#1041 A new CodeGenerator.createFile method with more flexibility
Issues Fixed
#167 nullability for java sources ignores annotations
#897 Compatibility with Kotlin/Native compiler plugins
#974 Exceptions are swallowed when using withCompilation flag
#985 No "kotlin.ExtensionFunctionType" annotation on functional types with receivers
#989 NoSuchElementException when getting a default argument of the inner annotation type
#997 Incremental KSP fails in Java/Kotlin mixed module
#1011 Generic TypeAliases Parameter are not consistent resolved
#1034 After updating to KSP 1.7.0, Missing information occurs in some cases that are configured in Java.
#1039 Support class extraction provided by annotation
#1063 Memory leak: org.sqlite.JDBC holds classloader of KSP
Contributors
Thank you for the pull requests!
@Jeffset
@midery
@jameskleeh
@Bencodes
@heli-os
v1.7.20-1.0.6Compare Source
KSP 1.0.6 for Kotlin 1.7.20
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.
This PR has been generated by Mend Renovate. View repository job log here.