diff options
Diffstat (limited to 'topics')
| -rw-r--r-- | topics/3.0-announcement/index.html | 4 | ||||
| -rw-r--r-- | topics/release-notes/index.html | 15 | ||||
| -rw-r--r-- | topics/third-party-resources/index.html | 2 |
3 files changed, 17 insertions, 4 deletions
diff --git a/topics/3.0-announcement/index.html b/topics/3.0-announcement/index.html index 25d0131c..ccd152e8 100644 --- a/topics/3.0-announcement/index.html +++ b/topics/3.0-announcement/index.html @@ -936,7 +936,7 @@ def to_representation(self, value): class Meta: model = Account </code></pre> -<p>However this code <em>would not be valid</em> in <code>2.4.3</code>:</p> +<p>However this code <em>would not be valid</em> in <code>3.0</code>:</p> <pre><code># Missing `queryset` class AccountSerializer(serializers.Serializer): organizations = serializers.SlugRelatedField(slug_field='name') @@ -1051,7 +1051,7 @@ class OrganizationSerializer(serializers.Serializer): <p>The <code>style</code> keyword argument can be used to pass through additional information from a serializer field, to the renderer class. In particular, the <code>HTMLFormRenderer</code> uses the <code>base_template</code> key to determine which template to render the field with.</p> <p>For example, to use a <code>textarea</code> control instead of the default <code>input</code> control, you would use the following…</p> <pre><code>additional_notes = serializers.CharField( - style={'base_template': 'text_area.html'} + style={'base_template': 'textarea.html'} ) </code></pre> <p>Similarly, to use a radio button control instead of the default <code>select</code> control, you would use the following…</p> diff --git a/topics/release-notes/index.html b/topics/release-notes/index.html index 477407fb..2d66b25f 100644 --- a/topics/release-notes/index.html +++ b/topics/release-notes/index.html @@ -439,6 +439,18 @@ </code></pre> <hr /> <h2 id="30x-series">3.0.x series</h2> +<h3 id="305">3.0.5</h3> +<p><strong>Date</strong>: <a href="https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.5+Release%22">10th February 2015</a>.</p> +<ul> +<li>Fix a bug where <code>_closable_objects</code> breaks pickling. (<a href="https://github.com/tomchristie/django-rest-framework/issues/1850">#1850</a>, <a href="https://github.com/tomchristie/django-rest-framework/issues/2492">#2492</a>)</li> +<li>Allow non-standard <code>User</code> models with <code>Throttling</code>. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2524">#2524</a>)</li> +<li>Support custom <code>User.db_table</code> in TokenAuthentication migration. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2479">#2479</a>)</li> +<li>Fix misleading <code>AttributeError</code> tracebacks on <code>Request</code> objects. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2530">#2530</a>, <a href="https://github.com/tomchristie/django-rest-framework/issues/2108">#2108</a>)</li> +<li><code>ManyRelatedField.get_value</code> clearing field on partial update. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2475">#2475</a>)</li> +<li>Removed '.model' shortcut from code. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2486">#2486</a>)</li> +<li>Fix <code>detail_route</code> and <code>list_route</code> mutable argument. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2518">#2518</a>)</li> +<li>Prefetching the user object when getting the token in <code>TokenAuthentication</code>. (<a href="https://github.com/tomchristie/django-rest-framework/issues/2519">#2519</a>)</li> +</ul> <h3 id="304">3.0.4</h3> <p><strong>Date</strong>: <a href="https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.4+Release%22">28th January 2015</a>.</p> <ul> @@ -1021,7 +1033,8 @@ <p><!-- 3.0.2 --> <!-- 3.0.3 --> -<!-- 3.0.4 --></p> +<!-- 3.0.4 --> +<!-- 3.0.5 --></p> </div> <!--/span--> diff --git a/topics/third-party-resources/index.html b/topics/third-party-resources/index.html index 0f9e1a9c..c3ad6d8d 100644 --- a/topics/third-party-resources/index.html +++ b/topics/third-party-resources/index.html @@ -561,7 +561,7 @@ You probably want to also tag the version now: <li><a href="https://github.com/eofs/django-rest-framework-proxy">django-rest-framework-proxy</a> - Proxy to redirect incoming request to another API server.</li> <li><a href="https://github.com/AppsFuel/gaiarestframework">gaiarestframework</a> - Utils for django-rest-framewok</li> <li><a href="https://github.com/chibisov/drf-extensions">drf-extensions</a> - A collection of custom extensions</li> -<li><a href="https://github.com/toranb/ember-data-django-rest-adapter">ember-data-django-rest-adapter</a> - An ember-data adapter</li> +<li><a href="https://github.com/dustinfarris/ember-django-adapter">ember-django-adapter</a> - An adapter for working with Ember.js</li> </ul> <h2 id="other-resources">Other Resources</h2> <h3 id="tutorials">Tutorials</h3> |
