Skip to content

Commit 90e0258

Browse files
committedMar 17, 2012
Updated and moved the changelog to a separate file.
1 parent 200bf14 commit 90e0258

File tree

3 files changed

+42
-26
lines changed

3 files changed

+42
-26
lines changed
 

‎CHANGELOG.rst

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
Changelog
2+
=========
3+
4+
Version 0.9.X
5+
-------------
6+
7+
* Moved all code required for value conversion for / deconversion from
8+
database to ``DatabaseOperations``
9+
* Moved nonrel fields' values handling to toolbox, allowing backends to
10+
just select an appropriate storage type (including string and binary)
11+
* Moved decimal-to-string implementation preserving comparisons to
12+
toolbox (previously in the GAE backend)
13+
* Let backends use the QuerySet's ``standard_ordering`` when no field
14+
ordering is defined
15+
* Fixed conversion of values for ``EmbeddedModelField`` subfields
16+
* Fixed preparation of lookup arguments for ``List/Set/DictField``
17+
* Fixed value comparisons in in-memory filtering (only used by GAE)
18+
* Fixed ``update`` for ``EmbeddedModelField`` nested in a nonrel field
19+
20+
Version 0.9.1
21+
-------------
22+
23+
* Added lazy model lookups to EmbeddedModelField
24+
* Simplified CapturingTestSuiteRunner by using Django's integrated unittest2 package
25+
* Several new unit tests
26+
27+
Version 0.8.1
28+
-------------
29+
30+
* Added default implementation for ``check_aggregate_support()``. Contributed by Jonas Haag
31+
* Added ``ListField``/etc. support for fields that require ``SubfieldBase``
32+
33+
Version 0.8
34+
-----------
35+
36+
This release unifies the field types of all existing nonrel backends.
37+
38+
* Merged with ``ListField`` from MongoDB backend. Contributed by Jonas Haag
39+
* Added ``SetField``, ``DictField``, and ``RawField``. Contributed by Jonas Haag
40+
* Fixed support for proxy models. Contributed by Vladimir Mihailenco
41+
* Several cleanups and minor bug fixes

‎MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
include LICENSE
22
include README.rst
3+
include CHANGELOG.rst

‎README.rst

-26
Original file line numberDiff line numberDiff line change
@@ -17,32 +17,6 @@ Simply add ``'djangotoolbox'`` to ``INSTALLED_APPS`` **after**
1717
require JOINs. If you still need permission handling you should
1818
use the `nonrel permission backend`_.
1919

20-
Changelog
21-
=============================================================
22-
23-
Version 0.9.1
24-
-------------------------------------------------------------
25-
26-
* Added lazy model lookups to EmbeddedModelField
27-
* Simplified CapturingTestSuiteRunner by using Django's integrated unittest2 package
28-
* Several new unit tests
29-
30-
Version 0.8.1
31-
-------------------------------------------------------------
32-
33-
* Added default implementation for ``check_aggregate_support()``. Contributed by Jonas Haag
34-
* Added ``ListField``/etc. support for fields that require ``SubfieldBase``
35-
36-
Version 0.8
37-
-------------------------------------------------------------
38-
39-
This release unifies the field types of all existing nonrel backends.
40-
41-
* Merged with ``ListField`` from MongoDB backend. Contributed by Jonas Haag
42-
* Added ``SetField``, ``DictField``, and ``RawField``. Contributed by Jonas Haag
43-
* Fixed support for proxy models. Contributed by Vladimir Mihailenco
44-
* Several cleanups and minor bug fixes
45-
4620
.. _djangotoolbox: http://www.allbuttonspressed.com/projects/djangotoolbox
4721
.. _Django-nonrel: http://www.allbuttonspressed.com/projects/django-nonrel
4822
.. _Writing a non-relational Django backend: http://www.allbuttonspressed.com/blog/django/2010/04/Writing-a-non-relational-Django-backend

0 commit comments

Comments
 (0)
Please sign in to comment.