Couchdbkit version 0.5.5 released
New release for Couchdbkit.
It’s now based on latest restkit 3.2.0 so make sure to upgrade it before
upgrading. I will try to resume main changes since 0.5.0. I’ve failed to
update this blog since, sorry for that.
Full changelog is also here
What’s new ?
- New SchemaDict property, store dict of things.
Usage:
restkit 3.2.0
class A(DocumentSchema): # some properties pass class B(Document): p = SchemaDictProperty(A) a1 = A() a2 = A() b = B() b.p['str’] = a1 b.p12345 = a2
- support ISO-8601 DateTime format with a timezone offset in
- TestRunner in django extension
- Query views can return different Document instance based on doc_type
- Many fixes.
You can download latest release on
Pypi or check download page for other ways.