Skip to content

protoc_plugin-21.1.0

Compare
Choose a tag to compare
@osa1 osa1 released this 14 Aug 11:26
· 34 commits to master since this release
a852ba4
  • Generate code comments for annotated protobuf inputs. (#161)

  • Generate message constructor arguments by default again. New flag disable_constructor_args disables generating the arguments.

    Constructor arguments were removed in 21.0.0 as they increase dart2js binary sizes even when the arguments are not used.

    Example usage to disable constructor arguments:

    protoc --dart_out='disable_constructor_args,<other options>:.' ...
    

    (#850, #855)