Skip to content

v0.0.14

Choose a tag to compare

@tatethurston tatethurston released this 18 Nov 23:52
· 42 commits to main since this release
d0992c6

v0.0.14

  • Fix intermittent EAGAIN issue encountered when compiling protos

  • Use glob imports for generated messages instead of destructuring. This preserves tree shaking, but preserves module namespacing to disambiguate name collisions between protos. Previously, identically named messages in different modules could causes a name collision, eg:

    // foo.proto
    message Foo {}
    // bar.proto
    import "foo.proto";
    message Foo {}

    Would result in errors in the generated code. Now, this is namespaced and works correctly.

Full Changelog: v0.0.13...v0.0.14