Skip to content

Releases: grpc-ecosystem/polyglot

v2.0.0

09 Sep 17:01
Compare
Choose a tag to compare

Overhauled Polyglot's command line options by using a different underlying library. This allows us to

  • distinguish between commands (list) and options (--add_protoc_includes).
  • distinguish between general options (applicable to all commands), and command specific options.
  • have options with values that contain spaces (e.g. --metadata with authentication details) .

Invoking Polyglot takes the following form now:

java -jar polyglot.jar [options] [command] [command specific options]

Both = and spaces are allowed to separate options from values (--add_protoc_includes=. or --add_protoc_includes .).

Please note that this change will break existing scripts after updating to the new version. Use the --help output to find out which option goes where on the command line.

v1.6.0

02 Feb 14:34
Compare
Choose a tag to compare
  • Fixed a bug where Polyglot would bail out if the specified output file didn't already exist.
  • Added support for protobuf's well-known-types, including proper handling of "Any".

v1.5.0

08 Dec 11:42
Compare
Choose a tag to compare
  • Made sure exit code 1 is returned if command line arguments fail to parse or the rpc fails.
  • Fixed a bug where Polyglot would error out if the remote server didn't support reflection.

v1.4.0

27 Oct 15:41
Compare
Choose a tag to compare
  • Added support for grpc server reflection.
  • Added support for custom metadata.
  • Upgraded the protoc version used to compile files to 3.2.0.

v1.3.0

07 Sep 11:09
Compare
Choose a tag to compare
  • Upgraded to grpc 1.4.0.
  • Added support for client certificates to TLS.

v1.2.0

20 Sep 08:50
Compare
Choose a tag to compare
  • Upgraded to grpc 1.0.0.
  • Removed the separate per-platform binaries, the same binary can now be used on all platforms.

v1.1.0

24 Jul 10:12
Compare
Choose a tag to compare

v1.0.0

07 May 10:08
Compare
Choose a tag to compare

Initial public release.