Quantum64
Quantum64
I only have a preliminary understanding of this issue. Reporting now because it is causing havoc in our recently launched production system. I am planning to thoroughly investigate and potentially...
This is a follow-up to a [post I made on the Arrow slack channel ](https://kotlinlang.slack.com/archives/C5UPMM0A0/p1640894537386000)a few months ago. Consider the following test case: ```kotlin import arrow.core.test.generators.functionAToB import arrow.optics.optics import arrow.optics.test.laws.OptionalLaws...
**Describe the bug** ```kotlin data class Data(val flag: Boolean = true) ``` The documentation for NON_DEFAULT suggests to me that the serializer will create a new instance of this class...
This change adds the `approximateTrimming` option to the reactive stream operations coroutines extension. I do not think this change warrants an additional test case since this function is already covered,...
DNS deletion is only executed in the finalizer.
Added an easy to use wrapper for entity metadata, because it can be hard to understand normally. The class extends WrappedDataWatcher and adds all methods to get/set the metadata. This...
I was looking forward to new features in this plugin, but we haven seen a commit in over 6 months. Has Multiverse Adventure been abandoned?
This is a shortcoming in `jackson-module-kotlin` that I hoped could be fixed by this project. Consider the mapper ```kotlin val mapper = ObjectMapper() .registerKotlinModule() .setSerializationInclusion(JsonInclude.Include.NON_DEFAULT) ``` and the class ```kotlin...