Distractic
Distractic
Hello I'm trying to release my project using CI/CD, but when I try, your plugin fail because the main branch is protected and require Pull request + 1 validation. How...
Currently, your [test framework](https://github.com/Minestom/Minestom/tree/master/src/test/java/net/minestom/server/api) is only available in Minestom. However, in our projects, we may need to use it for our tests to interact with some Minestom component. So, do...
I work on a system who needs to know if in a function (event, command etc..), we're in a SYNC [(ExecutionType.SYNC](https://github.com/Minestom/Minestom/blob/3afc644c5bf92e15b5744593eef592cc30281300/src/main/java/net/minestom/server/timer/ExecutionType.java#L4)) or in ASYNC ([ExecutionType.ASYNC](https://github.com/Minestom/Minestom/blob/3afc644c5bf92e15b5744593eef592cc30281300/src/main/java/net/minestom/server/timer/ExecutionType.java#L5)) context. Do you think it's...
# Current Behavior When we use the annotations to set argument, the default value from kotlin declaration is not supported. With the current system, the command bellow cannot be executed...
Currently, all tests are made using [Kotest](https://kotest.io/). However, it's really hard to understand why is the error in an IDE. In addition, some basically feature are not available to custom...
### Describe the bug The bug fixed in #835 is back again using KSP2 ### Versions - Komapper: 1.18.1 - Kotlin: 2.0.0 - JVM: 17 - JDBC Driver or R2DBC...
## Bug Report #### Current Behavior Based on this connection pool : `BoundedAsyncPool` If we got a connection, use `sync()` method and `multi` to make transaction, the transaction is performed...
# Context When we compare the builder, like `EmbedBuilder`, the comparison between two instances will always return false no matter the field set. For example: ```kt println(EmbedBuilder() == EmbedBuilder()) //...