You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BSON can now be configured to validate keys, this defaults to false but if set to true a BSON::String::IllegalKey exception will get raised for keys that contain a '.' or start with '$':
This is a new major version of the bson gem. The most notable change is the implementation and use of ByteBuffers instead of Strings, which greatly improves the serialization/deserialization performance (#to_bson/#from_bson).
RUBY-1019 Performance improvements; implementation and use of ByteBuffers instead of Strings
Remove unused gems
Use [] instead of fetch in hashes
Update for JRuby 9
RUBY-1071 Integer#to_bson_key should return a String
Serialize Symbols to String bson types
BSON::ObjectId conversion function passes ObjectIds through (@jesjos)