This repository was archived by the owner on Dec 11, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathChanges
More file actions
250 lines (196 loc) · 7.77 KB
/
Changes
File metadata and controls
250 lines (196 loc) · 7.77 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
1.15 2014-09-30
- This distribution is now being maintained at
https://github.com/oliwer/mango.
1.14 2014-09-22
- Fixed packaging bug.
1.13 2014-09-21
- Updated Makefile.PL for version 2 of the CPAN distribution metadata
specification.
1.12 2014-09-12
- Fixed small connection management bug.
1.11 2014-09-11
- Fixed test that was depending on Mojolicious internals.
1.10 2014-09-06
- Added module Mango::Cursor::Query.
1.09 2014-09-01
- Improved Makefile.PL error message for 64-bit requirement.
1.08 2014-08-24
- Improved to_datetime method in Mango::BSON::Time to be able to handle
higher precision times.
1.07 2014-08-23
- Fixed small JSON serialization bug in Mango::BSON::Time.
1.06 2014-08-22
- Added to_datetime method to Mango::BSON::Time.
1.05 2014-08-10
- Added read_preference attribute to Mango::Cursor.
1.04 2014-07-25
- Fixed connection leak.
1.03 2014-07-25
- Improved Mango to avoid secondary nodes.
1.02 2014-07-24
- Fixed version handling in Mango::GridFS.
1.01 2014-06-28
- Improved update method in Mango::Collection to accept object ids.
(alexbyk)
- Fixed small bug in Mango::Cursor where callbacks would sometimes get the
wrong number of arguments.
1.0 2014-06-24
- Removed experimental status from distribution.
0.43 2014-06-15
- Improved remove method in Mango::Collection to accept object ids.
0.42 2014-06-04
- Added md5 method to Mango::GridFS::Readers.
- Fixed bug in Mango::GridFS::Writer where files could get the wrong MD5
checksum.
0.41 2014-06-02
- Added await_data attribute to Mango::Cursor.
0.40 2014-05-31
- Added inactivity_timeout attribute to Mango.
- Fixed Mojolicious 5.0 support.
0.39 2014-05-14
- Improved Mango::BSON performance.
0.38 2014-05-12
- Changed heuristics for number detection in Mango::BSON to better line up
with user expectations.
0.37 2014-05-12
- Added support for performing blocking and non-blocking operations at the
same time.
0.36 2014-05-05
- Added support for TO_BSON method to Mango::BSON.
0.35 2014-05-04
- Added num_to_return method to Mango::Cursor.
- Fixed bug where Mango::Cursor would request too many documents.
0.34 2014-05-02
- Fixed bug where some Mango::Collection methods passed the wrong invocant
to callbacks. (alexbyk)
0.33 2014-04-30
- Improved error message for old MongoDB versions.
0.32 2014-04-24
- Added to_bytes method to Mango::BSON::ObjectID.
- Improved Mango::BSON performance.
0.31 2014-04-23
- Improved support for pre-encoded BSON documents.
0.30 2014-04-08
- Removed delete, insert and update methods from Mango.
- Removed build_delete, build_insert and build_update methods from
Mango::Protocol.
- Removed decode_int32, decode_int64, encode_int32 and encode_int64 methods
from Mango::BSON.
- Renamed timeout attribute in Mango::Cursor to max_time_ms.
- Added support for MongoDB 2.6 wire protocol, MongoDB 2.4 is no longer
supported.
- Added support for bulk operations.
- Added max_bson_size and max_write_batch_size attributes to Mango.
- Added build_write_concern method to Mango::Database.
- Added bulk method to Mango::Collection.
- Added write_error method to Mango::Protocol.
- Added bson_raw function to Mango::BSON.
- Improved aggregate method in Mango::Collection to return cursors by
default.
- Improved aggregate method in Mango::Collection with explain support.
- Improved connection management with wire protocol version check.
- Improved Mango::BSON performance.
- Improved command performance.
- Improved storage efficiency of Mango::GridFS::Writer by lowering the
default chunk size to 255KB.
0.24 2014-02-27
- Added comment and timeout attributes to Mango::Cursor.
0.23 2014-01-22
- Fixed a few small operator overloading bugs.
0.22 2013-12-18
- Added options method to Mango::Collection.
0.21 2013-12-04
- Improved handling of missing files in Mango::GridFS::Reader.
0.20 2013-11-30
- Added from_string method to Mango.
0.19 2013-11-18
- Improved Mango::Cursor to allow $query key in queries.
0.18 2013-11-11
- Fixed concurrency bugs in Mango.
- Fixed bug in Mango::BSON where all objects that stringify to "1" were
considered booleans.
0.17 2013-10-30
- Added cursor and collection support for aggregation.
- Added add_batch method to Mango::Cursor.
- Added from_epoch method to Mango::BSON::ObjectID.
0.16 2013-10-12
- Added support for fallback servers.
- Fixed reconnect bugs.
0.15 2013-10-11
- Fixed mongos compatibility bugs.
0.14 2013-10-06
- Added DBRef support.
- Added dereference method to Mango::Database.
- Added bson_dbref function to Mango::BSON.
0.13 2013-09-21
- Added fields argument to find and find_one methods in Mango::Collection.
0.12 2013-08-17
- Fixed rewind bug in Mango::Cursor where the cursor would not be killed on
the server.
0.11 2013-08-14
- Changed return values of remove and update methods in Mango::Collection.
0.10 2013-08-06
- Improved connection management to be more fault-tolerant.
0.09 2013-07-28
- Added connection event to Mango.
- Improved connection management to be fork-safe.
0.08 2013-07-20
- Removed is_active method from Mango.
- Added max_scan attribute to Mango::Cursor.
- Added backlog method to Mango.
0.07 2013-07-18
- Added is_closed method to Mango::GridFS::Writer.
0.06 2013-07-17
- Added GridFS support.
- Added modules Mango::GridFS, Mango::GridFS::Reader and
Mango::GridFS::Writer.
- Added gridfs method to Mango::Database.
- Improved Mango::BSON performance. (avkhozov)
- Fixed non-blocking connection pool timing bug.
- Fixed ensure_index argument bug.
0.05 2013-07-06
- Changed heuristics for number detection in Mango::BSON to better line up
with user expectations.
- Changed to_epoch in Mango::BSON::Time to return a high resolution time.
- Added connection pool support for non-blocking operations.
- Added max_connections attribute to Mango.
- Added drop_index, index_information and stats methods to
Mango::Collection.
- Added to_string method to Mango::BSON::ObjectID.
- Added to_string method to Mango::BSON::Time.
- Added stats method to Mango::Database.
- Added TO_JSON method to Mango::BSON::Binary.
- Added TO_JSON method to Mango::BSON::Time.
- Improved compatibility with Mojolicious 4.0.
- Improved Mango::BSON performance. (avkhozov)
- Improved Mango::BSON::ObjectID to validate object ids.
- Improved exception handling for commands.
- Fixed support for empty keys in Mango::BSON.
- Fixed a few memory leaks.
0.04 2013-02-10
- Added collection_names method to Mango::Database.
- Added aggregate, build_index_name, find_and_modify map_reduce and save
methods to Mango::Collection.
- Added distinct method to Mango::Cursor.
- Changed remove and update methods in Mango::Collection to return the
number of documents affected.
- Fixed exception handling for commands.
0.03 2013-02-09
- Added hint, snapshot and tailable attributes to Mango::Cursor.
- Added create, drop and ensure_index methods to Mango::Collection.
- Added build_query, clone and explain methods to Mango::Cursor.
- Added command_error and query_failure methods to Mango::Protocol.
- Fixed array encoding in Mango::BSON.
- Fixed small exception handling bugs in Mango.
0.02 2013-02-07
- Added batch_size attribute to Mango::Cursor.
- Added count method to Mango::Cursor.
- Added next_id method to Mango::Protocol.
- Added multi and upsert options to update method in Mango::Collection.
- Added single option to remove method in Mango::Collection.
- Changed reply format from array to hash.
- Fixed a few exception handling bugs.
- Fixed limit functionality in Mango::Cursor.
- Fixed a few small timing bugs in Mango::Cursor.
0.01 2013-02-06
- First release.