bson 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/HISTORY.md +10 -0
- package/README.md +3 -1
- package/browser_build/bson.js +15843 -18229
- package/lib/bson/bson.js +12 -4
- package/package.json +1 -1
package/HISTORY.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
<a name="1.0.6"></a>
|
|
2
|
+
## [1.0.6](https://github.com/mongodb/js-bson/compare/v1.0.5...v1.0.6) (2018-03-12)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **serialization:** support arbitrary sizes for the internal serialization buffer ([abe97bc](https://github.com/mongodb/js-bson/commit/abe97bc))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
1
11
|
<a name="1.0.5"></a>
|
|
2
12
|
## 1.0.5 (2018-02-26)
|
|
3
13
|
|
package/README.md
CHANGED
|
@@ -68,7 +68,9 @@ console.log('doc_2:', doc_2)
|
|
|
68
68
|
|
|
69
69
|
### BSON types
|
|
70
70
|
|
|
71
|
-
For all BSON types documentation, please refer to the
|
|
71
|
+
For all BSON types documentation, please refer to the following sources:
|
|
72
|
+
* [MongoDB BSON Type Reference](https://docs.mongodb.com/manual/reference/bson-types/)
|
|
73
|
+
* [BSON Spec](https://bsonspec.org/)
|
|
72
74
|
|
|
73
75
|
### BSON serialization and deserialiation
|
|
74
76
|
|