aboutsummaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorJosh Haberman <jhaberman@gmail.com>2015-12-30 14:03:49 -0800
committerJosh Haberman <jhaberman@gmail.com>2016-02-18 13:59:33 -0800
commit81e75c1f992aa44712a76485764611716f3f4bca (patch)
tree35f20d7f8f029e6d16530f582ad14238c8e06fba /CHANGES.txt
parent9ab11c6561abd5fe997a999f21799d160b0d14cf (diff)
downloadprotobuf-81e75c1f992aa44712a76485764611716f3f4bca.tar.gz
protobuf-81e75c1f992aa44712a76485764611716f3f4bca.tar.bz2
protobuf-81e75c1f992aa44712a76485764611716f3f4bca.zip
Some fixes for the most recent release notes.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 3023c812..c3503fc8 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,4 +1,4 @@
-2015-08-26 version 3.0.0-beta-1 (C++/Java/Python/Ruby/Nano/Objective-C/C#/JavaScript)
+2015-12-30 version 3.0.0-beta-2 (C++/Java/Python/Ruby/Nano/Objective-C/C#/JavaScript)
General
* Introduced a new language implementation: JavaScript.
* Added a new field option "json_name". By default proto field names are
@@ -35,6 +35,10 @@
and a few well-known types except for Any and Struct.
* Added runtime support for Any, Timestamp, Duration and FieldMask.
* [ ] is now accepted for repeated scalar fields in text format parser.
+ * Map fields now have proper O(1) performance for lookup/insert/delete
+ when using the Python/C++ implementation. They were previously using O(n)
+ search-based algorithms because the C++ reflection interface didn't
+ support true map operations.
Objective-C (Beta)
* Various bug-fixes and code tweaks to pass more strict compiler warnings.