Sindre Røkenes Myren

Results 30 issues of Sindre Røkenes Myren

#59 breaks parsing of query / post parameters. The fix is meant to allow heder values with `=` in them, but breaks the case of having GET query or POST...

We should improve the test coverage of the various packages. With more reasoning below, the following should have tests: - All code that is _not_ generated should have full test...

[zube]: Ready

**Is your feature request related to a problem? Please describe.** Sometimes it would be nice to be able to _import_ arbitrary data from other YAML (or JSON) files, and use...

enhancement

If one could easily determine if a task is up-to-date, tusk could potentially become more useful as a build tool, especially if such a feature is later paired with a...

enhancement
thinking

I guess all that would be needed, would be to expose a method: ``` // SetSource lets you customize the source used for generating random numbers. func SetSource(src rand.Source) {...

When running zenrpc in a package that both defines and imports a `zenrpc.Service` type, then it will generate (incorrect) code for the imported services. I.e. if having: ``` cmd/mycmd main_zenrpc.go...

When either using named arguments, or when passing arguments into struct parameters, it would be good for the generated zenrpc API to return an error on unkown fields. This is...

feature

https://github.com/semrush/zenrpc/blob/10f2c484a47b84e17d56e526608ccd9e6f42910e/smd/model.go#L85 The `Definition` type does not allow supplying `Items`. This means that even with a custom `SMD()` override method, it's not possible to correctly document arrays of arrays where the...

Setting a default value through magic comments, e.g.: ``` //zenrpc:bar="bar" Foobar func (srv Service) Foo(ctx contect.Context, foo string) (*Result, *zenrpc.Error) { // ... } ``` Appear not too generate a...

bug
parser