Inital Commit
[oweals/finalsclub.git] / node_modules / mongodb / HISTORY
1 0.9.6-8 
2 * Changed to using node.js crypto library MD5 digest
3 * Connect method support documented mongodb: syntax by (https://github.com/sethml)
4 * Support Symbol type for BSON, serializes to it's own type Symbol, Issue #302, #288
5 * Code object without scope serializing to correct BSON type
6 * Lot's of fixes to avoid double callbacks (https://github.com/aheckmann) Issue #304
7 * Long deserializes as Number for values in the range -2^53 to 2^53, Issue #305 (https://github.com/sethml)
8 * Fixed C++ parser to reflect JS parser handling of long deserialization
9 * Bson small optimizations
10
11 0.9.6-7 2011-07-13
12 * JS Bson deserialization bug #287
13
14 0.9.6-6 2011-07-12
15 * FindAndModify not returning error message as other methods Issue #277
16 * Added test coverage for $push, $pushAll and $inc atomic operations
17 * Correct Error handling for non 12/24 bit ids on Pure JS ObjectID class Issue #276
18 * Fixed terrible deserialization bug in js bson code #285
19 * Fix by andrewjstone to avoid throwing errors when this.primary not defined
20
21 0.9.6-5 2011-07-06
22 * Rewritten BSON js parser now faster than the C parser on my core2duo laptop
23 * Added option full to indexInformation to get all index info Issue #265
24 * Passing in ObjectID for new Gridstore works correctly Issue #272
25
26 0.9.6-4 2011-07-01
27 * Added test and bug fix for insert/update/remove without callback supplied
28
29 0.9.6-3 2011-07-01
30 * Added simple grid class called Grid with put, get, delete methods
31 * Fixed writeBuffer/readBuffer methods on GridStore so they work correctly
32 * Automatic handling of buffers when using write method on GridStore
33 * GridStore now accepts a ObjectID instead of file name for write and read methods
34 * GridStore.list accepts id option to return of file ids instead of filenames
35 * GridStore close method returns document for the file allowing user to reference _id field
36
37 0.9.6-2 2011-06-30
38 * Fixes for reconnect logic for server object (replays auth correctly)
39 * More testcases for auth
40 * Fixes in error handling for replicaset
41 * Fixed bug with safe parameter that would fail to execute safe when passing w or wtimeout
42 * Fixed slaveOk bug for findOne method
43 * Implemented auth support for replicaset and test cases
44 * Fixed error when not passing in rs_name
45
46 0.9.6-1 2011-06-25
47 * Fixes for test to run properly using c++ bson parser
48 * Fixes for dbref in native parser (correctly handles ref without db component)
49 * Connection fixes for replicasets to avoid runtime conditions in cygwin (https://github.com/vincentcr)
50 * Fixes for timestamp in js bson parser (distinct timestamp type now)
51
52 0.9.6 2011-06-21
53 * Worked around npm version handling bug
54 * Race condition fix for cygwin (https://github.com/vincentcr)
55
56 0.9.5-1 2011-06-21
57 * Extracted Timestamp as separate class for bson js parser to avoid instanceof problems
58 * Fixed driver strict mode issue
59
60 0.9.5 2011-06-20
61 * Replicaset support (failover and reading from secondary servers)
62 * Removed ServerPair and ServerCluster
63 * Added connection pool functionality
64 * Fixed serious bug in C++ bson parser where bytes > 127 would generate 2 byte sequences
65 * Allows for forcing the server to assign ObjectID's using the option {forceServerObjectId: true}
66
67 0.6.8
68 * Removed multiple message concept from bson
69 * Changed db.open(db) to be db.open(err, db)
70
71 0.1 2010-01-30
72 * Initial release support of driver using native node.js interface
73 * Supports gridfs specification
74 * Supports admin functionality