Results 15 issues of Raúl Piaggio

Example: ``` scala trait SomeEntityApi { def retrieve(limit: Option[Int], skip: Int): Future[Seq[Entity]] } ``` works, while: ``` scala trait SomeEntityApi { def retrieve(limit: Option[Int] = None, skip: Int = 0):...

With Monocle 3.1.0, ``` scala class OpticsSuite extends DisciplineSuite { final case class Nested(a: Int) object Nested { val a: Lens[Nested, Int] = Focus[Nested](_.a) } } ``` fails with ```...

Sphinx is installed in the sytem. However running `makeSite` fails and then: ``` [server] $ last server/sphinx:generateHtml [info] Generating Sphinx html documentation... [debug] Command: sphinx-build -a -E -b html -d...

Be able to set `wsRequest.withReadTimeout(duration)`, mainly to avoid read timeout exceptions in long-running stream requests. ### Play WS Version (2.5.x / etc) 2.6+ ### API (Scala / Java / Neither...

status:backlog

Attempting to compile the following code in Scala 3 ``` scala final case class Foo(bar: Int)(val ctx: String) implicit val reuse: Reusability[Foo] = Reusability.derive ``` results in ``` [error] 108...

In our apps, we use React context to store global implicits; eg: logger, effect type-class instances, web client backends, etc. I'm thinking it would be nice to have something like,...

We're trying to use React Context in order to avoid passing context objects around everywhere. Although `scalajs-react` implements `provide` and `consume` for contexts, I couldn't find a way to invoke...

Thank you for this great library! It's incredibly useful together with Diode+React. Here's a suggestion, which I think naturally falls within the domain of chimney: Being able to patch a...

enhancement
blocked
dragons ahead

Here's the first iteration to adapt the library to different contexts with a minimal change in the API. Please see the tests in `ContextSpec.scala`. I don't consider this PR ready...

We use this library on the server side and are thankful for it. Now that play-json is available in Scala.js, we would really appreciate it if you could release this...