Silas Davis
Silas Davis
Currently you can have nice colourful EDN rendered, or you can have nicely indented EDN rendered in monochrome with `pprint`. It would be nice to have plain Clojure code syntax...
This is a breaking change because: - Strict mode is now the default for yaml.v3 - String-valued boolean support has been dropped for YAML 1.2 spec compliance - Default indentation...
#### Bug Report Checklist - [ ] Have you provided a full/minimal spec to reproduce the issue? - [x] Have you validated the input using an OpenAPI validator ([example](https://apidevtools.org/swagger-parser/online/))? -...
Often I define named types like: ```go type Balances []Balance func (b Balances) DoSpecialStuff() { ... } ``` Where `Balance` may be a protobuf type it would be useful to...
Many of the log statements have a semi-structured format with `key=value` substrings. It is useful operationally to have distinct key-values for downstream loggers like elasticsearch, logstash,etc. I propose we swap...
See description from commit below, but also: - I prefer to keep my Go builds pure Go if possible (various reasons, some here: https://dave.cheney.net/2016/01/18/cgo-is-not-go) - In particular static CGO (i.e....
Is this something you would consider/have considered? It seems to me like it would be an appropriate features to situate in authn-server and It's something I need. For example, by...
I made this tool: https://github.com/monax/relic to help keep a changelog. It produces a changelog from a code-defined history structure. The idea is that it can be used to drive CI...
Allow override of type mapping form config by adding `types` section that takes a map of postgres type names to `Type`: ```json { "transforms": [ ... ], "types": { "int:":...
I have been enjoying 'database-first domain modelling', and also `io-ts` (having come across it here) (thanks). Thinking about higher-order types, custom types, and type overrides #60 at the same time...