tpetillot
tpetillot
**Version**: from `3.18.0` to `4.1.0` **Module**: `quill-jdbc` **Database**: `postgresql` ### Expected behavior Using columns as part of the update as documented: https://getquill.io/#writing-queries-actions-updatevalue-update Generate a valid SQL query. ### Actual behavior...
**Version**: v3.8.0 **Module**: quill-jdbc https://github.com/getquill/quill/blob/876cae2c6b56317f373426b6049a40273d8301d0/quill-jdbc/src/main/scala/io/getquill/context/jdbc/JdbcContext.scala#L24 ### Expected behavior Delete returning should return a list as many value could have been deleted. ### Actual behavior Return only the first deleted value,...
A common pattern to initiate listening server from service: ```scala def serve(service: Service[Request, Response]): Resource[IO, ListeningServer] = Resource.make(IO(Http.server.serve(":8081", service))) { server => IO.defer(implicitly[ToAsync[Future, IO]].apply(server.close())) } ``` We may add an...
## Expected behaviour `graalvm-native-image:packageBin` produce an executable, that can be execute from anywhere if exported. ## Actual behaviour `graalvm-native-image:packageBin` produce an executable, that work properly if started in `target/graalvm-native-image`. But...
## Reproduction steps Scala version: 2.13.12 Java interfaces: ```java interface Parent { default Object bug() { return "Hello world"; } } interface Child extends Parent { @Override String bug(); }...
In our application, an `OutOfMemoryError` raised inside a fiber created from a `CompletableFuture` does not crash the JVM process. Instead, the error is caught and returned as a failed fiber...
**Description** When using the http4s JDK HTTP client, a `NullPointerException` is thrown if the `HttpResponse.body()` is null. This can occur, for example, when a proxy returns `407 Proxy Authentication Required`....