Update documentation

This commit is contained in:
Xavier Ordoquy 2015-05-14 10:16:03 +01:00
parent 6763d88845
commit 3570bd388a

View File

@ -422,28 +422,28 @@
<h3 id="312">3.1.2</h3> <h3 id="312">3.1.2</h3>
<p><strong>Date</strong>: <a href="https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.1.2+Release%22">13rd May 2015</a>.</p> <p><strong>Date</strong>: <a href="https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.1.2+Release%22">13rd May 2015</a>.</p>
<ul> <ul>
<li>DateField to_representation can handle str and empty values. (<a href="../gh2656">#2656</a>, <a href="../gh2687">#2687</a>, <a href="../gh2869">#2869</a>)</li> <li>DateField to_representation can handle str and empty values. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2656">#2656</a>, <a href="https://github.com/tomchristie/django-rest-framework/issues/2687">#2687</a>, <a href="https://github.com/tomchristie/django-rest-framework/issues/2869">#2869</a>)</li>
<li>Use default reason phrases from HTTP standard. (<a href="../gh2764">#2764</a>, <a href="../gh2763">#2763</a>)</li> <li>Use default reason phrases from HTTP standard. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2764">#2764</a>, <a href="https://github.com/tomchristie/django-rest-framework/issues/2763">#2763</a>)</li>
<li>Raise error when ModelSerializer used with abstract model. (<a href="../gh2757">#2757</a>, <a href="../gh2630">#2630</a>)</li> <li>Raise error when ModelSerializer used with abstract model. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2757">#2757</a>, <a href="https://github.com/tomchristie/django-rest-framework/issues/2630">#2630</a>)</li>
<li>Handle reversal of non-API view_name in HyperLinkedRelatedField (<a href="../gh2724">#2724</a>, <a href="../gh2711">#2711</a>)</li> <li>Handle reversal of non-API view_name in HyperLinkedRelatedField (<a href="https://github.com/tomchristie/django-rest-framework/issues/2724">#2724</a>, <a href="https://github.com/tomchristie/django-rest-framework/issues/2711">#2711</a>)</li>
<li>Dont require pk strictly for related fields. (<a href="../gh2745">#2745</a>, <a href="../gh2754">#2754</a>)</li> <li>Dont require pk strictly for related fields. (<a href="../gh2745">#2745</a>, <a href="https://github.com/tomchristie/django-rest-framework/issues/2754">#2754</a>)</li>
<li>Metadata detects null boolean field type. (<a href="../gh2762">#2762</a>)</li> <li>Metadata detects null boolean field type. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2762">#2762</a>)</li>
<li>Proper handling of depth in nested serializers. (<a href="../gh2798">#2798</a>)</li> <li>Proper handling of depth in nested serializers. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2798">#2798</a>)</li>
<li>Display viewset without paginator. (<a href="../gh2807">#2807</a>)</li> <li>Display viewset without paginator. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2807">#2807</a>)</li>
<li>Don't check for deprecated '.model' attribute in permissions (<a href="../gh2818">#2818</a>)</li> <li>Don't check for deprecated '.model' attribute in permissions (<a href="https://github.com/tomchristie/django-rest-framework/issues/2818">#2818</a>)</li>
<li>Restrict integer field to integers and strings. (<a href="../gh2835">#2835</a>, <a href="../gh2836">#2836</a>)</li> <li>Restrict integer field to integers and strings. (<a href="../gh2835">#2835</a>, <a href="https://github.com/tomchristie/django-rest-framework/issues/2836">#2836</a>)</li>
<li>Improve IntegerField to use compiled decimal regex. (<a href="../gh2853">#2853</a>)</li> <li>Improve IntegerField to use compiled decimal regex. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2853">#2853</a>)</li>
<li>Prevent empty <code>queryset</code>s to raise AssertionError. (<a href="../gh2862">#2862</a>)</li> <li>Prevent empty <code>queryset</code>s to raise AssertionError. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2862">#2862</a>)</li>
<li>DjangoModelPermissions rely on get_queryset. (<a href="../gh2863">#2863</a>)</li> <li>DjangoModelPermissions rely on get_queryset. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2863">#2863</a>)</li>
<li>Check AcceptHeaderVersioning with content negotiation in place. (<a href="../gh2868">#2868</a>)</li> <li>Check AcceptHeaderVersioning with content negotiation in place. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2868">#2868</a>)</li>
<li>Allow DjangoObjectPermissions to use views that define get_queryset (<a href="../gh2905">#2905</a>)</li> <li>Allow DjangoObjectPermissions to use views that define get_queryset (<a href="https://github.com/tomchristie/django-rest-framework/issues/2905">#2905</a>)</li>
</ul> </ul>
<h3 id="311">3.1.1</h3> <h3 id="311">3.1.1</h3>
<p><strong>Date</strong>: <a href="https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.1.1+Release%22">23rd March 2015</a>.</p> <p><strong>Date</strong>: <a href="https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.1.1+Release%22">23rd March 2015</a>.</p>
<ul> <ul>
<li><strong>Security fix</strong>: Escape tab switching cookie name in browsable API.</li> <li><strong>Security fix</strong>: Escape tab switching cookie name in browsable API.</li>
<li>Display input forms in browsable API if <code>serializer_class</code> is used, even when <code>get_serializer</code> method does not exist on the view. (<a href="../gh2743">#2743</a>)</li> <li>Display input forms in browsable API if <code>serializer_class</code> is used, even when <code>get_serializer</code> method does not exist on the view. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2643">#2743</a>)</li>
<li>Use a password input for the AuthTokenSerializer. (<a href="../gh2741">#2741</a>)</li> <li>Use a password input for the AuthTokenSerializer. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2641">#2741</a>)</li>
<li>Fix missing anchor closing tag after next button. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2691">#2691</a>)</li> <li>Fix missing anchor closing tag after next button. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2691">#2691</a>)</li>
<li>Fix <code>lookup_url_kwarg</code> handling in viewsets. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2685">#2685</a>, <a href="https://github.com/tomchristie/django-rest-framework/issues/2591">#2591</a>)</li> <li>Fix <code>lookup_url_kwarg</code> handling in viewsets. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2685">#2685</a>, <a href="https://github.com/tomchristie/django-rest-framework/issues/2591">#2591</a>)</li>
<li>Fix problem with importing <code>rest_framework.views</code> in <code>apps.py</code> (<a href="https://github.com/tomchristie/django-rest-framework/issues/2678">#2678</a>)</li> <li>Fix problem with importing <code>rest_framework.views</code> in <code>apps.py</code> (<a href="https://github.com/tomchristie/django-rest-framework/issues/2678">#2678</a>)</li>