This repository was archived by the owner on Sep 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathHISTORY
80 lines (61 loc) · 2.02 KB
/
HISTORY
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
1.0.5 2016-01-20
----------------
- Better identify Map instances, avoid throwing on anything containing an entries field, #37.
1.0.4 2016-01-11
----------------
- #204 remove Buffer.from as it's partially broken in early 4.x.x. series of node releases.
1.0.3 2016-01-03
----------------
- Fixed toString for ObjectId so it will work with inspect.
1.0.2 2016-01-02
----------------
- Minor optimizations for ObjectID to use Buffer.from where available.
1.0.1 2016-12-06
----------------
- Reverse behavior for undefined to be serialized as NULL. MongoDB 3.4 does not allow for undefined comparisons.
1.0.0 2016-12-06
----------------
- Introduced new BSON API and documentation.
0.1.13 2015-10-05
-----------------
- Upgrade to nan 2.0.9 (Issue #27, https://github.com/guymguym)
- Removed pre-gyp code as no longer needed.
0.1.12 2015-08-06
-----------------
- Undefined fields serialized as null values in arrays.
0.1.11 2015-08-06
-----------------
- Undefined fields are omitted from serialization.
0.1.10 2015-06-17
-----------------
- No longer print to console.error if driver did not load correctly.
0.1.9 2015-06-17
----------------
- Removed deprecated Node C++ method for Nan.h based ones.
0.1.8 2015-06-12
----------------
- Refactored to use single 16MB buffer for all serialization.
0.1.7 2015-05-15
----------------
- Attempt node-pre-gyp otherwise fallback to node-gyp or just fail.
0.1.6 2015-05-07
----------------
- Updated to use bundled node-pre-gyp as install method.
0.1.5 2015-05-07
----------------
- Updated npmignore to remove any non-needed artifacts.
0.1.4 2015-05-05
----------------
- Updated nan.h dependency to 1.8.x.
0.1.3 2015-04-23
----------------
- Windows only prebuilt support (Issue #6, https://github.com/imlucas)
0.1.2 2015-04-20
----------------
- Removed pre-packaged binaries from build.
0.1.1 2015-04-20
----------------
- Merged node-pre-gyp support (Issue #1, https://github.com/imlucas)
0.1.0 2015-03-26
----------------
- First pusht to npm, cleanup of project and left only c++ and test harnesses.