nemoo
nemoo
I want to use slick-pg with the great https://github.com/gitbucket/blocking-slick It provides its own api and is used like this: import com.github.takezoe.slick.blocking.BlockingPostgresDriver.blockingApi._ I am strugling to combine the slick-pg with blocking-slick....
Not an issue but more of a question. testcontainers-java now features a module for lightweight Kubernetes clusters called K3s: https://github.com/testcontainers/testcontainers-java/blob/master/modules/k3s/src/main/java/org/testcontainers/k3s/K3sContainer.java The module documentation can be found here: https://www.testcontainers.org/modules/k3s/ Will this...
I tried this install method on ubuntu: curl -fL https://github.com/coursier/launchers/raw/master/cs-x86_64-pc-linux.gz | gzip -d > cs && chmod +x cs && ./cs setup When running the setup part, I get this...
# Pull Request Checklist * [x] Have you read [How to write the perfect pull request](https://github.blog/2015-01-21-how-to-write-the-perfect-pull-request/)? * [x] Have you read through the [contributor guidelines](https://www.playframework.com/contributing)? * [x] Verified necessity of...
Slick and play-slick have released RC1 versions that allow testing of slick 3.5 with scala 3. It would be great if we could also have an RC1 version of blocking-slick...
Since somebody else had the same problem, I am now opening this ticket. I guess lots of users who are now starting to use scala 3 will run into this...
Let's be honest, this is a feature request, not a bug report. Play-json currently supports Enumerations out of the box via methods like `Json.formatEnum(X)` https://github.com/playframework/play-json/blob/main/play-json/shared/src/main/scala/play/api/libs/json/Reads.scala#L437 It would be great if...
Is there a timeline for the upgrade of statsd to Play 2.4.0?
In dev mode, when adding line `db.mydb.migration.auto=true` to application.conf, the applications are automatically applied on application startup. Yet, when I look at the implementation, nothing should be applied automatically when...
Scala-cli 1.2.0 Windows 11 **Describe the bug** The "exclude" directive is not honored for directories under Windows. **To Reproduce** create Main.scala: ``` //> using exclude "input" @main def go =...