Grzegorz Bielski
Grzegorz Bielski
As you may know from [kafka-flow's overview](https://evolution-gaming.github.io/kafka-flow/docs/overview.html), the library is tightly coupled with [kafka-journal](https://github.com/evolution-gaming/kafka-journal). But in reality, only the sources from the `com.evolutiongaming.kafka.flow.journal` package are involved in reading the journal....
Having [sbt-version-policy](https://github.com/scalacenter/sbt-version-policy) set up would be useful for catching any binary and source compatibility issues between versions. Resolves: https://github.com/evolution-gaming/kafka-flow/pull/620 Helps with: https://github.com/evolution-gaming/kafka-flow/issues/592
This PR introduces value class derivation in `generic-scala3` module. It's handled transparently using the same `deriveReader` / `deriveWriter` / `deriveConvert` methods. I think this is the last missing big feature...
When using: ```scala //> using scala "3.4.2" //> using options -Wunused:all -Wvalue-discard -Wnonunit-statement //> using dep "org.virtuslab::besom-core:0.3.2" //> using dep org.virtuslab::besom-aws:6.39.0-core.0.3 @main def main = Pulumi.run: Stack( aws.route53 .getZone(aws.route53.GetZoneArgs(name =...
Resolves https://github.com/evolution-gaming/kafka-flow/issues/593
In the scope of Scala 3 migration in https://github.com/exercism/scala/pull/836 old test generators were removed as they were quite stale and didn't work as expected for some time now, after upgrading...
Currently, the tests (`bin/test`) are really slow as they start a new sbt shell for each exercise. In the CI this takes around 20 minutes (!). Ideally this should be...
A CE2 version of the https://github.com/evolution-gaming/skafka/pull/436 Blocked by release of: https://github.com/evolution-gaming/cats-helper/pull/289 Main changes: - no CE `TestKit` in tests - `Concurrent` and `Timer` instead of `Temporal` - matching on `guaranteeCase`...