File tree 3 files changed +42
-26
lines changed
3 files changed +42
-26
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
include LICENSE
2
2
include README.rst
3
+ include CHANGELOG.rst
Original file line number Diff line number Diff line change @@ -17,32 +17,6 @@ Simply add ``'djangotoolbox'`` to ``INSTALLED_APPS`` **after**
17
17
require JOINs. If you still need permission handling you should
18
18
use the `nonrel permission backend `_.
19
19
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
-
46
20
.. _djangotoolbox : http://www.allbuttonspressed.com/projects/djangotoolbox
47
21
.. _Django-nonrel : http://www.allbuttonspressed.com/projects/django-nonrel
48
22
.. _Writing a non-relational Django backend : http://www.allbuttonspressed.com/blog/django/2010/04/Writing-a-non-relational-Django-backend
You can’t perform that action at this time.
0 commit comments