aboutsummaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorJosh Haberman <jhaberman@gmail.com>2016-05-12 17:55:56 -0700
committerJosh Haberman <jhaberman@gmail.com>2016-05-12 17:55:56 -0700
commitd346f4998db29239b0cdaa1e3d3beaa2591e7c69 (patch)
treeba8491ba56f59a9485841e4723fbc649423f1d7b /CHANGES.txt
parent9f841148643deae5380c80229277089f3f3093fb (diff)
downloadprotobuf-d346f4998db29239b0cdaa1e3d3beaa2591e7c69.tar.gz
protobuf-d346f4998db29239b0cdaa1e3d3beaa2591e7c69.tar.bz2
protobuf-d346f4998db29239b0cdaa1e3d3beaa2591e7c69.zip
Added release notes for Ruby and JavaScript.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt15
1 files changed, 14 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index bc969ecb..5c6b6d10 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -91,7 +91,20 @@
* Improvements in JSON formatting and parsing
Javascript (Alpha)
- * TODO(haberman)
+ * Better support for "bytes" fields: bytes fields can be read as either a
+ base64 string or UInt8Array (in environments where TypedArray is supported).
+ * New support for CommonJS imports. This should make it easier to use the
+ JavaScript support in Node.js and tools like WebPack. See js/README.md for
+ more information.
+ * Some significant internal refactoring to simplify and modularize the code.
+
+ Ruby (Alpha)
+ * JSON serialization now properly uses camelCased names, with a runtime option
+ that will preserve original names from .proto files instead.
+ * Well-known types are now included in the distribution.
+ * Release now includes binary gems for Windows, Mac, and Linux instead of just
+ source gems.
+ * Bugfix for serializing oneofs.
C++/Java Lite (Alpha)
A new "lite" generator parameter was introduced in the protoc for C++ and