diff --git a/docs/source/contents.rst b/docs/source/contents.rst index c044c0e5d..ab6b5073d 100644 --- a/docs/source/contents.rst +++ b/docs/source/contents.rst @@ -14,6 +14,7 @@ Table of contents topics/index ref/index faq + releases/index internals Indices diff --git a/docs/source/index.rst b/docs/source/index.rst index 46e1bc67d..41ce139d0 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -46,3 +46,9 @@ Forms ===== - :doc:`ref/forms` + +Miscellaneous +============= + +- :doc:`releases/index` +- :doc:`internals` diff --git a/docs/source/releases/5.0.x.rst b/docs/source/releases/5.0.x.rst new file mode 100644 index 000000000..26445e905 --- /dev/null +++ b/docs/source/releases/5.0.x.rst @@ -0,0 +1,22 @@ +============================ +Django MongoDB Backend 5.0.x +============================ + +5.0.0 beta 1 +============ + +*Unreleased* + +- Fixed the inability to save nested embedded model forms. +- Fixed :ref:`persistent database connections + `. +- Added :doc:`async ` support. +- Added the ``db_name`` parameter to + :func:`~django_mongodb_backend.utils.parse_uri`. + +5.0.0 beta 0 +============ + +*January 29, 2025* + +Initial Public Preview release. diff --git a/docs/source/releases/5.1.x.rst b/docs/source/releases/5.1.x.rst new file mode 100644 index 000000000..b71700210 --- /dev/null +++ b/docs/source/releases/5.1.x.rst @@ -0,0 +1,22 @@ +============================ +Django MongoDB Backend 5.1.x +============================ + +5.1.0 beta 1 +============ + +*Unreleased* + +- Fixed the inability to save nested embedded model forms. +- Fixed :ref:`persistent database connections + `. +- Added :doc:`async ` support. +- Added the ``db_name`` parameter to + :func:`~django_mongodb_backend.utils.parse_uri`. + +5.1.0 beta 0 +============ + +*January 30, 2025* + +Initial Public Preview release. diff --git a/docs/source/releases/index.rst b/docs/source/releases/index.rst new file mode 100644 index 000000000..b2649eed2 --- /dev/null +++ b/docs/source/releases/index.rst @@ -0,0 +1,15 @@ +============= +Release notes +============= + +The release notes will tell you what's new in each version and will also +describe any backwards-incompatible changes. + +Below are release notes through Django MongoDB backend 5.1.x. Newer versions of +the documentation contain the release notes for any later releases. + +.. toctree:: + :maxdepth: 1 + + 5.1.x + 5.0.x