Piotr Krzemiński

Results 43 comments of Piotr Krzemiński

Having case class that combines containers (`NestedContainer`), this should be also achievable by first proposal: https://github.com/scalalandio/chimney/issues/100#issuecomment-480563946

@ittaiz many people ask for this feature recently - I think it should be next top priority. But it requires a lot of time to design it correctly, so I...

Yes, there are plans of exploring possibilities of how we could support Scala 3. Chimney heavily depends on Scala 2 macros and compile-time reflection which were discontinued in its current...

Hey, sure, it's possible with octopus. I'm guessing you have some base trait and few case classes extending it. ``` sealed trait Person { def id: Int def name: String...

Currently there is no direct support for constructing error messages based on validated entities values. I think it may be a good idea for a feature 👍 --- In terms...

Hi @rfuerst87. Yes, your assumption about defining validator on `String` is correct - it would be applied to all strings, to that's not the best idea. But you can do...

Sure, sounds good 👍 PRs welcome.

Thanks 👍 Would you mind committing re-formatted code in the same PR and adding scalafmt checks to the CI build?

Actually you can using `scalafmtCheck` of the `sbt-scalafmt` plugin: https://scalameta.org/scalafmt/docs/installation.html#task-keys

@rgancarz thanks for challenging idea. I was considering few solutions and I think I came up with some conclusions. If we allow for arbitrary transformations during validation / normalization (`T...