summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2012-08-17 01:28:33 +0200
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2012-08-17 01:28:33 +0200
commitac7e11a3389f15bb849f88609de7fb7c648e035a (patch)
tree7000955e297bd10ecc7371e0f237c664f75e987f /docs
parent2611973bb62d38ff23471fdc115cdd09e351be50 (diff)
downloadfactory-boy-ac7e11a3389f15bb849f88609de7fb7c648e035a.tar
factory-boy-ac7e11a3389f15bb849f88609de7fb7c648e035a.tar.gz
Add roadmap for 2.0.0.
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
Diffstat (limited to 'docs')
-rw-r--r--docs/changelog.rst21
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index ffca40e..c64a89a 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -1,10 +1,31 @@
ChangeLog
=========
+2.0.0 (future)
+--------------
+
+.. note:: This section lists features planned for v2 of factory_boy. Changes announced here may not have been committed to the repository.
+
+*New:*
+
+ - Add support for Python3
+ - Clean up documentation
+ - Document extension points
+ - Add support for ``get_or_create`` in :class:`~factory.DjangoModelFactory`
+
+*Deprecation:*
+
+ - Remove associated class discovery
+ - Stop defaulting to Django's ``Foo.objects.create()`` when "creating" instances
+ - Remove STRATEGY_*
+ - Remove :meth:`~factory.Factory.set_building_function` / :meth:`~factory.Factory.set_creation_function`
+
+
1.2.0 (current)
---------------
*New:*
+
- Add :class:`~factory.CircularSubFactory` to solve circular dependencies between factories
- Better creation/building customization hooks at :meth:`factory.Factory._build` and :meth:`factory.Factory.create`.
- Add support for passing non-kwarg parameters to a :class:`~factory.Factory` wrapped class.