Thijs Broersen

Results 30 issues of Thijs Broersen

As codecs for case class instances can be chosen (e.g. Jackson, Circe, Json4s) there is still a core dependency on Jackson. I got the following error: `com.fasterxml.jackson.databind.JsonMappingException: Scala module 2.11.4...

enhancement
pinned

Hi Flavio, I found out that when an invariant statement outputs false it is immediately executed again before throwing the InvariantViolationException. Is this correct? Kind regards, Thijs

enhancement

This week I started using Macroid and reading through the documentation. While using it yesterday I suddenly the 2.0.0-M4 release was not available anymore ... After browsing the repositories I...

I like using Bazel but I find it a pain that I have to maintain a duplicate list of the same dependencies: - one in `package.json` - one in `BUILD.bazel`...

enhancement

Regarding the work-around to fix the height of an iframe: I experienced issues in jupyter-lab with the height so I started debugging and wrote a custom method to get my...

As a user I would also like quality factors within an Accept-header to be respected. E.g. ``` Input .get("/test") .withHeaders("Accept" -> "text/plain;q=0.3,application/json;q=0.9") ``` Currently the quality factors are ignored.

enhancement
feature

I was looking for a protobuf schema validator (without creating language class files :upside_down_face: ) and found this project. I tried validation a simple message with unknown field types but...

enhancement

I discovered that when e.g. GitHub API is not available this action still succeeds, should it? Related line is prob: https://github.com/repo-sync/pull-request/blob/ff8726ae82c9970bde6527e419133aa167297c40/entrypoint.sh#L87

`AsyncDBSession` does `queryLogging` upfront and does not include query duration like `StatementExecutor` does. It looks like a wrong implementation. Or is there a specific reason to it? `queryLogging` does use...

valueMap does not preserve multi-properties, the conversion to map only keeps a single value per key. I think valuemap should return List[A] Current implementation: ``` def valueMap[A: DefaultsToAny]: Map[String, A]...