James Romeril

Results 8 issues of James Romeril

Quite a simple fix :)

Running `go test . -json` does not produce usable output when using Ginkgo. To be fully compatible with standard go tooling, producing test events that conform to the [test2json spec](https://golang.org/cmd/test2json/)...

v2

Small typo fix `compatility` -> `compatibility`

- `fill()` appends 0's to the end of the array, instead of prepending. - `octet()` is just shorthand for `fill(8)` so it suffers the same issue. - `fromHex('F0')` returns `[0,...

I've created a new PR that shows how using the `Trigram` type introduced in #3 can save time and allocations over `string`. The advantages of using a triple of rune...

A type, `Trigram` is defined as 3 runes. This saves time spent in the expensive allocation. Benchmarks show a **2.6x** improvement with this simple fix alone. **Before:** ``` goos: darwin...

~~One line fix is pretty self-explanatory.~~ Update: it's still one line, but not-so self-explanatory 😅 If a client interceptor hides an error, [this type assertion](https://github.com/connectrpc/connect-go/blob/74a6754f29185b85fefa2915bf8fb680a36ca8f0/client.go#L116) will fail. This is because...

## Description The go-jsonschema generator fails to handle `anyOf` schemas that contain an array type with enum items alongside other types. ## Error Message ``` could not generate type for...