forked from namlook/mongokit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
279 lines (225 loc) · 11.3 KB
/
CHANGELOG
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
Change Log
==========
v0.8.2
------
* fix #101 - validators condition fix
* fix #110 - support PyMongo >= 2.4 (import MongoClient) -- thanks to @mattbodman and @zavatskiy
* Fixed some spelling/grammar (thanks to @gekitsuu)
v0.8.1
------
* support pymongo 2.3
* small updates to validation messages (Merge pull request #94 from unpluggd/master)
* Fixed typo when throwing MaxDocumentSizeError in validate() (thanks to Andy Pavlo)
* added fix for unconditional access to __wrap on cursors (thanks to David T. Lehmann)
* Add .travis.yml for Travis CI (http://travis-ci.org/) (Marc Abramowitz)
* Fixed rendering issue in the docs. (thanks to Dougal Matthews)
* tweaked the error messages in validation for missing and unknown fields to aid in debugging projects (thanks to Phillip B Oldham)
v0.8.0
------
* Add spec file for rpm-based distributions (Merge pull request #63 from linuxnow/master)
* change document size limitation for mongodb 1.8 or later. Thanks to Aleksey Sivokon (Merge pull request #74 from key/master)
* validation of "" for an int (Merge pull request #79 from barnybug/master)
* Fix exception when loading documents with a custom type field missing (Merge pull request #80 from barnybug/master)
* Big documentation restructuration made by Sean Lynch (Merge pull request #82 from sean-lynch/master)
* Using rename no longer causes migrations throw an exception (Merge pull request #86 from matthewh/master)
* Some test is modified and added tox (Merge pull request #91 from aircastle/modifiytest)
* Replace pymongo.objectid with bson.objectid (Merge pull request #88 from behackett/master)
* Added Support for additional keyword-arguments for index-creation (Merge pull request #85 from mfelsche/master)
* Remove anyjson dependency and use builtin json instead
Thank you all for all your patches !
v0.7.2
------
* add inherited queries support (please see http://github.com/namlook/mongokit/wiki/Inherited-queries for more details)
v0.7.1
------
* change MongokitMasterSlaveConnection to MasterSlaveConnection for consistency
* fix #57 -- support pymongo > 1.9 in grid.py
* fix #45 -- remove automatique index creation
* fix #43 -- slicing a cursor should return a mongokit document, not dict
* Dont try to convert None struct to json (patch from @mLewisLogic thanks !)
* fix schemaless issue (thanks to Mihai Pocorschi for reporting it)
v0.7
----
* add `use_schemaless` feature ! please see the documentation for more informations
* Add equality test for mongokit operators (thanks to @allancaffee)
This allows developers to write unit tests on the structure
of their document classes when operators are used
* roll back find_and_modify for master branch (need pymongo 1.10 for that)
* many documentation fixes
* fix #55 -- Bug in VersionedDocument remove() method
* fix #53 -- Fixed a few spelling errors in README
* fix #52 -- Advanced bulk migration docs example is broken
* fix #51 -- pymongo.dbref is deprecated, use bson.dbref instead
* fix #49 -- Can't specify default values for lists of embedded objects
* fix #48 -- uuid.UUID support
* fix #41 -- add basestring to authorized types
* fix #40 -- Made some enhancements
* fix #39 -- KeyError when saving partially loaded documents
* fix #34 -- add find_and_modify method to Document
* fix #32 -- allow the structure to be empty (was: document.to_json())
* fix #24 -- Don't handle __database__/__collection__ attribute for virtual documents
v0.6
----
* fix error when check is True. Thanks to @dasmith for the patch
* Many english corrections in the documentation thanks to @allancaffee
* spliting doc and refactoring documentation
* remove unused MongoDocumentCursor
v0.5.13.1
---------
* fix #26 -- unable to install (debian lenny, py 2.5)
* fix #25 -- put the new url into the setup.py
v0.5.13
-------
* fix #21 -- required_fields weird behavior with autorefs
* fix #19 -- 'checked' field not listed in 'indexes' section
* fix #20 -- creating index on fields not in structure + optimize index generation
* fix #18 -- typo in the doc
* fix import. Dbref isn't in pymongo package anymore
* fix deprecation warning from pymongo's from_dict
* fix #8 -- allow to access Document via the db
v0.5.12.1
---------
* fix #17 -- got an unexpected keyword argument 'from_son'
* fix #15 -- typo in the doc
v.0.5.12
---------
* allow register method to be a decorator (thanks to Christopher Grebs for the inspiration)
* get ride of MongoDocumentCursor and use a subclass of pymongo's Cursor instead
* structure and descriptors validation is now done at object creation (not instantiation)
- *advantage* : mongokit is 40% faster
- *beware* : if you put a Document into a structure for reference, mongokit doesn't check anymore if use_autorefs is set
* add i18n descriptor validation + better i18n support
* code cleaning
v0.5.11
-------
* support latest pymongo version
* some changes in GridFS support (please read http://namlook.github.com/mongokit/gridfs.html)
* Deprecate atomic_save feature
* remove libmagic import from grid.py : to many trouble with this lib, we have to find another way to guess the content-type
* fix #79 -- Tries to migrate non-saved document
* fix #70 -- Set changes from set to list when a validation error occurs
* add contributor + fix email address to prevent spam
* fix deprecation warning of Python 2.6
* fix issue with validation and migration
* fix #75 -- add "version" attribute to module
v0.5.10
-------
* fix bug in autorefs when reference in double list
v0.5.9
------
* minors fixes
v0.5.8
------
* add rewind to cursor
* killed many bug in `from_json()`
* fix #66 - local variable 'l_objs' referenced before assignment
* fix #61 - Issue with indexing on multi-columns with directions
v0.5.7
------
* fix #63 - Creating index for each document instance operation. Brings speed improvements
* fix #60 - autorefs doesn't work with complex structures
* fix #62 - Dereference to model. Thanks to Christian Joudrey for the patch
* fix #64 - error with atomic_save when using embed document
* fix #65 - Lazy migrations with dict in list and documentation fix
v0.5.6
------
* add `atomic update`_ (just save the document again)
* add `init_type`_ to CustomType. This allow to fill an empty skeletton at instanciation
* add debian package build rules. Thanks to Sebastien Estienne
* add `lazy migration`_ and `bulk migration`_ support
* fix a bug in CustomType
* add `'check' option`_ in indexes descriptor
* add `untyped field support`_
* fix #58 - Document Validators not working for CustomType
* improve DotCollapsedDict by adding reference structure
.. _`atomic update` : http://namlook.github.com/mongokit/tutorial.html#updating-data
.. _`init_type` : http://namlook.github.com/mongokit/tutorial.html#custom-types
.. _`lazy migration` : http://namlook.github.com/mongokit/migration.html
.. _`bulk migration` : http://namlook.github.com/mongokit/migration.html#bulk-migration
.. _`'check' option` : http://namlook.github.com/mongokit/tutorial.html#indexes
.. _`untyped field support` : http://namlook.github.com/mongokit/tutorial.html#untyped-field
v0.5.5
------
* fix 54 - Add reload method. Please read the documentation_
* put generate_index into Document.__init__. This is usefull for instanciating Document like this : MyDoc(collection=mycol)
* fix #44 - add `set type support`_ + add validate() method to CustomType_
* fix #52 - Custom validation error messages (thanks to @cjoudrey for the patch)
* fix #50 - need optimizations in connection (won 20s on the benchmark_)
* fix #48 - Tuple assignment does not convert to list
* fix 49 - KeyError when using deep nested autorefs
.. _documentation : http://namlook.github.com/mongokit/tutorial.html#reload
.. _`set type support` : http://namlook.github.com/mongokit/tutorial.html#the-structure
.. _CustomType : http://namlook.github.com/mongokit/tutorial.html#custom-types
.. _benchmark : http://groups.google.com/group/mongodb-user/browse_thread/thread/77c91641858e1e20/ea71afc4de24f2e9
v0.5.4
------
* A `lot of features in GridFS`_ with api change
* fix bug in autorefs
* fix #37 - find_random crash if no collection is empty
* fix #38 - OverflowError in doc.to_json_type() when used over the datetime 2038
* fix #41 - Warnings when setting attributes before enabling use_dot_notation
* fix #40 - Better exception on bad structure. Thanks to peterbe for the patch
* fix #43 - Add ability to `collect errors`_ in one place instead of throwing exceptions while validating
* add `_dot_notation_warning` attribute. If false, disable all dot notation related warning
* add patch to enable data load from map/reduce. See http://groups.google.com/group/mongokit/msg/34efea4c178573d7
* fix bug spotted by Sebastien Estienne - error when using skip_validation with required_fields. Thanks
* fix issue while using {unicode:unicode} in structure and i18n at the same time
.. _`lot of features in GridFS` : http://namlook.github.com/mongokit/gridfs.html
.. _`collect errors` : http://namlook.github.com/mongokit/tutorial.html#quiet-validation-detection
v0.5.3
------
* fix default_value issue when using with dict and list (see #35)
* fix bug reported by Andrew Degtiariov : http://bit.ly/c1vcUv
* add clone and explain method to MongoDocumentCursor
* add distinct to cursor (thanks to Flaper87)
* fix index test
* fix : when a field is added to a saved document and not specified in the structure, the validation wasn't work properly
* use current database if DBRef has no database information. Please, see the doc
* support of pymongo 1.4
v0.5.2
------
* bugs fix in json import/export
* bugs fix in default values and required values
* `gridfs support`_
.. _`gridfs support` : http://namlook.github.com/mongokit/gridfs.html
v0.5.1
------
* `save()` doesn't return ``self`` anymore (was an API monster)
* fix bug in `find_one()` method. Now returns None if no Document is found
* fix bug when using default values
* adding i18n list support
* add i18n inheritance support
* adding index inheritance support
v0.5
----
* refactoring API which is getting much much more cleaner. Please see the migration_ page to keep your code up to date
* 100% code coverage by 162 unit tests
* lot of bug fix (too many to list them here)
* add document size validation
* add cross database reference support
* `i18n support`_
.. _migration : http://namlook.github.com/mongokit/migration.html
.. _`i18n support` : http://namlook.github.com/mongokit/i18n.html
v0.4
----
* add autoref support to belong_to (delete cascade)
* changing collection dynamically
* add immutable field (python tuple support)
* add direction and ttl to index support
* add connection sharing support
* add json import/export for MongoDocument
* full relation support (related_to)
* add long type support
v0.3.3
------
* add autoref support (thanks to @bwmcadams)
* add mongodb index support (thanks to @marcammann)
* adding CustomType (original idea from Phillip Oldham)
* support now all type of subclassed supported type
* add "delete cascade" feature
* add the possibility to skip the validation layer for more performances
* fix issue while passing queries to fetch() and update tutorial
* self._collection must not be None in __init__
* fix #11 - pylons_env extension documentation typo
* add more complete test + docstring
* fix issue #9 - bug with custom_types and nested dict in list