<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django-rest-framework/tests, branch 3.1.1</title>
<subtitle>Web APIs for Django.</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/django-rest-framework/'/>
<entry>
<title>Simplify test settings</title>
<updated>2015-03-14T19:57:22+00:00</updated>
<author>
<name>José Padilla</name>
</author>
<published>2015-03-14T19:54:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/django-rest-framework/commit/?id=76ede5beda74c1bb224f038d635ab586416bfca8'/>
<id>76ede5beda74c1bb224f038d635ab586416bfca8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix lookup_url_kwarg handling in viewsets.</title>
<updated>2015-03-13T00:07:20+00:00</updated>
<author>
<name>Raphaël Barrois</name>
</author>
<published>2015-03-13T00:07:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/django-rest-framework/commit/?id=8d0dbc8092a754e1f0f7d80d93506072556f35a2'/>
<id>8d0dbc8092a754e1f0f7d80d93506072556f35a2</id>
<content type='text'>
The ``lookup_url_kwarg`` is intended to set the name of a field in the
URL regexps when using custom ``lookup_field``, but the routers ignore
it altogether.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The ``lookup_url_kwarg`` is intended to set the name of a field in the
URL regexps when using custom ``lookup_field``, but the routers ignore
it altogether.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for serializing models with m2m related fields</title>
<updated>2015-03-06T16:50:37+00:00</updated>
<author>
<name>Matt d'Entremont</name>
</author>
<published>2015-03-04T21:36:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/django-rest-framework/commit/?id=fb58ef043cc39d900bb8389855f07087cb0d7920'/>
<id>fb58ef043cc39d900bb8389855f07087cb0d7920</id>
<content type='text'>
- In both ManyRelatedField, provide an empty return when trying to
  access a relation field if the instance in question has no PK (so
  likely hasn't been inserted yet)
- Add relevant tests
- Without these changes, exceptions would be raised when trying to
  serialize the uncreated models as it is impossible to query
  relations without a PK
- Add test to ensure RelatedField does not regress as currently 
  supports being serialized with and unsaved model</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- In both ManyRelatedField, provide an empty return when trying to
  access a relation field if the instance in question has no PK (so
  likely hasn't been inserted yet)
- Add relevant tests
- Without these changes, exceptions would be raised when trying to
  serialize the uncreated models as it is impossible to query
  relations without a PK
- Add test to ensure RelatedField does not regress as currently 
  supports being serialized with and unsaved model</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up pagination attributes</title>
<updated>2015-03-04T15:51:00+00:00</updated>
<author>
<name>Tom Christie</name>
</author>
<published>2015-03-04T15:51:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/django-rest-framework/commit/?id=18cc0230bff436da2f26b2b25034cece32c9f5d0'/>
<id>18cc0230bff436da2f26b2b25034cece32c9f5d0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix docstring formatting</title>
<updated>2015-02-28T21:06:47+00:00</updated>
<author>
<name>Kevin Wood</name>
</author>
<published>2015-02-28T21:06:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/django-rest-framework/commit/?id=b582d52afbad81c56edad8ea3b6d2ac2d352b87e'/>
<id>b582d52afbad81c56edad8ea3b6d2ac2d352b87e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated CreateOnlyDefault to call set_context on its default (if callable)</title>
<updated>2015-02-28T06:14:15+00:00</updated>
<author>
<name>Kevin Wood</name>
</author>
<published>2015-02-28T06:14:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/django-rest-framework/commit/?id=78e8b1b0108bb8338aa578ea2f4a0237d4edd1d4'/>
<id>78e8b1b0108bb8338aa578ea2f4a0237d4edd1d4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2608 from ezheidtmann/dont-swallow-errors-in-callable-sources</title>
<updated>2015-02-27T09:13:01+00:00</updated>
<author>
<name>Tom Christie</name>
</author>
<published>2015-02-27T09:13:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/django-rest-framework/commit/?id=cda74b59971f85da873b0e15da8b4afb4411a026'/>
<id>cda74b59971f85da873b0e15da8b4afb4411a026</id>
<content type='text'>
Dont swallow errors in callable sources</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Dont swallow errors in callable sources</pre>
</div>
</content>
</entry>
<entry>
<title>Add tests for callable attributes raising exceptions</title>
<updated>2015-02-26T17:05:37+00:00</updated>
<author>
<name>Evan Heidtmann</name>
</author>
<published>2015-02-26T16:34:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/django-rest-framework/commit/?id=16ffe5e31f80058389139fe5dae5184cc22319a6'/>
<id>16ffe5e31f80058389139fe5dae5184cc22319a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2572 from Ins1ne/master</title>
<updated>2015-02-26T15:56:18+00:00</updated>
<author>
<name>Tom Christie</name>
</author>
<published>2015-02-26T15:56:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/django-rest-framework/commit/?id=c66f23391ac669f2a9a27431e66588e9092300f2'/>
<id>c66f23391ac669f2a9a27431e66588e9092300f2</id>
<content type='text'>
Fix UniqueTogetherValidator for NULL values</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix UniqueTogetherValidator for NULL values</pre>
</div>
</content>
</entry>
<entry>
<title>Who care what we do when it's totally malformed? Not me.</title>
<updated>2015-02-26T13:41:25+00:00</updated>
<author>
<name>Tom Christie</name>
</author>
<published>2015-02-26T13:41:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/django-rest-framework/commit/?id=1b398a20decbf6e10173d280bc4fccd86a94b629'/>
<id>1b398a20decbf6e10173d280bc4fccd86a94b629</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
