From f230d985abfc8c61157dd80f69ca109994f55f0b Mon Sep 17 00:00:00 2001 From: dcodeIO Date: Wed, 11 Jan 2017 02:30:58 +0100 Subject: [PATCH] Docs: Updated changelog for 6.4.6 --- CHANGELOG.md | 14 ++++++++++++++ cli/pbjs.js | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3225c44b7..74d633abd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# [6.4.6](https://github.com/dcodeIO/protobuf.js/releases/tag/6.4.6) + +## Fixed +[:hash:](https://github.com/dcodeIO/protobuf.js/commit/e11012ce047e8b231ba7d8cc896b8e3a88bcb902) Case-sensitively test for legacy group definitions, fixes [#638](https://github.com/dcodeIO/protobuf.js/issues/638)
+[:hash:](https://github.com/dcodeIO/protobuf.js/commit/7e57f4cdd284f886b936511b213a6468e4ddcdce) Properly parse text format options + simple test case, fixes [#636](https://github.com/dcodeIO/protobuf.js/issues/636)
+ +## Docs +[:hash:](https://github.com/dcodeIO/protobuf.js/commit/fe4d97bbc4d33ce94352dde62ddcd44ead02d7ad) Added SVG logo, see [#629](https://github.com/dcodeIO/protobuf.js/issues/629)
+ +## Other +[:hash:](https://github.com/dcodeIO/protobuf.js/commit/57990f7ed8ad5c512c28ad040908cee23bbf2aa8) Also refactored Service and Type to inherit from NamespaceBase, see [#635](https://github.com/dcodeIO/protobuf.js/issues/635)
+[:hash:](https://github.com/dcodeIO/protobuf.js/commit/fe4d97bbc4d33ce94352dde62ddcd44ead02d7ad) Moved TS-compatible Namespace features to a virtual NamespaceBase class, compiles with strictNullChecks by default now, see [#635](https://github.com/dcodeIO/protobuf.js/issues/635)
+[:hash:](https://github.com/dcodeIO/protobuf.js/commit/fe4d97bbc4d33ce94352dde62ddcd44ead02d7ad) Minor codegen enhancements
+ # [6.4.5](https://github.com/dcodeIO/protobuf.js/releases/tag/6.4.5) ## Fixed diff --git a/cli/pbjs.js b/cli/pbjs.js index 142e3efd2..3079420b2 100644 --- a/cli/pbjs.js +++ b/cli/pbjs.js @@ -8,8 +8,8 @@ util.setup(); var protobuf = require(".."), minimist = require("minimist"), - chalk = require("chalk"), - glob = require("glob"); + chalk = require("chalk"), + glob = require("glob"); var targets = util.requireAll("./targets");