v0.15.0
0.15.0 - 2024-04-13
New Features
-
[
refined4s-core
] AddNonBlankString
which can be neither all whitespace chars nor an empty String (#281)NonBlankString("") // Invalid value: [""]. It must be not all whitespace non-empty String NonBlankString(" ") // Invalid value: [" "]. It must be not all whitespace non-empty String NonBlankString(" ") // Invalid value: [" "]. It must be not all whitespace non-empty String NonBlankString("\n") // Invalid value: ["\n"]. It must be not all whitespace non-empty String NonBlankString("\t") // Invalid value: ["\t"]. It must be not all whitespace non-empty String NonBlankString("\t\n") // Invalid value: ["\t\n"]. It must be not all whitespace non-empty String NonBlankString(" \t \n") // Invalid value: [" \t \n"]. It must be not all whitespace non-empty String
-
[
refined4s-cats
] Addcats
support forNonBlankString
(#283) -
[
refined4s-circe
] Addcirce
support forNonBlankString
(#284) -
[
refined4s-pureconfig
] Addpureconfig
support forNonBlankString
(#285) -
[
refined4s-doobie
] Adddoobie
support forNonBlankString
(#286) -
[
refined4s-extras-render
] Addextras-render
support forNonBlankString
(#287) -
[
refined4s-tapir
] Addtapir
support forNonBlankString
(#288)