Matthieu Monsch
Matthieu Monsch
I took a quick look at the [latest specification](http://avro.apache.org/docs/1.9.0/spec.html) and it looks like the only updates are: + [Single object encoding](http://avro.apache.org/docs/1.9.0/spec.html#single_object_encoding) (actually introduced in `1.8.2`) + A new UUID [logical...
I'm unable to reproduce this. Can you add more context (browser, `avsc` version, ...)?
Setting `state.ended` might violate stream invariants; I would not recommend it. It's hard for me to say more without being able to reproduce it. My next step would be to...
Hi @bdrobinson. The registry is used for example to support [custom `long` types](https://github.com/mtth/avsc/wiki/Advanced-usage#custom-long-types) and modular type definitions (see https://github.com/mtth/avsc/issues/305). I agree that mutating the options object can be surprising. Since...
Hi @nicolaslt. Thanks for bringing this up. From reading through the link, `avsc` can already provide limited support via [type hooks](https://github.com/mtth/avsc/wiki/API#typeforschemaschema-opts). Type hooks have limitations which won't fit all use-cases...
Hi @MichaelHirn. Thanks for bringing this up, I wasn't aware of this v1.9 change. `avsc` does not currently support this type of IDL but probably should. How urgent is this...
Hi @crypticmind, `avsc` doesn't support decimal logical type sugar in IDL files yet. In the meantime, you can use [annotations](https://avro.apache.org/docs/current/idl.html#minutiae_annotations). It would look something like: ``` protocol P { record...
Hey @tobalsgithub, I don't know enough about TypeScript typings to say what the best way forward is; from reading the issue you linked, it sounds like `--skipLibCheck` is a reasonable...
> Would it not be possible as a workaround to use two entry points into the package? One for node, the other for web? That sounds like a good idea...
There are no plans to do so but this sounds like a reasonable idea: I would be happy to review a PR which isolates code-generation and provides an alternate--optional--implementation. (These...