Skip to content

Commit acea4d7

Browse files
committed
Other: Updated dist files and changelog
1 parent 3405ae8 commit acea4d7

12 files changed

+33
-7
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# [6.7.2](https://github.com/dcodeIO/protobuf.js/releases/tag/6.7.2)
2+
3+
## New
4+
[:hash:](https://github.com/dcodeIO/protobuf.js/commit/a7621be0a56585defc72d863f4e891e476905692) Split up NamespaceDescriptor to make nested plain namespaces a thing, see [#749](https://github.com/dcodeIO/protobuf.js/issues/749)<br />
5+
6+
## Docs
7+
[:hash:](https://github.com/dcodeIO/protobuf.js/commit/e980e72ae3d4697ef0426c8a51608d31f516a2c4) More README<br />
8+
[:hash:](https://github.com/dcodeIO/protobuf.js/commit/1f76749d0b9a780c7b6cb56be304f7327d74ebdb) Replaced 'runtime message' with 'message instance' for clarity<br />
9+
[:hash:](https://github.com/dcodeIO/protobuf.js/commit/e6b6dedb550edbd0e54e212799e42aae2f1a87f1) Rephrased the Usage section around the concept of valid messages<br />
10+
[:hash:](https://github.com/dcodeIO/protobuf.js/commit/0d8100ba87be768ebdec834ca2759693e0bf4325) Added toolset diagram to README<br />
11+
12+
## Other
13+
[:hash:](https://github.com/dcodeIO/protobuf.js/commit/3405ae8d1ea775c96c30d1ef5cde666c9c7341b3) Touched benchmark output metrics once more<br />
14+
[:hash:](https://github.com/dcodeIO/protobuf.js/commit/e36b228f4bb8b1cd835bf31f8605b759a7f1f501) Fixed failing browser test<br />
15+
[:hash:](https://github.com/dcodeIO/protobuf.js/commit/7b3bdb562ee7d30c1a557d7b7851d55de3091da4) Output more human friendly metrics from benchmark<br />
16+
[:hash:](https://github.com/dcodeIO/protobuf.js/commit/59e447889057c4575f383630942fd308a35c12e6) Stripped down static bench code to what's necessary<br />
17+
[:hash:](https://github.com/dcodeIO/protobuf.js/commit/f88dad098282ece65f5d6e224ca38305a8431829) Revamped benchmark, now also covers Google's JS implementation<br />
18+
[:hash:](https://github.com/dcodeIO/protobuf.js/commit/45356be81ba7796faee0d4d8ad324abdd9f301fb) Updated dependencies and dist files<br />
19+
120
# [6.7.1](https://github.com/dcodeIO/protobuf.js/releases/tag/6.7.1)
221

322
## New

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,13 @@ google-protobuf x 42,050 ops/sec ±0.85% (91 runs sampled)
741741
google-protobuf was 85.5% ops/sec slower (factor 6.9)
742742
```
743743

744+
These results are achieved by
745+
746+
* generating type-specific encoders, decoders, verifiers and converters at runtime
747+
* configuring the reader/writer interface according to the environment
748+
* using node-specific functionality where beneficial and, of course
749+
* avoiding unnecessary operations through splitting up [the toolset](#toolset).
750+
744751
You can also run [the benchmark](https://github.com/dcodeIO/protobuf.js/blob/master/bench/index.js) ...
745752

746753
```

bench/suite.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function newSuite(name) {
2626
process.stdout.write("\n" + chalk.white(pad(fastest.name, padSize)) + " was " + chalk.green("fastest") + "\n");
2727
benches.slice(1).forEach(function(bench) {
2828
var hz = getHz(bench);
29-
var percent = (1 - hz / fastestHz);
29+
var percent = 1 - hz / fastestHz;
3030
process.stdout.write(chalk.white(pad(bench.name, padSize)) + " was " + chalk.red((percent * 100).toFixed(1) + "% ops/sec slower (factor " + (fastestHz / hz).toFixed(1) + ")") + "\n");
3131
});
3232
}

dist/light/protobuf.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/light/protobuf.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/light/protobuf.min.js.gz

0 Bytes
Binary file not shown.

dist/minimal/protobuf.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/minimal/protobuf.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/minimal/protobuf.min.js.gz

-2 Bytes
Binary file not shown.

dist/protobuf.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/protobuf.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/protobuf.min.js.gz

-2 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)