Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							0dea509dc9 
							
						 
					 
					
						
						
							
							Nested serializer tests  
						
						
						
					 
					
						2014-10-30 15:59:16 +00:00 
						 
				 
			
				
					
						
							
							
								Xavier Ordoquy 
							
						 
					 
					
						
						
						
						
							
						
						
							4ce4a7c41a 
							
						 
					 
					
						
						
							
							Merge pull request  #1997  from agconti/patch-1  
						
						... 
						
						
						
						docs(api-guide/authentication): updated to reflect new standards in Django 1.7 
						
					 
					
						2014-10-29 22:20:39 +01:00 
						 
				 
			
				
					
						
							
							
								Andrew Conti 
							
						 
					 
					
						
						
						
						
							
						
						
							f25f05dde5 
							
						 
					 
					
						
						
							
							Update authentication.md  
						
						... 
						
						
						
						Based on the [new documentation](https://docs.djangoproject.com/en/dev/topics/auth/customizing/#django.contrib.auth.get_user_model ) for Django 1.7 we should now use:
```python
@receiver(post_save, sender=settings.AUTH_USER_MODEL)
```
instead of:
```python 
@receiver(post_save, sender=get_user_model())
```
because `get_user_model()` only works once Django has imported all models. Otherwise you'll get: 
```python
django.core.exceptions.AppRegistryNotReady: Models aren't loaded yet.
```
When trying to start your sever after adding token authentication.
From the Docs, ( linked above as well ) :
>New in Django 1.7:
>When connecting to signals sent by the User model, you should specify the custom model using the AUTH_USER_MODEL setting. 
						
					 
					
						2014-10-29 16:31:36 -04:00 
						 
				 
			
				
					
						
							
							
								Carlton Gibson 
							
						 
					 
					
						
						
						
						
							
						
						
							c164d5b31d 
							
						 
					 
					
						
						
							
							Merge pull request  #1993  from jpadilla/master  
						
						... 
						
						
						
						Use PYTHONDONTWRITEBYTECODE=1 on tox environment 
						
					 
					
						2014-10-29 11:03:39 +01:00 
						 
				 
			
				
					
						
							
							
								José Padilla 
							
						 
					 
					
						
						
						
						
							
						
						
							8af3d5db49 
							
						 
					 
					
						
						
							
							Use PYTHONDONTWRITEBYTECODE=1 on tox environment  
						
						... 
						
						
						
						This fixes bad marshal data errors after running
tests with tox and later running tests manually
via runtests.py. Fixes  #1957  
						
					 
					
						2014-10-28 16:58:25 -04:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							9ebaabd6eb 
							
						 
					 
					
						
						
							
							unique_for_date/unique_for_month/unique_for_year  
						
						
						
					 
					
						2014-10-28 16:21:49 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							702f47700d 
							
						 
					 
					
						
						
							
							Updated requirements  
						
						
						
					 
					
						2014-10-24 12:12:01 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f9c0e6ee1b 
							
						 
					 
					
						
						
							
							unique_for_month, unique_for_year  
						
						
						
					 
					
						2014-10-22 16:29:09 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4ad4fca6ce 
							
						 
					 
					
						
						
							
							Merge pull request  #1969  from erikcw/ordered  
						
						... 
						
						
						
						Maintain order of views on router for api root view. 
						
					 
					
						2014-10-22 14:57:48 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ae53fdff9c 
							
						 
					 
					
						
						
							
							First pass at unique_for_date, unique_for_month, unique_for_year  
						
						
						
					 
					
						2014-10-22 13:30:28 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							c5d1be8eac 
							
						 
					 
					
						
						
							
							.validate() can raise field errors or non-field errors  
						
						
						
					 
					
						2014-10-22 10:32:32 +01:00 
						 
				 
			
				
					
						
							
							
								Erik Wickstrom 
							
						 
					 
					
						
						
						
						
							
						
						
							674855a114 
							
						 
					 
					
						
						
							
							Used Django utils SortedDict instead of stdlib's OrderedDict for  
						
						... 
						
						
						
						wider compatability. 
						
					 
					
						2014-10-20 08:47:45 -07:00 
						 
				 
			
				
					
						
							
							
								Erik Wickstrom 
							
						 
					 
					
						
						
						
						
							
						
						
							12b677039d 
							
						 
					 
					
						
						
							
							Maintain order of views on router for api root view.  
						
						
						
					 
					
						2014-10-19 21:03:33 -07:00 
						 
				 
			
				
					
						
							
							
								Carl Meyer 
							
						 
					 
					
						
						
						
						
							
						
						
							140f8620ae 
							
						 
					 
					
						
						
							
							Set up serializer fields lazily on-demand.  
						
						... 
						
						
						
						This avoids AppRegistryNotReady problems in Django 1.7 with nested serializers,
which are instantiated at import time, possibly before Django's app registry is
fully populated. 
						
					 
					
						2014-10-17 09:50:57 -06:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							0951523300 
							
						 
					 
					
						
						
							
							Merge pull request  #1967  from jpadilla/master  
						
						... 
						
						
						
						Add docs regarding linking third party packages 
						
					 
					
						2014-10-17 15:20:08 +01:00 
						 
				 
			
				
					
						
							
							
								José Padilla 
							
						 
					 
					
						
						
						
						
							
						
						
							11edd01c34 
							
						 
					 
					
						
						
							
							Add docs regarding linking third party packages  
						
						
						
					 
					
						2014-10-17 08:58:31 -04:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							05cbec9dd7 
							
						 
					 
					
						
						
							
							Use serializers.ValidationError  
						
						
						
					 
					
						2014-10-17 13:23:14 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							5882a7a9d5 
							
						 
					 
					
						
						
							
							Tweak  
						
						
						
					 
					
						2014-10-16 20:47:57 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							3af5df1955 
							
						 
					 
					
						
						
							
							Performance for PK fields  
						
						
						
					 
					
						2014-10-16 20:47:57 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							32fd82ba0d 
							
						 
					 
					
						
						
							
							get_attribute method on fields  
						
						
						
					 
					
						2014-10-16 20:47:57 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							7b666e982c 
							
						 
					 
					
						
						
							
							Stricter checking for failure cases.  
						
						
						
					 
					
						2014-10-16 20:47:57 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d0f610be44 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2014-10-16 20:47:57 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							34a7a48c1d 
							
						 
					 
					
						
						
							
							Merge pull request  #1959  from konradhalas/add-djoser-to-docs  
						
						... 
						
						
						
						Add djoser to authentication docs 
						
					 
					
						2014-10-16 14:48:06 +01:00 
						 
				 
			
				
					
						
							
							
								konradhalas 
							
						 
					 
					
						
						
						
						
							
						
						
							5e89994a10 
							
						 
					 
					
						
						
							
							Add to main 3rd party resources list.  
						
						
						
					 
					
						2014-10-16 15:16:13 +02:00 
						 
				 
			
				
					
						
							
							
								konradhalas 
							
						 
					 
					
						
						
						
						
							
						
						
							113a28ed8a 
							
						 
					 
					
						
						
							
							Add djoser to authentication docs.  
						
						
						
					 
					
						2014-10-16 13:48:18 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							2648442a6b 
							
						 
					 
					
						
						
							
							Merge pull request  #1958  from gulopine/version-3.0  
						
						... 
						
						
						
						Add a .keys() method to BindingDict 
						
					 
					
						2014-10-16 09:26:38 +01:00 
						 
				 
			
				
					
						
							
							
								Marty Alchin 
							
						 
					 
					
						
						
						
						
							
						
						
							4248a6c499 
							
						 
					 
					
						
						
							
							Add a keys method to BindingDict  
						
						
						
					 
					
						2014-10-15 17:54:58 -07:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							b4f3379c70 
							
						 
					 
					
						
						
							
							Support fields that reference a simple callable  
						
						
						
					 
					
						2014-10-15 15:13:28 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e8ea365c15 
							
						 
					 
					
						
						
							
							Moar form styling  
						
						
						
					 
					
						2014-10-15 15:11:01 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							22b27cbdc4 
							
						 
					 
					
						
						
							
							Merge branch 'version-3.0' of  https://github.com/tomchristie/django-rest-framework  into version-3.0  
						
						
						
					 
					
						2014-10-15 13:35:23 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							36fbc7678c 
							
						 
					 
					
						
						
							
							Moar form styling  
						
						
						
					 
					
						2014-10-15 13:35:12 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							9ffa97d24d 
							
						 
					 
					
						
						
							
							Merge pull request  #1956  from wolfe/patch-1  
						
						... 
						
						
						
						Update 3.0-announcement.md 
						
					 
					
						2014-10-15 13:31:55 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							cc1c423255 
							
						 
					 
					
						
						
							
							Reorganize to use template_pack in form rendering  
						
						
						
					 
					
						2014-10-15 11:12:34 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e558f806c0 
							
						 
					 
					
						
						
							
							Drop template includes  
						
						
						
					 
					
						2014-10-15 10:04:01 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							faa5bd9f53 
							
						 
					 
					
						
						
							
							Merge branch 'version-3.0' of  https://github.com/tomchristie/django-rest-framework  into version-3.0  
						
						
						
					 
					
						2014-10-15 09:25:02 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e272a36c9b 
							
						 
					 
					
						
						
							
							Fix 'lookup_field' on ModelSerializer.  Closes   #1944 .  
						
						
						
					 
					
						2014-10-15 09:24:49 +01:00 
						 
				 
			
				
					
						
							
							
								wolfe 
							
						 
					 
					
						
						
						
						
							
						
						
							f8f101268e 
							
						 
					 
					
						
						
							
							Update 3.0-announcement.md  
						
						... 
						
						
						
						Swap order of custom field API changes so the two "and" clauses are in the same order. 
						
					 
					
						2014-10-14 18:58:25 -03:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ad16b50875 
							
						 
					 
					
						
						
							
							Merge pull request  #1942  from rouge8/preform-to-perform  
						
						... 
						
						
						
						Rename `preform_update` to `perform_update` 
						
					 
					
						2014-10-12 08:11:28 +01:00 
						 
				 
			
				
					
						
							
							
								Andy Freeland 
							
						 
					 
					
						
						
						
						
							
						
						
							81abf2bf34 
							
						 
					 
					
						
						
							
							Rename preform_update to perform_update  
						
						
						
					 
					
						2014-10-12 01:19:53 -04:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							826b5a8897 
							
						 
					 
					
						
						
							
							Relations in 'read_only_fields' should not include a queryset kwarg  
						
						
						
					 
					
						2014-10-10 15:34:00 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							b5a4216aff 
							
						 
					 
					
						
						
							
							Flake8  
						
						
						
					 
					
						2014-10-10 15:08:43 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d8a8987ab1 
							
						 
					 
					
						
						
							
							Tweaks  
						
						
						
					 
					
						2014-10-10 14:32:02 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d9a199ca0d 
							
						 
					 
					
						
						
							
							exceptions.ValidationFailed, not Django's ValidationError  
						
						
						
					 
					
						2014-10-10 14:16:09 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a0e852a4d5 
							
						 
					 
					
						
						
							
							Use BoundField .name on fields  
						
						
						
					 
					
						2014-10-09 16:30:06 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f83ed19d22 
							
						 
					 
					
						
						
							
							Checks and repr on BoundField  
						
						
						
					 
					
						2014-10-09 16:29:34 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							5d247a65c8 
							
						 
					 
					
						
						
							
							First pass on nested serializers in HTML  
						
						
						
					 
					
						2014-10-09 15:11:19 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							babdc78e61 
							
						 
					 
					
						
						
							
							Typo  
						
						
						
					 
					
						2014-10-09 11:39:01 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							6637b2fae0 
							
						 
					 
					
						
						
							
							Document the Metadata API  
						
						
						
					 
					
						2014-10-09 11:08:26 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							5f4cc52ef5 
							
						 
					 
					
						
						
							
							Tweaking  
						
						
						
					 
					
						2014-10-09 10:11:44 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a58cfe167d 
							
						 
					 
					
						
						
							
							Update tutorial for 3.0  
						
						
						
					 
					
						2014-10-09 09:38:03 +01:00