Graham Cox

Results 60 comments of Graham Cox

> I don't really know what Prism is, so not sure if that's normal :P is there anything else I could potentially do here? Sorry! Prism is this: https://stoplight.io/open-source/prism It's...

Maybe. Regardless though, it seems that Ketting is working correctly *to the HAL Forms spec* - just that HAL Forms itself doesn't account for this use case - and I've...

It *was* sending a body though. The HTTP request was: ``` POST /users/auth0%7C6240a09cc665610070aa5bfb/verify_email HTTP/1.1 Host: localhost:4010 User-Agent: Ketting/7.5.1 Accept: application/prs.hal-forms+json;q=1.0, application/hal+json;q=0.9, application/vnd.api+json;q=0.8, application/vnd.siren+json;q=0.8, application/vnd.collection+json;q=0.8, application/json;q=0.7, text/html;q=0.6 Accept-Language: en-GB Accept-Encoding: gzip,...

Prism is rejecting the request not because the request is invalid, but because it's invalid *with regards to the OpenAPI spec*. The problem at that end is that the OpenAPI...

I've got the same problem. However, I'm putting navigation links into my dropdown - courtesy of react-router - and I'm finding that once I've used one of these links the...

I've been getting this as well, and upgrading to 1.3.1 doesn't seem to have fixed it ☹️ Going to try removing the homebrew version and install the amd64 one instead...

The amd64 version seems to work fine. However, I've noticed that connecting using my home internet (1GBps, but supports IPv6) is *significantly* slower than via my phone (4G, but doesn't...

No, but then I haven't tried it with more recent versions of Babel or Mockery since then. All I did in the end was write a helper file to just...

I've just come across this by virtue of the fact that: * "921ef402-cd4c-4be6-8483-a00566a43f60" -> Correctly succeeds * " 921ef402-cd4c-4be6-8483-a00566a43f60" -> Correctly fails to parse * "921ef402-cd4c-4be6-8483-a00566a43f60 " -> Correctly fails...

An alternative solution for this could be something like `Context.RespondWith(r ResponseMessage)` where `ResponseMessage` is simply: ``` type ResponseMessage interface { SendResponse(c echo.Context) } ``` This way, client-types can implement this...