Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d0fdcdfdad 
							
						 
					 
					
						
						
							
							Added pathwright  
						
						
						
					 
					
						2014-08-02 15:18:03 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							3ac075a227 
							
						 
					 
					
						
						
							
							Update Nephila sponsorship  
						
						
						
					 
					
						2014-08-02 15:08:14 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f58dde59c4 
							
						 
					 
					
						
						
							
							Sponsor updated  
						
						
						
					 
					
						2014-08-02 15:05:03 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							9af3dc0ba5 
							
						 
					 
					
						
						
							
							Added ProReNata AB  
						
						
						
					 
					
						2014-08-01 13:54:26 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							5377bda942 
							
						 
					 
					
						
						
							
							Fix LaterPay link  
						
						
						
					 
					
						2014-08-01 13:42:51 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f87aadb3ce 
							
						 
					 
					
						
						
							
							Latest sponsor updates  
						
						
						
					 
					
						2014-08-01 11:35:48 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							6677374e9b 
							
						 
					 
					
						
						
							
							Kickstarter sponsors  
						
						
						
					 
					
						2014-07-31 22:33:45 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							8044416523 
							
						 
					 
					
						
						
							
							Add platinum sponsors  
						
						
						
					 
					
						2014-07-31 20:19:28 +01:00 
						 
				 
			
				
					
						
							
							
								Xavier Ordoquy 
							
						 
					 
					
						
						
						
						
							
						
						
							4876bec9f5 
							
						 
					 
					
						
						
							
							Merge remote-tracking branch 'origin/master' into 2.4.0  
						
						... 
						
						
						
						Conflicts:
	rest_framework/fields.py 
						
					 
					
						2014-07-26 00:06:56 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ead0e60099 
							
						 
					 
					
						
						
							
							Docs for kickstarter announcement  
						
						
						
					 
					
						2014-07-17 17:17:41 +01:00 
						 
				 
			
				
					
						
							
							
								Carlton Gibson 
							
						 
					 
					
						
						
						
						
							
						
						
							d98245ac22 
							
						 
					 
					
						
						
							
							Merge branch '2.4.0' of github.com:tomchristie/django-rest-framework into  #1559  
						
						... 
						
						
						
						Conflicts:
	docs/topics/release-notes.md 
						
					 
					
						2014-06-24 10:30:08 +02:00 
						 
				 
			
				
					
						
							
							
								Carlton Gibson 
							
						 
					 
					
						
						
						
						
							
						
						
							3f727ce738 
							
						 
					 
					
						
						
							
							Added (first pass) notes to docs & release notes. Backed out SOUTH_MIGRATION_MODULES setting from rest_framework.settings  
						
						
						
					 
					
						2014-06-24 09:02:44 +02:00 
						 
				 
			
				
					
						
							
							
								Xavier Ordoquy 
							
						 
					 
					
						
						
						
						
							
						
						
							2489e38a06 
							
						 
					 
					
						
						
							
							Merge remote-tracking branch 'origin/master' into 2.4.0  
						
						... 
						
						
						
						Conflicts:
	.travis.yml
	docs/api-guide/viewsets.md
	rest_framework/serializers.py
	rest_framework/throttling.py
	tests/test_generics.py
	tests/test_serializers.py
	tox.ini 
						
					 
					
						2014-06-23 14:02:45 +02:00 
						 
				 
			
				
					
						
							
							
								Walt Javins 
							
						 
					 
					
						
						
						
						
							
						
						
							b4c7717cb8 
							
						 
					 
					
						
						
							
							Refactor login template to extend base.  
						
						... 
						
						
						
						While experimenting with extending DRF, I found that the login page
1) had no title, and 2) duplicated <head> info from base.html.
This change adds a new {% block body %} to the base.html template
which allows override of the entire html <body>. login_base.html
has its duplicated head info stripped, and now extends base.html
to share common html <head> templating.
As part of this change, pretify.css is unnecessarily added to
login_base.html.  If this is deemed a problem, it will be easy to
block that css out, and have login_base.html override the block.
Ideally, I would have liked to create a new api_base.html that extends
base.html, move the api specific logic into that template, and leave
base.html content agnostic, to truely be a unifying base for all DRF
pages.  But this change would break current apps that override
api.html and expect base.html to be the immediate super template. :/
This change is benificial because it:
 - removes duplication of header declarations (mostly css includes)
 - adds a html title to the login page
 - standardizes html header info across all DRF pages
Docs are updated to reflect the new structure. 
						
					 
					
						2014-06-13 22:26:00 -07:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							1386767013 
							
						 
					 
					
						
						
							
							Version 2.3.14  
						
						
						
					 
					
						2014-06-12 11:47:26 +01:00 
						 
				 
			
				
					
						
							
							
								Xavier Ordoquy 
							
						 
					 
					
						
						
						
						
							
						
						
							15c2c58b43 
							
						 
					 
					
						
						
							
							Updated the release-notes.  
						
						
						
					 
					
						2014-05-01 08:43:49 +02:00 
						 
				 
			
				
					
						
							
							
								Xavier Ordoquy 
							
						 
					 
					
						
						
						
						
							
						
						
							7b4463f739 
							
						 
					 
					
						
						
							
							Merge remote-tracking branch 'reference/2.4.0' into feature/pytest  
						
						... 
						
						
						
						Conflicts:
	rest_framework/runtests/urls.py
	tests/test_response.py
	tox.ini 
						
					 
					
						2014-05-01 08:01:38 +02:00 
						 
				 
			
				
					
						
							
							
								Xavier Ordoquy 
							
						 
					 
					
						
						
						
						
							
						
						
							2aca69a946 
							
						 
					 
					
						
						
							
							Merge remote-tracking branch 'reference/master' into feature/pytest  
						
						... 
						
						
						
						Conflicts:
	tests/test_serializer.py 
						
					 
					
						2014-04-30 22:24:01 +02:00 
						 
				 
			
				
					
						
							
							
								Xavier Ordoquy 
							
						 
					 
					
						
						
						
						
							
						
						
							56b4390316 
							
						 
					 
					
						
						
							
							Merge remote-tracking branch 'origin/master' into 2.4.0  
						
						... 
						
						
						
						Conflicts:
	.travis.yml
	rest_framework/serializers.py
	rest_framework/tests/test_authentication.py 
						
					 
					
						2014-04-30 22:21:26 +02:00 
						 
				 
			
				
					
						
							
							
								Xavier Ordoquy 
							
						 
					 
					
						
						
						
						
							
						
						
							f4a82dd5da 
							
						 
					 
					
						
						
							
							Updated the release notes.  
						
						
						
					 
					
						2014-04-24 14:33:36 +02:00 
						 
				 
			
				
					
						
							
							
								Xavier Ordoquy 
							
						 
					 
					
						
						
						
						
							
						
						
							1797a74e82 
							
						 
					 
					
						
						
							
							Merge remote-tracking branch 'pelme/pytest' into feature/pytest  
						
						... 
						
						
						
						Conflicts:
	.travis.yml
	rest_framework/runtests/runtests.py
	tests/test_filters.py
	tests/test_pagination.py
	tox.ini 
						
					 
					
						2014-04-17 09:53:44 +02:00 
						 
				 
			
				
					
						
							
							
								Xavier Ordoquy 
							
						 
					 
					
						
						
						
						
							
						
						
							d08536ad9d 
							
						 
					 
					
						
						
							
							Merge remote-tracking branch 'origin/master' into 2.4.0  
						
						... 
						
						
						
						Conflicts:
	.travis.yml
	docs/api-guide/fields.md
	docs/api-guide/routers.md
	docs/topics/release-notes.md
	rest_framework/authentication.py
	rest_framework/serializers.py
	rest_framework/templatetags/rest_framework.py
	rest_framework/tests/test_authentication.py
	rest_framework/tests/test_filters.py
	rest_framework/tests/test_hyperlinkedserializers.py
	rest_framework/tests/test_serializer.py
	rest_framework/tests/test_testing.py
	rest_framework/utils/encoders.py
	tox.ini 
						
					 
					
						2014-04-13 00:05:57 +02:00 
						 
				 
			
				
					
						
							
							
								Dmitry Mukhin 
							
						 
					 
					
						
						
						
						
							
						
						
							e45e52a255 
							
						 
					 
					
						
						
							
							replace page with page_size to avoide confusion  
						
						
						
					 
					
						2014-04-07 20:39:45 +04:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							c1148241ee 
							
						 
					 
					
						
						
							
							Version 2.3.13  
						
						
						
					 
					
						2014-03-06 09:01:05 +00:00 
						 
				 
			
				
					
						
							
							
								Andreas Pelme 
							
						 
					 
					
						
						
						
						
							
						
						
							971578ca34 
							
						 
					 
					
						
						
							
							Support for running the test suite with py.test  
						
						... 
						
						
						
						* Get rid of runtests.py
 * Moved test code  from rest_framework/tests and rest_framework/runtests to tests
 * Invoke py.test from setup.py
 * Invoke py.test from Travis
 * Invoke py.test from tox
 * Changed setUpClass to be just plain setUp in test_permissions.py
 * Updated contribution guideline to show how to invoke py.test 
						
					 
					
						2014-03-02 12:40:30 +01:00 
						 
				 
			
				
					
						
							
							
								Kumar McMillan 
							
						 
					 
					
						
						
						
						
							
						
						
							e2857bdcff 
							
						 
					 
					
						
						
							
							Fix link to tox  
						
						
						
					 
					
						2014-02-28 16:35:03 -06:00 
						 
				 
			
				
					
						
							
							
								Kumar McMillan 
							
						 
					 
					
						
						
						
						
							
						
						
							f5f4c1a837 
							
						 
					 
					
						
						
							
							strip trailing whitespace  
						
						... 
						
						
						
						my editor does this by default 
						
					 
					
						2014-02-28 16:34:42 -06:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							aaa5885232 
							
						 
					 
					
						
						
							
							Update credits  
						
						
						
					 
					
						2014-02-13 17:40:00 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							c465ceaf5c 
							
						 
					 
					
						
						
							
							Merge pull request  #1417  from amezhenin/issue_1386  
						
						... 
						
						
						
						Add myself into credits.md 
						
					 
					
						2014-02-13 17:38:38 +00:00 
						 
				 
			
				
					
						
							
							
								Artem Mezhenin 
							
						 
					 
					
						
						
						
						
							
						
						
							45d89b5d11 
							
						 
					 
					
						
						
							
							credit, issue  #1386 , PR  #1397  
						
						
						
					 
					
						2014-02-13 21:25:35 +04:00 
						 
				 
			
				
					
						
							
							
								amatellanes 
							
						 
					 
					
						
						
						
						
							
						
						
							0cb08ac707 
							
						 
					 
					
						
						
							
							Fixed Testing docs section  
						
						
						
					 
					
						2014-02-12 23:17:05 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							71c03b9db9 
							
						 
					 
					
						
						
							
							Security update to OrderingFilter  
						
						
						
					 
					
						2014-01-15 14:27:41 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							85d74fc86a 
							
						 
					 
					
						
						
							
							Added write_only and write_only_fields.  Refs  #1306  
						
						
						
					 
					
						2014-01-14 11:25:44 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							2911cd64ad 
							
						 
					 
					
						
						
							
							Minor tweaks to 'lookup_value_regex' work  
						
						
						
					 
					
						2014-01-13 15:37:52 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a90796c0f0 
							
						 
					 
					
						
						
							
							Track changes that need noting in 2.4 announcement  
						
						
						
					 
					
						2014-01-13 09:56:57 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							78494401c5 
							
						 
					 
					
						
						
							
							Use www.django-rest-framework.org for docs instead of django-rest-framework.org due to issues with naked domains  
						
						
						
					 
					
						2014-01-08 15:22:41 +00:00 
						 
				 
			
				
					
						
							
							
								Kevin Brown 
							
						 
					 
					
						
						
						
						
							
						
						
							0672d6de6e 
							
						 
					 
					
						
						
							
							Fix bugfix note  
						
						... 
						
						
						
						This fixes a bugfix note that was added because of #1293 , which
pointed out that a change in a bugfix [1] broke backwards
compatibility.  The bugfix did not work as expected because a
variable was quoted when it should not have been.  This removes
the quotes around the variable, which brings back the expected
functionality. 
						
					 
					
						2014-01-02 16:46:57 -05:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							bed2f08c24 
							
						 
					 
					
						
						
							
							Updated release notes  
						
						
						
					 
					
						2013-12-23 11:57:25 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							52686420f4 
							
						 
					 
					
						
						
							
							Merge branch 'bennbollay-patch-1' into 2.4.0  
						
						... 
						
						
						
						Conflicts:
	.travis.yml
	docs/api-guide/routers.md
	rest_framework/compat.py
	tox.ini 
						
					 
					
						2013-12-23 09:48:59 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							31dd160256 
							
						 
					 
					
						
						
							
							Typo  
						
						
						
					 
					
						2013-12-16 11:59:14 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							6b6b255684 
							
						 
					 
					
						
						
							
							Add note on pagination bugfix.   Closes   #1293 .  
						
						
						
					 
					
						2013-12-14 20:42:58 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f78b3187df 
							
						 
					 
					
						
						
							
							Added @philipforget for work on  #1232 . Thanks :)  
						
						
						
					 
					
						2013-12-13 22:01:19 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							54d3c6a725 
							
						 
					 
					
						
						
							
							Updated release notes  
						
						
						
					 
					
						2013-12-13 21:59:47 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							87b99d1ac8 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-12-13 20:17:26 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							9c41c007af 
							
						 
					 
					
						
						
							
							Merge branch 'master' into 2.4.0  
						
						... 
						
						
						
						Conflicts:
	.travis.yml
	docs/api-guide/routers.md
	docs/topics/release-notes.md
	rest_framework/compat.py 
						
					 
					
						2013-12-13 16:32:34 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							c09ad1bedc 
							
						 
					 
					
						
						
							
							Remove incorrect apostrophe  
						
						
						
					 
					
						2013-12-10 08:53:38 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							40164fcc62 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-12-10 08:49:54 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							2c898bd901 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-12-09 09:27:10 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							c1be503308 
							
						 
					 
					
						
						
							
							Add notes to contributing docs  
						
						
						
					 
					
						2013-12-09 08:46:18 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e6f6bb5c7e 
							
						 
					 
					
						
						
							
							Add notes to contributing docs  
						
						
						
					 
					
						2013-12-09 08:42:09 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							23369650e3 
							
						 
					 
					
						
						
							
							Add notes to contributing docs  
						
						
						
					 
					
						2013-12-09 08:14:21 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e80b353085 
							
						 
					 
					
						
						
							
							Add notes to contributing docs  
						
						
						
					 
					
						2013-12-09 08:10:51 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							910de38a9c 
							
						 
					 
					
						
						
							
							Version 2.3.10  
						
						
						
					 
					
						2013-12-06 22:13:50 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							85d9eb0f7e 
							
						 
					 
					
						
						
							
							Update release-notes.md  
						
						
						
					 
					
						2013-12-06 21:47:26 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							51359e4612 
							
						 
					 
					
						
						
							
							Added @chuckharmston for kickass bug squashing in  #1272  
						
						
						
					 
					
						2013-12-06 21:42:52 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							6446b44f01 
							
						 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/tomchristie/django-rest-framework  
						
						
						
					 
					
						2013-12-04 14:59:28 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							de5b9e39dd 
							
						 
					 
					
						
						
							
							First pass on contribution guide  
						
						
						
					 
					
						2013-12-04 14:59:09 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							38d78b21c0 
							
						 
					 
					
						
						
							
							Remove Content-Type header from empty responses.  Fixes   #1196  
						
						
						
					 
					
						2013-12-03 16:55:11 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							9f1918e41e 
							
						 
					 
					
						
						
							
							Added @ian-foote, for work on  #1250 .  Thanks!  
						
						
						
					 
					
						2013-12-03 16:06:57 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							b92c911cf6 
							
						 
					 
					
						
						
							
							Update release-notes.md  
						
						
						
					 
					
						2013-12-03 16:05:19 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							fe4c7d4000 
							
						 
					 
					
						
						
							
							Update release-notes.md  
						
						
						
					 
					
						2013-12-03 08:26:58 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							304b193efe 
							
						 
					 
					
						
						
							
							Update release-notes.md  
						
						
						
					 
					
						2013-11-19 15:58:34 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ca2bd616d9 
							
						 
					 
					
						
						
							
							Remove a couple of .html suffixes in docs  
						
						
						
					 
					
						2013-11-19 11:01:27 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							1d1b2f765c 
							
						 
					 
					
						
						
							
							Version 2.3.9  
						
						
						
					 
					
						2013-11-15 13:55:02 +00:00 
						 
				 
			
				
					
						
							
							
								Alex 
							
						 
					 
					
						
						
						
						
							
						
						
							72d72e4d3e 
							
						 
					 
					
						
						
							
							Add Alex Good to credits (Whoop!)  
						
						
						
					 
					
						2013-11-13 14:32:37 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							5e0538fcda 
							
						 
					 
					
						
						
							
							Added @robhudson for work on  #1211 .  Thanks!  
						
						
						
					 
					
						2013-11-02 09:15:35 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							2ddf7869e3 
							
						 
					 
					
						
						
							
							Added @yamila-moreno for work on  #1199 . Thanks!  
						
						
						
					 
					
						2013-10-24 15:29:40 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4d894fd39e 
							
						 
					 
					
						
						
							
							Added @alexanderlukanin13 for  fix   #1198 .  Thanks!  
						
						
						
					 
					
						2013-10-24 13:50:05 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f92d8bd972 
							
						 
					 
					
						
						
							
							Added @jbzdak, for the nice docs improvements in  #1191 . Thanks!  
						
						
						
					 
					
						2013-10-22 12:21:26 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							fa87fac61b 
							
						 
					 
					
						
						
							
							Added @ross for work on  #1187 . Thanks!  
						
						
						
					 
					
						2013-10-22 10:21:06 +01:00 
						 
				 
			
				
					
						
							
							
								Colin 
							
						 
					 
					
						
						
						
						
							
						
						
							daf927ef68 
							
						 
					 
					
						
						
							
							add @tamakisquare for work on  #1111  
						
						
						
					 
					
						2013-10-17 12:28:58 -07:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							545ee013e3 
							
						 
					 
					
						
						
							
							Added @badale, for work on  #1179 .  Thanks!  
						
						
						
					 
					
						2013-10-17 09:40:06 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							3833f1d55f 
							
						 
					 
					
						
						
							
							Added @hcliff for  #1153 . Thanks!  
						
						
						
					 
					
						2013-10-04 15:55:57 +01:00 
						 
				 
			
				
					
						
							
							
								Jeff 
							
						 
					 
					
						
						
						
						
							
						
						
							61dd9ce914 
							
						 
					 
					
						
						
							
							Update release-notes.md  
						
						... 
						
						
						
						Simple typo fix. 
						
					 
					
						2013-10-01 15:47:47 -06:00 
						 
				 
			
				
					
						
							
							
								Krzysztof Jurewicz 
							
						 
					 
					
						
						
						
						
							
						
						
							49847584a8 
							
						 
					 
					
						
						
							
							Minor documentation fix.  
						
						
						
					 
					
						2013-09-29 12:49:38 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							21cd638659 
							
						 
					 
					
						
						
							
							Merge master  
						
						
						
					 
					
						2013-09-25 09:44:26 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							57a51f790b 
							
						 
					 
					
						
						
							
							Added @mkai, for work on  #1126 .  Thanks!  
						
						
						
					 
					
						2013-09-24 09:21:55 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e8c6cd5622 
							
						 
					 
					
						
						
							
							Update release notes.  
						
						
						
					 
					
						2013-09-13 19:43:19 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d75ecb3d69 
							
						 
					 
					
						
						
							
							Added @mrmachine.  Thanks!  
						
						... 
						
						
						
						For work on #1109 . 
						
					 
					
						2013-09-13 19:40:58 +01:00 
						 
				 
			
				
					
						
							
							
								Tai Lee 
							
						 
					 
					
						
						
						
						
							
						
						
							a9dbd46c94 
							
						 
					 
					
						
						
							
							Refs  #1109  -- Update docs. Integrate changes from feedback.  
						
						
						
					 
					
						2013-09-14 00:54:44 +10:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							895beb89c6 
							
						 
					 
					
						
						
							
							Note on '.model' as default only, with 'serializer_class', and 'queryset' attributes prefered.   Closes   #1100  
						
						
						
					 
					
						2013-09-12 21:41:21 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							195790e60b 
							
						 
					 
					
						
						
							
							Version 2.3.8  
						
						
						
					 
					
						2013-09-11 09:09:30 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e021472a16 
							
						 
					 
					
						
						
							
							Added @bwreilly for awesome work on  #1093 .  Thanks!!!  
						
						
						
					 
					
						2013-09-10 21:07:20 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							101da45810 
							
						 
					 
					
						
						
							
							Updated release notes  
						
						
						
					 
					
						2013-09-10 21:06:42 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f5c34926d6 
							
						 
					 
					
						
						
							
							Update release-notes.md  
						
						
						
					 
					
						2013-09-09 20:41:54 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							b47f1b0257 
							
						 
					 
					
						
						
							
							Added @edmundwong for work on  #1076 .  Thanks!  
						
						
						
					 
					
						2013-09-05 20:25:45 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f8101114d1 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-08-30 09:31:35 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							9a5b2eefa9 
							
						 
					 
					
						
						
							
							Merge master  
						
						
						
					 
					
						2013-08-30 09:28:33 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ac0fb01be3 
							
						 
					 
					
						
						
							
							Update release notes.  
						
						
						
					 
					
						2013-08-29 19:31:36 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4b46de7dce 
							
						 
					 
					
						
						
							
							Added @diox for  fix   #1074 .  Thanks!  
						
						
						
					 
					
						2013-08-29 19:31:36 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							6f8acb5a76 
							
						 
					 
					
						
						
							
							Added @niwibe  
						
						... 
						
						
						
						For docs addition #1070  - Thanks! 
						
					 
					
						2013-08-29 09:31:12 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							711fb9761c 
							
						 
					 
					
						
						
							
							Update release notes.  
						
						
						
					 
					
						2013-08-28 13:35:27 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d7224afe54 
							
						 
					 
					
						
						
							
							Added @alexander-akhmetov.  
						
						... 
						
						
						
						For work on MAX_PAGINATE_BY, #1063 .  Thanks! :) 
						
					 
					
						2013-08-28 12:57:29 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							c3e273a90e 
							
						 
					 
					
						
						
							
							Added @kristianoellegaard.  
						
						... 
						
						
						
						For docs addition #1059 .  Thanks! 
						
					 
					
						2013-08-27 09:16:20 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							2340035789 
							
						 
					 
					
						
						
							
							Added @ericbuehl  
						
						... 
						
						
						
						For pull request #1058 .  Thank you! :) 
						
					 
					
						2013-08-25 20:48:10 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f54fc3a76b 
							
						 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/tomchristie/django-rest-framework  
						
						
						
					 
					
						2013-08-23 14:06:39 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							7bbe0f868f 
							
						 
					 
					
						
						
							
							Added @krzysiekj  
						
						... 
						
						
						
						For work on #1034 .  Thanks! 
						
					 
					
						2013-08-23 13:37:25 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f2b190e374 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-08-23 12:06:23 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							19a774f972 
							
						 
					 
					
						
						
							
							force_authenticate(None) also clears session info.  
						
						... 
						
						
						
						Closes  #1055 . 
					
						2013-08-23 11:21:52 +01:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							b8561f4123 
							
						 
					 
					
						
						
							
							Add @ramiro for  #1056  thanks!  
						
						
						
					 
					
						2013-08-22 17:52:22 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							16ffdedd14 
							
						 
					 
					
						
						
							
							Merge master  
						
						
						
					 
					
						2013-08-21 21:31:59 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							44ceef8415 
							
						 
					 
					
						
						
							
							Updating 2.4.0 release notes  
						
						
						
					 
					
						2013-08-21 21:30:25 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4338e1e43f 
							
						 
					 
					
						
						
							
							Added @filipeximenes  
						
						... 
						
						
						
						For work on #1050 .  Thanks! 
						
					 
					
						2013-08-21 20:00:35 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f84d4951bf 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-08-19 21:46:34 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							34d65119fc 
							
						 
					 
					
						
						
							
							Update release notes.  
						
						
						
					 
					
						2013-08-19 08:54:48 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							3a99b0af50 
							
						 
					 
					
						
						
							
							Added @chrispaolini.  
						
						... 
						
						
						
						For customizable view names/descriptions in #1043 .  Thanks! :) 
						
					 
					
						2013-08-19 08:47:52 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f6f69dc71d 
							
						 
					 
					
						
						
							
							Version 2.3.7  
						
						
						
					 
					
						2013-08-16 14:03:20 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d5b56310b0 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-08-16 13:23:27 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							7bc63fbb11 
							
						 
					 
					
						
						
							
							Added @jsatt.  
						
						... 
						
						
						
						For fix & tests in #1037 . 
						
					 
					
						2013-08-14 13:17:30 +01:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							999056cde1 
							
						 
					 
					
						
						
							
							Add @martync for  #1033  thanks!  
						
						
						
					 
					
						2013-08-13 10:43:07 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							54b7b6760c 
							
						 
					 
					
						
						
							
							Added @etos.  
						
						... 
						
						
						
						For fixes in #1029 , #1030  - Thanks! 
						
					 
					
						2013-08-12 09:27:34 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							2761d6a472 
							
						 
					 
					
						
						
							
							Added @kolvia.  
						
						... 
						
						
						
						For multiple documentation fixes in #1026 .  Thank you! :) 
						
					 
					
						2013-08-07 20:27:41 +01:00 
						 
				 
			
				
					
						
							
							
								Veronica Lynn 
							
						 
					 
					
						
						
						
						
							
						
						
							4d8d2340be 
							
						 
					 
					
						
						
							
							Fixed typos in a bunch of docs  
						
						
						
					 
					
						2013-08-07 14:00:06 -04:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							e4144b5b67 
							
						 
					 
					
						
						
							
							Add @rlr for  #1022  thanks!  
						
						
						
					 
					
						2013-08-02 08:59:18 +02:00 
						 
				 
			
				
					
						
							
							
								leandersikma 
							
						 
					 
					
						
						
						
						
							
						
						
							56d19dcc1c 
							
						 
					 
					
						
						
							
							Wrong name of the login_base html file.  
						
						... 
						
						
						
						Changed rest_framework/base_login.html to rest_framework/login_base.html (which is the correct name the user should extends in their templates). 
						
					 
					
						2013-07-30 11:26:17 +02:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							205c626d6e 
							
						 
					 
					
						
						
							
							Add @jimr for  #1013  thanks!  
						
						
						
					 
					
						2013-07-29 15:53:26 +02:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							e98c229e5a 
							
						 
					 
					
						
						
							
							Add @coderigo for  #1011  thanks!  
						
						
						
					 
					
						2013-07-28 18:51:22 +02:00 
						 
				 
			
				
					
						
							
							
								Kevin Brown 
							
						 
					 
					
						
						
						
						
							
						
						
							9088c18da8 
							
						 
					 
					
						
						
							
							Added to the credits  
						
						
						
					 
					
						2013-07-26 11:03:37 -04:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							0fa9866848 
							
						 
					 
					
						
						
							
							Add @willkg for  #1007  thanks!  
						
						
						
					 
					
						2013-07-26 09:26:32 +02:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							c23412b51c 
							
						 
					 
					
						
						
							
							Add @pzinovkin for  #995  thanks!  
						
						
						
					 
					
						2013-07-24 11:02:10 +02:00 
						 
				 
			
				
					
						
							
							
								Steve 
							
						 
					 
					
						
						
						
						
							
						
						
							61a242e27b 
							
						 
					 
					
						
						
							
							added script block to list of blocks  
						
						... 
						
						
						
						Phew, was afraid I wouldn't be able to overwrite this section.. 
						
					 
					
						2013-07-23 10:40:54 -04:00 
						 
				 
			
				
					
						
							
							
								Kevin Brown 
							
						 
					 
					
						
						
						
						
							
						
						
							8f2e71a67f 
							
						 
					 
					
						
						
							
							Modified documentation for CSRF as mentioned in  #984  
						
						
						
					 
					
						2013-07-19 19:49:20 -04:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							1cfb1cf458 
							
						 
					 
					
						
						
							
							Added @cyroxx for work on  #978  
						
						
						
					 
					
						2013-07-10 21:14:18 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							77364d2b84 
							
						 
					 
					
						
						
							
							Add screenshot, and tweak docs  
						
						
						
					 
					
						2013-07-09 14:00:53 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							cb95e0aab1 
							
						 
					 
					
						
						
							
							Merge pull request  #970  from sebastibe/browsable-autocomplete-field-doc  
						
						... 
						
						
						
						Add recommendation about autocomplete widgets for the browsable API 
						
					 
					
						2013-07-09 05:46:30 -07:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f94ce6e7cb 
							
						 
					 
					
						
						
							
							Added @gertjanol for work on  #976  - thank you :)  
						
						
						
					 
					
						2013-07-09 13:13:56 +01:00 
						 
				 
			
				
					
						
							
							
								Sebastien Beal 
							
						 
					 
					
						
						
						
						
							
						
						
							997a93ac2e 
							
						 
					 
					
						
						
							
							Add info about autocomplete widgets for browsable API  
						
						
						
					 
					
						2013-07-07 19:04:47 +09:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							0950d3e0ef 
							
						 
					 
					
						
						
							
							Tweak docs  
						
						
						
					 
					
						2013-07-04 08:02:08 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							7c0019854b 
							
						 
					 
					
						
						
							
							Horizontal rule for nicer formatting  
						
						
						
					 
					
						2013-07-03 13:19:07 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a55a293450 
							
						 
					 
					
						
						
							
							Improve browsable API docs including theme screenshots  
						
						
						
					 
					
						2013-07-03 13:02:32 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							2c477a9ca1 
							
						 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/tomchristie/django-rest-framework  
						
						
						
					 
					
						2013-07-02 22:16:24 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							03e0ce35fe 
							
						 
					 
					
						
						
							
							Added 'Documenting your API' section.  Closes   #616  
						
						
						
					 
					
						2013-07-02 22:15:46 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e969c96aa0 
							
						 
					 
					
						
						
							
							Added @omouse for work on  #955  - thanks! :)  
						
						
						
					 
					
						2013-07-02 22:08:40 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							7ba2f44a0f 
							
						 
					 
					
						
						
							
							Version 2.3.6  
						
						
						
					 
					
						2013-06-27 13:00:05 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							af2fdc03a6 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-06-26 22:45:39 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							cb83bc373f 
							
						 
					 
					
						
						
							
							Added @trwired for  fix   #943 .  Thanks :)  
						
						
						
					 
					
						2013-06-26 22:44:44 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							494703fc8e 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-06-26 22:40:14 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							fb6bcd9f06 
							
						 
					 
					
						
						
							
							Update release notes, noting support for StreamingHttpResponse.  Refs  #939  
						
						
						
					 
					
						2013-06-21 22:43:01 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4f7f93e20e 
							
						 
					 
					
						
						
							
							Added @freakydug, for changes in  #941 . Thanks :)  
						
						
						
					 
					
						2013-06-21 22:28:36 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ef38886fe8 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-06-14 15:40:20 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							1cc2a7b25e 
							
						 
					 
					
						
						
							
							Added @davesque for work on  #926 . Thanks! :)  
						
						
						
					 
					
						2013-06-12 22:46:07 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							5ce1d6c86b 
							
						 
					 
					
						
						
							
							Added @mindlace for work on  #922 . Thx!  
						
						
						
					 
					
						2013-06-08 09:38:21 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f317699d47 
							
						 
					 
					
						
						
							
							Added @areski for docs  fix   #912 . Thanks!  
						
						
						
					 
					
						2013-06-05 14:36:40 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							28c2c46a03 
							
						 
					 
					
						
						
							
							Version 2.3.5  
						
						
						
					 
					
						2013-06-03 12:34:18 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							11cbf8dca2 
							
						 
					 
					
						
						
							
							Added @copitux for work on  #900 . Thanks! :)  
						
						
						
					 
					
						2013-06-03 09:50:29 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							959ece66e5 
							
						 
					 
					
						
						
							
							Added @aburgel for work on  #887 . Thank you :)  
						
						
						
					 
					
						2013-06-02 20:43:20 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							27d8b848bc 
							
						 
					 
					
						
						
							
							Add notes on 'method' argument to '@action' decorator  
						
						
						
					 
					
						2013-06-02 20:40:56 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							b15a6ccef2 
							
						 
					 
					
						
						
							
							Serializer field 'default' argument may be a callable  
						
						
						
					 
					
						2013-06-02 20:12:49 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							363b342548 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-05-31 12:24:36 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							2e566ade39 
							
						 
					 
					
						
						
							
							Release notes  
						
						
						
					 
					
						2013-05-30 11:47:21 +01:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							7a570e16e9 
							
						 
					 
					
						
						
							
							Fix md formatting and typos  
						
						
						
					 
					
						2013-05-28 17:13:12 +02:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							d7bf02e09e 
							
						 
					 
					
						
						
							
							Add @pborreli for  #897  
						
						
						
					 
					
						2013-05-28 16:43:08 +02:00 
						 
				 
			
				
					
						
							
							
								Pascal Borreli 
							
						 
					 
					
						
						
						
						
							
						
						
							8f35ac4f93 
							
						 
					 
					
						
						
							
							Fixed typos  
						
						
						
					 
					
						2013-05-28 15:09:23 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							2a38aa7291 
							
						 
					 
					
						
						
							
							Version 2.3.4  
						
						
						
					 
					
						2013-05-24 23:55:59 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							fcaee6e580 
							
						 
					 
					
						
						
							
							Clean up OPTIONS implementation  
						
						
						
					 
					
						2013-05-24 23:44:23 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							78c53d530f 
							
						 
					 
					
						
						
							
							Updating docs  
						
						
						
					 
					
						2013-05-24 21:08:27 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							02b29267ac 
							
						 
					 
					
						
						
							
							Fix release notes  
						
						
						
					 
					
						2013-05-22 21:04:42 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							6434a5f4a8 
							
						 
					 
					
						
						
							
							Added @mikee2185 and @mjtorn for their work on  #467 .  Thank you :)  
						
						
						
					 
					
						2013-05-21 12:12:39 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							8bbb94dea9 
							
						 
					 
					
						
						
							
							Added @atarzwell for docs  fix   #876 . Thanks!  
						
						
						
					 
					
						2013-05-21 12:18:37 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							26e037d415 
							
						 
					 
					
						
						
							
							Fix broken docs links.   Closes   #873  
						
						
						
					 
					
						2013-05-20 13:49:42 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							3aad12220d 
							
						 
					 
					
						
						
							
							Added @commonorgarden, for  fix   #875 .  Thank you :)  
						
						
						
					 
					
						2013-05-20 13:46:29 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							351814e110 
							
						 
					 
					
						
						
							
							Added @lolek09 for work on  #862 .  Kick ass!  
						
						
						
					 
					
						2013-05-18 18:32:02 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							6af61a19b7 
							
						 
					 
					
						
						
							
							Added @matteosuppo for work on  #865 .  Thanks!  
						
						
						
					 
					
						2013-05-18 18:07:43 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							3ba43b960e 
							
						 
					 
					
						
						
							
							Added @andymckay for refactoring  #860  
						
						
						
					 
					
						2013-05-18 16:19:05 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							794413734f 
							
						 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/mmcardle/django-rest-framework  into styling-fixes  
						
						
						
					 
					
						2013-05-18 14:50:49 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							304c07681d 
							
						 
					 
					
						
						
							
							Merge  
						
						
						
					 
					
						2013-05-18 14:45:06 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							275bfa2320 
							
						 
					 
					
						
						
							
							Added @grimborg and @ryankask. Go Team. :)  
						
						
						
					 
					
						2013-05-18 14:03:08 +01:00 
						 
				 
			
				
					
						
							
							
								Mark McArdle 
							
						 
					 
					
						
						
						
						
							
						
						
							72bc5a3556 
							
						 
					 
					
						
						
							
							documentation for  https://github.com/tomchristie/django-rest-framework/issues/775  
						
						
						
					 
					
						2013-05-18 13:19:13 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a0e3c44c99 
							
						 
					 
					
						
						
							
							Added @craigds, @pyriku, @brianz - Yay for sprints!  
						
						
						
					 
					
						2013-05-18 13:40:20 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f1fb434e6d 
							
						 
					 
					
						
						
							
							Update release-notes.md  
						
						
						
					 
					
						2013-05-16 19:59:33 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							bc3dfca5e3 
							
						 
					 
					
						
						
							
							Added @rouge8 for bugfix  #844 .  Thank you!  
						
						
						
					 
					
						2013-05-16 19:58:17 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							aff88d15f7 
							
						 
					 
					
						
						
							
							Version 2.3.3  
						
						
						
					 
					
						2013-05-16 15:08:12 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							599c0eb0db 
							
						 
					 
					
						
						
							
							Added @jsummerfield for cleanups in  #824 . Thanks!  
						
						
						
					 
					
						2013-05-14 19:38:41 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d199a89c18 
							
						 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/tomchristie/django-rest-framework  
						
						
						
					 
					
						2013-05-14 11:40:43 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							6487fa535b 
							
						 
					 
					
						
						
							
							Added @avinash240 for bugfix  #822  
						
						
						
					 
					
						2013-05-14 11:39:30 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							727a64f3b9 
							
						 
					 
					
						
						
							
							Updated release notes  
						
						
						
					 
					
						2013-05-14 11:38:55 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f9aeb68383 
							
						 
					 
					
						
						
							
							Updated release notes  
						
						
						
					 
					
						2013-05-14 09:59:29 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							1154d873e9 
							
						 
					 
					
						
						
							
							Added django-viewsets to credits.  Refs  #738 .  
						
						
						
					 
					
						2013-05-13 13:35:16 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							fd84cf7f10 
							
						 
					 
					
						
						
							
							Docs tweaks  
						
						
						
					 
					
						2013-05-10 21:56:33 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							2e3032ff8c 
							
						 
					 
					
						
						
							
							Added @hamishcampbell for docs  fix   #818 . Thanks!  
						
						
						
					 
					
						2013-05-10 14:14:42 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4ab7b8f257 
							
						 
					 
					
						
						
							
							Version 2.3.2  
						
						
						
					 
					
						2013-05-08 20:49:49 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							9d59e55cec 
							
						 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/tomchristie/django-rest-framework  
						
						
						
					 
					
						2013-05-08 20:09:03 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							2379014f15 
							
						 
					 
					
						
						
							
							Add rails in credits section  
						
						
						
					 
					
						2013-05-08 20:08:35 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							42ba5b425b 
							
						 
					 
					
						
						
							
							Added @dhepper for typo fixes in  #812 .  
						
						
						
					 
					
						2013-05-08 10:02:52 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a758066c03 
							
						 
					 
					
						
						
							
							Added @eyepulp for  fix   #810  
						
						
						
					 
					
						2013-05-07 17:25:51 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d7c08222f1 
							
						 
					 
					
						
						
							
							Fix breadcrumb rendering issue  
						
						
						
					 
					
						2013-05-07 14:11:48 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ed2cf180c9 
							
						 
					 
					
						
						
							
							Version 2.3.0  
						
						
						
					 
					
						2013-05-07 13:29:38 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							3353889ae8 
							
						 
					 
					
						
						
							
							Docs for FileUploadParser  
						
						
						
					 
					
						2013-05-07 13:27:27 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							0f00da848d 
							
						 
					 
					
						
						
							
							Tweak 2.3 release notes  
						
						
						
					 
					
						2013-05-07 13:07:42 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							3c2bb06660 
							
						 
					 
					
						
						
							
							Support for multiple filter classes  
						
						
						
					 
					
						2013-05-07 13:00:44 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d71a5533f9 
							
						 
					 
					
						
						
							
							allow_empty -> pending deprecation in preference of overridden get_queryset.  
						
						
						
					 
					
						2013-05-07 12:25:41 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							b70c9cc107 
							
						 
					 
					
						
						
							
							Merge master  
						
						
						
					 
					
						2013-05-05 18:12:35 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							2d44dc3f54 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-05-02 12:46:10 +01:00 
						 
				 
			
				
					
						
							
							
								Victor Shih 
							
						 
					 
					
						
						
						
						
							
						
						
							8cabae22c5 
							
						 
					 
					
						
						
							
							Example and spelling fixes. Change "browseable" to "browsable" for consistency.  
						
						
						
					 
					
						2013-05-01 21:26:40 -07:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ddbbe7844b 
							
						 
					 
					
						
						
							
							Document lookup_field in release notes  
						
						
						
					 
					
						2013-05-01 09:10:49 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							22af28d146 
							
						 
					 
					
						
						
							
							Merge master  
						
						
						
					 
					
						2013-04-30 19:32:34 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							21ae3a6691 
							
						 
					 
					
						
						
							
							Drop out  attribute  
						
						
						
					 
					
						2013-04-30 08:24:33 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							81c3b4f250 
							
						 
					 
					
						
						
							
							Updated release notes  
						
						
						
					 
					
						2013-04-29 17:32:32 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							0c1ab584d3 
							
						 
					 
					
						
						
							
							Tweaks for preferring .queryset over .model  
						
						
						
					 
					
						2013-04-29 14:08:38 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							70831ad0bb 
							
						 
					 
					
						
						
							
							Docs tweaks  
						
						
						
					 
					
						2013-04-29 12:08:21 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							5d357a9b08 
							
						 
					 
					
						
						
							
							Added @chenjyw for depth bugfix  #802 .  Thanks!  
						
						
						
					 
					
						2013-04-29 10:28:51 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d985aec3c9 
							
						 
					 
					
						
						
							
							DecimalField  
						
						
						
					 
					
						2013-04-26 13:59:06 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							74b3307978 
							
						 
					 
					
						
						
							
							Docs, docs, docs  
						
						
						
					 
					
						2013-04-25 20:43:37 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							9abaf77401 
							
						 
					 
					
						
						
							
							More viewset/router docs  
						
						
						
					 
					
						2013-04-25 17:39:33 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							b14b584989 
							
						 
					 
					
						
						
							
							Remove 2.0 migration guide which was never included  
						
						
						
					 
					
						2013-04-25 12:48:01 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							b94da2468c 
							
						 
					 
					
						
						
							
							Various clean up and lots of docs  
						
						
						
					 
					
						2013-04-24 22:40:24 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							eaac152940 
							
						 
					 
					
						
						
							
							Added @forgingdestiny for login template work.  
						
						... 
						
						
						
						Thanks!  (Refs: #794 ) 
						
					 
					
						2013-04-17 23:19:16 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							eb58596b89 
							
						 
					 
					
						
						
							
							Update release-notes.md  
						
						
						
					 
					
						2013-04-17 23:17:08 +02:00 
						 
				 
			
				
					
						
							
							
								Matt Majewski 
							
						 
					 
					
						
						
						
						
							
						
						
							f7fdcd55e4 
							
						 
					 
					
						
						
							
							Update browsable-api.md  
						
						... 
						
						
						
						Add login template docs 
						
					 
					
						2013-04-17 12:27:48 -03:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ea55143a23 
							
						 
					 
					
						
						
							
							Version 2.2.7  
						
						
						
					 
					
						2013-04-17 09:07:20 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							37fe0bf0de 
							
						 
					 
					
						
						
							
							Remove unneccessary tests from  #789 , and bit of cleanup.  
						
						
						
					 
					
						2013-04-17 09:03:24 +01:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							15f4013859 
							
						 
					 
					
						
						
							
							Remove rebase docs  
						
						
						
					 
					
						2013-04-15 13:06:22 +02:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							8b44599aba 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-04-15 13:04:36 +02:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							ad436d966f 
							
						 
					 
					
						
						
							
							Add DecimalField support  
						
						
						
					 
					
						2013-04-15 13:02:18 +02:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							1b5382c146 
							
						 
					 
					
						
						
							
							Add DecimalField support  
						
						
						
					 
					
						2013-04-15 12:40:18 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							c2280e34ec 
							
						 
					 
					
						
						
							
							Version 2.2.6  
						
						
						
					 
					
						2013-04-04 21:53:15 +01:00 
						 
				 
			
				
					
						
							
							
								glic3rinu 
							
						 
					 
					
						
						
						
						
							
						
						
							77ac204429 
							
						 
					 
					
						
						
							
							Rephrased break_long_headers release notes line  
						
						
						
					 
					
						2013-04-04 14:07:56 +02:00 
						 
				 
			
				
					
						
							
							
								glic3rinu 
							
						 
					 
					
						
						
						
						
							
						
						
							e8978eaf68 
							
						 
					 
					
						
						
							
							Added break_long_headers on the release notes  
						
						
						
					 
					
						2013-04-04 14:02:20 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							df30b345b1 
							
						 
					 
					
						
						
							
							Update release-notes.md  
						
						
						
					 
					
						2013-04-03 13:58:42 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							cd94cfc441 
							
						 
					 
					
						
						
							
							Added @preed for bugfix  #772 . Thanks!  
						
						
						
					 
					
						2013-04-03 13:55:58 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							c39ef12de0 
							
						 
					 
					
						
						
							
							Update release-notes.md  
						
						
						
					 
					
						2013-04-03 13:53:18 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							afd64dc51a 
							
						 
					 
					
						
						
							
							Added @atlefren for bugfix in  #776  
						
						
						
					 
					
						2013-04-03 13:50:26 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							7d7c03eb24 
							
						 
					 
					
						
						
							
							Added @vshih for docs fixes in  #769 .  Thanks!  
						
						
						
					 
					
						2013-04-01 17:09:36 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							399ac70b83 
							
						 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/tomchristie/django-rest-framework  
						
						
						
					 
					
						2013-03-30 15:40:11 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							2e06f5c832 
							
						 
					 
					
						
						
							
							Fix typo  
						
						
						
					 
					
						2013-03-29 17:26:58 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							89f3c1f8c4 
							
						 
					 
					
						
						
							
							Update release-notes.md  
						
						
						
					 
					
						2013-03-29 13:44:50 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							fb105d138c 
							
						 
					 
					
						
						
							
							Minor tweak  
						
						
						
					 
					
						2013-03-28 14:54:25 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							92c929094c 
							
						 
					 
					
						
						
							
							Version 2.2.5  
						
						
						
					 
					
						2013-03-26 07:48:53 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							dca24cd914 
							
						 
					 
					
						
						
							
							Added @stoneg for typo  fix   #754 . Thank you!  
						
						
						
					 
					
						2013-03-25 16:44:36 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							624ce250cd 
							
						 
					 
					
						
						
							
							Updating contribution docs (still wip)  
						
						
						
					 
					
						2013-03-22 22:06:38 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							9a2ba4bf54 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-03-22 21:37:51 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							acc8c1faa4 
							
						 
					 
					
						
						
							
							force_insert, force_update arguments.  Closes   #484 .  
						
						... 
						
						
						
						Confirmed by `assertNumQueries(…)` in tests. 
						
					 
					
						2013-03-13 20:40:39 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4b68089d44 
							
						 
					 
					
						
						
							
							Version 2.2.4  
						
						
						
					 
					
						2013-03-13 13:07:46 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a798a5350a 
							
						 
					 
					
						
						
							
							Fix duplicated database queries for paginated lists.  
						
						... 
						
						
						
						Closes  #713 . 
					
						2013-03-13 11:42:12 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							1aecd71eb4 
							
						 
					 
					
						
						
							
							Added @kuhnza for work on  #695 .  Thanks!  
						
						
						
					 
					
						2013-03-12 20:52:04 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							208407d569 
							
						 
					 
					
						
						
							
							Update release notes.  
						
						
						
					 
					
						2013-03-12 20:49:44 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							377dc2cda2 
							
						 
					 
					
						
						
							
							Only honor X-HTTP-Method-Override for POST requests.  
						
						
						
					 
					
						2013-03-12 20:49:20 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							716d86863f 
							
						 
					 
					
						
						
							
							Merge pull request  #695  from kuhnza/master  
						
						... 
						
						
						
						Support for X-HTTP-Method-Override Header 
						
					 
					
						2013-03-12 13:40:48 -07:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a574dc7f85 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-03-12 20:12:22 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e8db504a98 
							
						 
					 
					
						
						
							
							Merge master  
						
						
						
					 
					
						2013-03-12 18:49:38 +00:00 
						 
				 
			
				
					
						
							
							
								Dave Kuhn 
							
						 
					 
					
						
						
						
						
							
						
						
							2bcb8ff12c 
							
						 
					 
					
						
						
							
							Documentation for X-HTTP-Method-Override  
						
						
						
					 
					
						2013-03-12 13:48:40 +11:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							2088023293 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-03-10 20:39:04 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							0df008dc83 
							
						 
					 
					
						
						
							
							Added @bouke for bug  fix   #722 . Thanks!  
						
						
						
					 
					
						2013-03-10 20:37:15 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							2c6c5d966e 
							
						 
					 
					
						
						
							
							Update release notes.  
						
						
						
					 
					
						2013-03-08 23:49:27 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							5e993f3929 
							
						 
					 
					
						
						
							
							Merge  
						
						
						
					 
					
						2013-03-08 23:00:23 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							6c1fcc855a 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-03-08 22:46:37 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							0b6267d8cd 
							
						 
					 
					
						
						
							
							Added @bitmonkey.  Thanks!  
						
						... 
						
						
						
						For work on handling errors when deserializing lists of objects. 
						
					 
					
						2013-03-08 22:28:59 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							c5b98f0d10 
							
						 
					 
					
						
						
							
							authtoken abstract if not installed.  
						
						... 
						
						
						
						Fixes  #705 . 
					
						2013-03-08 20:56:30 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4d48de631b 
							
						 
					 
					
						
						
							
							Docs on per-object filtering  
						
						
						
					 
					
						2013-03-08 20:41:00 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							1016c14a8a 
							
						 
					 
					
						
						
							
							Added @dulaccc.  
						
						... 
						
						
						
						For the awesome OAuth 2 support in #693 . 
						
					 
					
						2013-03-08 20:26:10 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4e80541824 
							
						 
					 
					
						
						
							
							Version 2.2.3  
						
						
						
					 
					
						2013-03-07 09:05:13 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							cdf7c778d8 
							
						 
					 
					
						
						
							
							Version 2.2.2  
						
						
						
					 
					
						2013-03-06 12:29:56 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							6135df56c6 
							
						 
					 
					
						
						
							
							Merge pull request  #703  from tomchristie/datetime-formats  
						
						... 
						
						
						
						Datetime formats 
						
					 
					
						2013-03-06 04:25:35 -08:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							1106596c80 
							
						 
					 
					
						
						
							
							Clean ups to datetime formatting  
						
						
						
					 
					
						2013-03-06 12:19:39 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							c20ebe95f6 
							
						 
					 
					
						
						
							
							Merge datetime formats  
						
						
						
					 
					
						2013-03-05 17:50:28 +00:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							17e0ff0fcd 
							
						 
					 
					
						
						
							
							Add @iekadou for  #700  support. thanks!  
						
						
						
					 
					
						2013-03-05 18:45:09 +01:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							7db2332c40 
							
						 
					 
					
						
						
							
							Update release docs  
						
						
						
					 
					
						2013-03-04 14:11:05 +01:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							4cdb6b2959 
							
						 
					 
					
						
						
							
							Fix authtoken migration  
						
						
						
					 
					
						2013-03-04 13:53:39 +01:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							a9d36d4726 
							
						 
					 
					
						
						
							
							Add docs update - part 1  
						
						
						
					 
					
						2013-03-01 16:50:18 +01:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							9157db5da0 
							
						 
					 
					
						
						
							
							Add better date / datetime validation (pull 2)  
						
						... 
						
						
						
						addition to #631  with update to master + timefield support 
						
					 
					
						2013-03-01 16:48:20 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							282af6057f 
							
						 
					 
					
						
						
							
							Release notes  
						
						
						
					 
					
						2013-02-28 18:02:10 +00:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							80b0234793 
							
						 
					 
					
						
						
							
							Add @waa for  #687  thanks!  
						
						
						
					 
					
						2013-02-26 14:50:10 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							8da83f0df9 
							
						 
					 
					
						
						
							
							Added @thedrow for cleanups in  #677 .  Thanks!  
						
						
						
					 
					
						2013-02-25 15:15:33 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							b4b9d3b513 
							
						 
					 
					
						
						
							
							Added @ryanrdetzel for docs  fix   #674 .  Thanks!  
						
						
						
					 
					
						2013-02-25 13:44:32 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f729506261 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-02-23 07:24:36 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d62e4a7aa5 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-02-22 23:00:07 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d44eb20942 
							
						 
					 
					
						
						
							
							Version 2.2.1  
						
						
						
					 
					
						2013-02-22 20:47:41 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							47a4f0863d 
							
						 
					 
					
						
						
							
							Update link to @paulmillr.  Refs  #668 .  
						
						
						
					 
					
						2013-02-20 09:18:54 +00:00 
						 
				 
			
				
					
						
							
							
								Paul Miller 
							
						 
					 
					
						
						
						
						
							
						
						
							fc5f982ccc 
							
						 
					 
					
						
						
							
							Don’t use my old nickname in credits.  
						
						
						
					 
					
						2013-02-20 11:12:54 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							50a9070e46 
							
						 
					 
					
						
						
							
							Added @pelme, for TimeField addition.  
						
						... 
						
						
						
						Refs #660 . 
						
					 
					
						2013-02-15 09:19:10 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d05b950945 
							
						 
					 
					
						
						
							
							Update release notes.  
						
						
						
					 
					
						2013-02-15 09:16:58 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e919cb1b57 
							
						 
					 
					
						
						
							
							Note python compatibility.  
						
						
						
					 
					
						2013-02-15 09:09:34 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							725741198b 
							
						 
					 
					
						
						
							
							Python 2.6.5+ required  
						
						
						
					 
					
						2013-02-15 09:05:55 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							de029561d0 
							
						 
					 
					
						
						
							
							Docs tweaks.  
						
						
						
					 
					
						2013-02-14 13:09:42 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							0d3e23f0d3 
							
						 
					 
					
						
						
							
							Update release notes.  
						
						
						
					 
					
						2013-02-14 13:02:38 +00:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							2eab7b9f59 
							
						 
					 
					
						
						
							
							thanks @floppya for docs fix  
						
						
						
					 
					
						2013-02-14 09:04:09 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							569dc67a12 
							
						 
					 
					
						
						
							
							Username tweak.  
						
						
						
					 
					
						2013-02-13 14:40:02 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							77db00f449 
							
						 
					 
					
						
						
							
							Tweak title  
						
						
						
					 
					
						2013-02-13 09:05:16 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							195adf6ed4 
							
						 
					 
					
						
						
							
							Update release notes.  
						
						
						
					 
					
						2013-02-12 23:17:19 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							3f529dc25d 
							
						 
					 
					
						
						
							
							Typo  
						
						
						
					 
					
						2013-02-12 22:06:20 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							891b197f0b 
							
						 
					 
					
						
						
							
							Drop issue management section  
						
						
						
					 
					
						2013-02-12 22:06:13 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a08fa7c71e 
							
						 
					 
					
						
						
							
							Add deprecation policy to release notes.  
						
						
						
					 
					
						2013-02-12 22:05:17 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							edaf031935 
							
						 
					 
					
						
						
							
							Notes on explicit hyperlink relations behavior  
						
						
						
					 
					
						2013-02-12 20:14:47 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							112753917d 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-02-12 12:14:29 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							36cdefbb4d 
							
						 
					 
					
						
						
							
							Notes on object-level permissions.  
						
						
						
					 
					
						2013-02-12 08:58:29 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							84a1896b7d 
							
						 
					 
					
						
						
							
							Change URL of 2.2 announcement  
						
						
						
					 
					
						2013-02-10 16:44:45 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							47d6640ea5 
							
						 
					 
					
						
						
							
							Remove email  
						
						
						
					 
					
						2013-02-07 21:07:33 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4dcc34ecae 
							
						 
					 
					
						
						
							
							More 2.2 release notes  
						
						
						
					 
					
						2013-02-07 13:16:17 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							670ac25b25 
							
						 
					 
					
						
						
							
							Allow serializers to handle dicts as well as objects.   Fixes   #447 .  
						
						
						
					 
					
						2013-02-07 12:57:40 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							c18fb0d695 
							
						 
					 
					
						
						
							
							Added a post_save hook.   Closes   #558 .  
						
						
						
					 
					
						2013-02-06 21:28:03 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							cc2ec2bbf0 
							
						 
					 
					
						
						
							
							Tweaks to release notes.  
						
						
						
					 
					
						2013-02-06 12:57:59 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							691a8f682d 
							
						 
					 
					
						
						
							
							Note on turning off implicit many behavior. Refs  #564 .  
						
						
						
					 
					
						2013-02-06 12:48:08 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4788c87b76 
							
						 
					 
					
						
						
							
							Fix mismatch between template blocks and docs.  
						
						... 
						
						
						
						Fixes  #639 . 
					
						2013-02-06 12:35:05 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							bdc97c5611 
							
						 
					 
					
						
						
							
							2.2 Release notes (wip)  
						
						
						
					 
					
						2013-02-06 08:52:21 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							b9f1fbb5d2 
							
						 
					 
					
						
						
							
							Added @xordoquy for the incredible py3k work!  
						
						... 
						
						
						
						Commiter number 100! 
						
					 
					
						2013-02-01 15:10:52 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							8021bb5d50 
							
						 
					 
					
						
						
							
							Added @fernandogrd for bugfix  #632 .  Thanks!  
						
						
						
					 
					
						2013-01-30 12:43:52 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ce914b03ed 
							
						 
					 
					
						
						
							
							Updated release notes.  
						
						
						
					 
					
						2013-01-30 12:42:51 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							5f065153c3 
							
						 
					 
					
						
						
							
							Added @z4r. Thanks!  
						
						... 
						
						
						
						For ensuring `django-jsonfield` compatibility, via #629 . 
						
					 
					
						2013-01-29 09:10:37 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							54096a19fc 
							
						 
					 
					
						
						
							
							Added @swistakm, for docs  fix   #625 . Thanks!  
						
						
						
					 
					
						2013-01-28 21:08:53 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							141814585c 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-01-28 12:58:22 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							94c4a54bf8 
							
						 
					 
					
						
						
							
							Update release notes.  
						
						
						
					 
					
						2013-01-28 12:23:25 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							2f14d79f4a 
							
						 
					 
					
						
						
							
							Added @wronglink, for docs fixes in  #592 .  Thanks!  
						
						
						
					 
					
						2013-01-28 12:18:00 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							3bcd38b7d0 
							
						 
					 
					
						
						
							
							Notes on upgrading and versioning.   Fixes   #620 .  
						
						
						
					 
					
						2013-01-28 09:10:23 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							896477f650 
							
						 
					 
					
						
						
							
							Added @mktums for docs fix in  #621 .  Thanks!  
						
						
						
					 
					
						2013-01-28 07:54:03 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ccb4ef0811 
							
						 
					 
					
						
						
							
							Typo  
						
						
						
					 
					
						2013-01-27 19:34:16 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d4f38dece4 
							
						 
					 
					
						
						
							
							Fix link to django docs.  
						
						
						
					 
					
						2013-01-27 17:32:54 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a7479e02fa 
							
						 
					 
					
						
						
							
							AJAX, CSRF & CORS documentation  
						
						
						
					 
					
						2013-01-27 17:23:56 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a75db4cfb8 
							
						 
					 
					
						
						
							
							Version 2.1.17  
						
						
						
					 
					
						2013-01-26 20:59:15 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							fa349f4b55 
							
						 
					 
					
						
						
							
							Added @guglielmo, for the tutorial fix in  #614 .  Thanks!  
						
						
						
					 
					
						2013-01-26 20:13:49 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4a4fe60e33 
							
						 
					 
					
						
						
							
							Merge pull request  #603  from minddust/validation_error  
						
						... 
						
						
						
						Add failed testcase for fieldvalidation + fix 
						
					 
					
						2013-01-23 01:21:26 -08:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							30046cae8c 
							
						 
					 
					
						
						
							
							Add validate_<fieldname> bugfix to release notes  
						
						
						
					 
					
						2013-01-23 07:55:00 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							cf52c0e044 
							
						 
					 
					
						
						
							
							Update release notes.  
						
						
						
					 
					
						2013-01-22 17:42:06 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e29ba356f0 
							
						 
					 
					
						
						
							
							Added @kevinastone, for work on extra test cases in  #602 .  Thanks!  
						
						
						
					 
					
						2013-01-21 17:53:27 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							42fcc3599c 
							
						 
					 
					
						
						
							
							Added @brutasse for docs  fix   #600 . Thanks!  
						
						
						
					 
					
						2013-01-20 15:50:16 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							199fa766ff 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-01-19 17:00:20 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4b61ead53f 
							
						 
					 
					
						
						
							
							Added @nemesisdesign, for documentation on Apache mod_wsgi setup. Thanks!  
						
						... 
						
						
						
						Refs #588 . 
						
					 
					
						2013-01-18 22:30:03 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							0672401781 
							
						 
					 
					
						
						
							
							Update release notes.  
						
						
						
					 
					
						2013-01-18 22:00:59 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							0f0a07b732 
							
						 
					 
					
						
						
							
							Note changes to Decimal rendering to json behavior.  Fixes   #582 .  
						
						
						
					 
					
						2013-01-16 14:41:57 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							fecfe57aef 
							
						 
					 
					
						
						
							
							Updated release notes.  
						
						
						
					 
					
						2013-01-16 14:36:37 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							0756ca1f42 
							
						 
					 
					
						
						
							
							Added @steve-gregory for nullable slug relation tests.  
						
						... 
						
						
						
						See: #585  
						
					 
					
						2013-01-16 14:35:30 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e1076cfb49 
							
						 
					 
					
						
						
							
							Added @radiosilence, for the timedelta encoding support. Thanks!  
						
						... 
						
						
						
						See: #584  
						
					 
					
						2013-01-15 13:31:05 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							b4c43d5fe4 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-01-15 13:29:21 +00:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							e32aaa29b8 
							
						 
					 
					
						
						
							
							Add @shezi thanks!  
						
						
						
					 
					
						2013-01-15 14:00:32 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							191135d7b0 
							
						 
					 
					
						
						
							
							Version 2.1.16  
						
						
						
					 
					
						2013-01-14 09:20:44 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							25a463be73 
							
						 
					 
					
						
						
							
							Update release notes.  
						
						
						
					 
					
						2013-01-12 10:07:11 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							c09a579851 
							
						 
					 
					
						
						
							
							Added @wackerbarth.  Thanks!  
						
						
						
					 
					
						2013-01-11 08:57:06 +00:00 
						 
				 
			
				
					
						
							
							
								Mark Aaron Shirley 
							
						 
					 
					
						
						
						
						
							
						
						
							b298bf53f3 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-01-08 08:35:41 -08:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							de00d3720e 
							
						 
					 
					
						
						
							
							Added @mjtamlyn.  Thanks!  
						
						
						
					 
					
						2013-01-07 17:36:31 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							152e6d5c0a 
							
						 
					 
					
						
						
							
							Added @michaelmior. Thanks!  
						
						
						
					 
					
						2013-01-07 08:57:43 +00:00 
						 
				 
			
				
					
						
							
							
								Yuri Prezument 
							
						 
					 
					
						
						
						
						
							
						
						
							12bb25b372 
							
						 
					 
					
						
						
							
							Added @juanriaza. Thanks  
						
						
						
					 
					
						2013-01-05 18:02:26 +02:00 
						 
				 
			
				
					
						
							
							
								Yuri Prezument 
							
						 
					 
					
						
						
						
						
							
						
						
							d7f3c86ad1 
							
						 
					 
					
						
						
							
							Updated release notes  
						
						
						
					 
					
						2013-01-05 18:01:57 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							26f9acb45a 
							
						 
					 
					
						
						
							
							Validation errors instead of exceptions when serializers receive incorrect types.   Fixes   #402 .  
						
						
						
					 
					
						2013-01-04 14:11:05 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							eb14278a3b 
							
						 
					 
					
						
						
							
							Add proper validation for updating relational fields with incorrect types.   Fixes   #446 .  
						
						
						
					 
					
						2013-01-04 13:50:40 +00:00 
						 
				 
			
				
					
						
							
							
								Mark Shirley 
							
						 
					 
					
						
						
						
						
							
						
						
							466d4584ae 
							
						 
					 
					
						
						
							
							Remove duplicate release notes line  
						
						
						
					 
					
						2013-01-03 23:18:58 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ad671022e1 
							
						 
					 
					
						
						
							
							Version 2.1.15  
						
						
						
					 
					
						2013-01-03 22:14:11 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4223786ddc 
							
						 
					 
					
						
						
							
							Tweak release notes.  
						
						
						
					 
					
						2013-01-03 22:11:50 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a122856d46 
							
						 
					 
					
						
						
							
							Tweak behavior of hyperlinked fields with an explicit format suffix.  
						
						
						
					 
					
						2013-01-03 21:50:28 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							bfea7f64ee 
							
						 
					 
					
						
						
							
							Tweak behavior of hyperlinked fields that include an explicit format suffix.  
						
						
						
					 
					
						2013-01-03 21:49:29 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							92ae08207a 
							
						 
					 
					
						
						
							
							Drop unused private save_m2m flag  
						
						
						
					 
					
						2013-01-03 21:49:01 +00:00 
						 
				 
			
				
					
						
							
							
								Yuri Prezument 
							
						 
					 
					
						
						
						
						
							
						
						
							097f4c6962 
							
						 
					 
					
						
						
							
							Updated release-notes  
						
						
						
					 
					
						2013-01-03 09:40:49 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							161432d78c 
							
						 
					 
					
						
						
							
							Added @ahankinson, for PATCH support. Thanks!  
						
						
						
					 
					
						2013-01-02 13:49:43 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ef73160599 
							
						 
					 
					
						
						
							
							Added RetrieveUpdateAPIView  
						
						
						
					 
					
						2013-01-02 13:46:19 +00:00 
						 
				 
			
				
					
						
							
							
								Mark Aaron Shirley 
							
						 
					 
					
						
						
						
						
							
						
						
							f62acf025e 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2013-01-01 18:06:22 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							eff833b39d 
							
						 
					 
					
						
						
							
							Version 2.1.14  
						
						
						
					 
					
						2012-12-31 08:53:49 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							af5c3c3bf4 
							
						 
					 
					
						
						
							
							Added @sebastibe. Thanks!  
						
						
						
					 
					
						2012-12-30 07:51:07 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							275fcde5e6 
							
						 
					 
					
						
						
							
							Added @toranb - Thank you!  
						
						
						
					 
					
						2012-12-29 16:59:01 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							3c7a636199 
							
						 
					 
					
						
						
							
							Updated release notes  
						
						
						
					 
					
						2012-12-29 16:58:51 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							25398e8cf1 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2012-12-29 13:33:03 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							923f81d269 
							
						 
					 
					
						
						
							
							Nested serializers now support nullable relationships, plus test.   Fixes   #384  
						
						
						
					 
					
						2012-12-29 13:19:05 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							3e4242fc43 
							
						 
					 
					
						
						
							
							django.contrib.staticfiles no longer needs to be in INSTALLED_APPS  
						
						
						
					 
					
						2012-12-28 12:33:24 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4b32cda5a8 
							
						 
					 
					
						
						
							
							Update release notes and documentation for 2.2.0  
						
						
						
					 
					
						2012-12-27 17:53:07 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							9cc56a97b5 
							
						 
					 
					
						
						
							
							Added @akinfold for staticfiles changes.  
						
						
						
					 
					
						2012-12-27 17:35:21 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ed09d26fb8 
							
						 
					 
					
						
						
							
							Update docs/topics/release-notes.md  
						
						
						
					 
					
						2012-12-23 18:50:17 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							79aea2f0d0 
							
						 
					 
					
						
						
							
							Version 2.1.12  
						
						
						
					 
					
						2012-12-21 09:18:35 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							fb4bbf7d98 
							
						 
					 
					
						
						
							
							Added @treyhunner.  Thank you!  
						
						
						
					 
					
						2012-12-21 09:17:33 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							c097bcef58 
							
						 
					 
					
						
						
							
							Update release notes.  
						
						
						
					 
					
						2012-12-19 22:42:11 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							566b9ff27b 
							
						 
					 
					
						
						
							
							Added @joual - Thanks!  
						
						
						
					 
					
						2012-12-19 22:41:00 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							c29b08ad43 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2012-12-19 22:06:38 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							24581faceb 
							
						 
					 
					
						
						
							
							Update release notes.  
						
						
						
					 
					
						2012-12-18 18:23:28 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							9680b42b50 
							
						 
					 
					
						
						
							
							Version 2.1.11  
						
						
						
					 
					
						2012-12-17 22:01:17 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							0418cebc58 
							
						 
					 
					
						
						
							
							Update contact details  
						
						
						
					 
					
						2012-12-17 22:00:25 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							70714c2346 
							
						 
					 
					
						
						
							
							Version 2.1.10  
						
						
						
					 
					
						2012-12-17 09:08:28 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							35f72cecb1 
							
						 
					 
					
						
						
							
							Fix model validation exclusions.   Fixes   #500 .   Fixes   #506 .  
						
						
						
					 
					
						2012-12-15 20:40:41 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							1d24d1fc59 
							
						 
					 
					
						
						
							
							Added @sunscrapers.  Thanks!  
						
						
						
					 
					
						2012-12-14 20:14:42 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e9eb47207a 
							
						 
					 
					
						
						
							
							Update release notes.  
						
						
						
					 
					
						2012-12-14 20:08:53 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							6f8b432677 
							
						 
					 
					
						
						
							
							Added @pilt.  Thanks!  
						
						
						
					 
					
						2012-12-14 20:08:43 +00:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							e198a2b376 
							
						 
					 
					
						
						
							
							added RetrieveUpdateAPIView  
						
						
						
					 
					
						2012-12-13 16:57:17 +01:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							628e3bf001 
							
						 
					 
					
						
						
							
							Added @cmurtaugh. Thanks!  
						
						
						
					 
					
						2012-12-12 08:59:19 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							0824761f47 
							
						 
					 
					
						
						
							
							Version 2.1.9  
						
						
						
					 
					
						2012-12-11 21:07:48 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							17b77fc446 
							
						 
					 
					
						
						
							
							Added @gkrappel.  Thank you!  
						
						
						
					 
					
						2012-12-11 21:07:11 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							80adaecc43 
							
						 
					 
					
						
						
							
							Added @annacoder.  Thanks!  
						
						
						
					 
					
						2012-12-11 09:04:47 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ff01ae3571 
							
						 
					 
					
						
						
							
							Version 2.1.8  
						
						
						
					 
					
						2012-12-08 13:01:03 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							c1be29418b 
							
						 
					 
					
						
						
							
							Add link to json+hal hypermedia format.  
						
						
						
					 
					
						2012-12-07 23:58:20 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							b170973993 
							
						 
					 
					
						
						
							
							Version 2.1.7  
						
						
						
					 
					
						2012-12-07 22:36:30 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							21f7dcf7c6 
							
						 
					 
					
						
						
							
							Added release notes  
						
						
						
					 
					
						2012-12-07 22:25:28 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a463ddbb37 
							
						 
					 
					
						
						
							
							Merge pull request  #470  from  minddust/fix-#469  
						
						... 
						
						
						
						fixed  #469  - RegexField <--> BrowsableAPI Bug 
					
						2012-12-06 14:58:18 -08:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							26cfa02326 
							
						 
					 
					
						
						
							
							Added @roberts81.  Thanks!  
						
						
						
					 
					
						2012-12-06 22:56:23 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							6a5f4f2a90 
							
						 
					 
					
						
						
							
							Added @justanotherbody.  Thanks!  
						
						
						
					 
					
						2012-12-06 22:38:20 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							2938bc13b1 
							
						 
					 
					
						
						
							
							Added @reinout for the copy fixes. Thanks!  
						
						
						
					 
					
						2012-12-06 16:30:22 -04:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							e044fa089b 
							
						 
					 
					
						
						
							
							fixed   #469  - RegexField <--> BrowsableAPI Bug  
						
						
						
					 
					
						2012-12-04 09:40:23 +01:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							3e3ede71d2 
							
						 
					 
					
						
						
							
							Added @mvdwaeter. Thanks!  
						
						
						
					 
					
						2012-12-03 12:47:12 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							45d28f49e0 
							
						 
					 
					
						
						
							
							Added @mhsparks. Thanks!  
						
						
						
					 
					
						2012-12-02 11:04:34 -04:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							8d485da483 
							
						 
					 
					
						
						
							
							Added @fabianbuechler. Thanks!  
						
						
						
					 
					
						2012-11-29 19:05:34 -04:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							11ef60b127 
							
						 
					 
					
						
						
							
							Added @yprez Thanks!  
						
						
						
					 
					
						2012-11-28 07:32:12 +01:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							24baf6425b 
							
						 
					 
					
						
						
							
							Added @oaubert Thanks!  
						
						
						
					 
					
						2012-11-27 18:33:56 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							fd89bca35f 
							
						 
					 
					
						
						
							
							Version 2.1.6.  AKA: I am a doofus.  
						
						
						
					 
					
						2012-11-23 13:21:18 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							95aa99d8df 
							
						 
					 
					
						
						
							
							Version 2.1.5  
						
						
						
					 
					
						2012-11-23 13:09:14 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ac84c2ed2e 
							
						 
					 
					
						
						
							
							Version 2.1.4  
						
						
						
					 
					
						2012-11-22 17:49:53 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							db3dc79288 
							
						 
					 
					
						
						
							
							Added @maspwr for the partial updates work.  Ta!  
						
						
						
					 
					
						2012-11-22 10:16:47 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4eaac26427 
							
						 
					 
					
						
						
							
							Added @dbachrach.  Thanks!  
						
						
						
					 
					
						2012-11-22 10:12:22 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							df545f7a25 
							
						 
					 
					
						
						
							
							Updated release notes.  
						
						
						
					 
					
						2012-11-22 10:08:14 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d031ccce6e 
							
						 
					 
					
						
						
							
							Updated release notes.  
						
						
						
					 
					
						2012-11-22 10:07:42 +00:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							6ba4df8a27 
							
						 
					 
					
						
						
							
							Merge remote-tracking branch 'upstream/master' into regex_field  
						
						... 
						
						
						
						Conflicts:
	docs/topics/release-notes.md 
						
					 
					
						2012-11-21 11:56:34 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							3268c67343 
							
						 
					 
					
						
						
							
							Update docs/topics/release-notes.md  
						
						
						
					 
					
						2012-11-20 23:33:56 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							3227a357ce 
							
						 
					 
					
						
						
							
							Added @irrelative for the mighty fine work.  
						
						
						
					 
					
						2012-11-20 23:19:11 +00:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							86484668f6 
							
						 
					 
					
						
						
							
							added RegexField  
						
						
						
					 
					
						2012-11-20 15:38:50 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							588e4dda6d 
							
						 
					 
					
						
						
							
							Added release notes  
						
						
						
					 
					
						2012-11-19 21:49:07 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							83f3770af1 
							
						 
					 
					
						
						
							
							Adding folks to the credits makes me happy.  Good work @jonlil!  
						
						
						
					 
					
						2012-11-19 21:47:34 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ce5b186ca8 
							
						 
					 
					
						
						
							
							Docs tweaks.  
						
						
						
					 
					
						2012-11-19 21:42:33 +00:00 
						 
				 
			
				
					
						
							
							
								Robert Romano 
							
						 
					 
					
						
						
						
						
							
						
						
							f5f1ac49ec 
							
						 
					 
					
						
						
							
							Update robromano fork with upstream master  
						
						... 
						
						
						
						Conflicts:
	docs/topics/credits.md
	docs/topics/release-notes.md 
						
					 
					
						2012-11-18 21:07:44 -08:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							346a79b170 
							
						 
					 
					
						
						
							
							Added @MechanisM - Thanks!  
						
						... 
						
						
						
						(That's a mighty kick ass Gravatar) 
						
					 
					
						2012-11-17 00:29:15 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							016ef5019f 
							
						 
					 
					
						
						
							
							Version 2.1.3  
						
						
						
					 
					
						2012-11-16 22:58:22 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							19b0516bfe 
							
						 
					 
					
						
						
							
							Getting 2.1.3 release notes ready  
						
						
						
					 
					
						2012-11-16 22:49:28 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							31f01bd631 
							
						 
					 
					
						
						
							
							Polishing to page size query parameters & more docs  
						
						
						
					 
					
						2012-11-16 22:45:57 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							9973cf329a 
							
						 
					 
					
						
						
							
							Merge pull request  #412  from minddust/custom_page_size_per_request  
						
						... 
						
						
						
						support for custom page size per request 
						
					 
					
						2012-11-16 13:45:27 -08:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							3ae203a018 
							
						 
					 
					
						
						
							
							updated script to just use page_size_kwarg  
						
						
						
					 
					
						2012-11-15 12:06:43 +01:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							b17a981800 
							
						 
					 
					
						
						
							
							updated release noted for page_size stuff  
						
						
						
					 
					
						2012-11-15 11:24:17 +01:00 
						 
				 
			
				
					
						
							
							
								Rob Romano 
							
						 
					 
					
						
						
						
						
							
						
						
							d541e0c423 
							
						 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/robromano/django-rest-framework  
						
						... 
						
						
						
						Conflicts:
	docs/api-guide/authentication.md
	docs/topics/credits.md 
						
					 
					
						2012-11-14 13:01:43 -08:00 
						 
				 
			
				
					
						
							
							
								Rob Romano 
							
						 
					 
					
						
						
						
						
							
						
						
							321ba156ca 
							
						 
					 
					
						
						
							
							Renamed AuthTokenView to ObtainAuthToken, added obtain_auth_token var, updated tests & docs. Left authtoken.urls in place as example.  
						
						
						
					 
					
						2012-11-14 12:51:00 -08:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							33fe0d2bea 
							
						 
					 
					
						
						
							
							added release note  
						
						
						
					 
					
						2012-11-14 16:08:14 +01:00 
						 
				 
			
				
					
						
							
							
								Ludwig Kraatz 
							
						 
					 
					
						
						
						
						
							
						
						
							8b999c6bb5 
							
						 
					 
					
						
						
							
							polishing code  
						
						... 
						
						
						
						and adding myself to auhtors file 
						
					 
					
						2012-11-14 11:46:16 +01:00 
						 
				 
			
				
					
						
							
							
								Rob Romano 
							
						 
					 
					
						
						
						
						
							
						
						
							4fd590f96f 
							
						 
					 
					
						
						
							
							Renamed AuthTokenView to ObtainAuthToken, added obtain_auth_token var, updated tests & docs. Left authtoken.urls in place as example.  
						
						
						
					 
					
						2012-11-13 16:49:13 -08:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f9a9ff1db0 
							
						 
					 
					
						
						
							
							Newline  
						
						
						
					 
					
						2012-11-10 17:04:31 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ffb4fe66ce 
							
						 
					 
					
						
						
							
							Added @glic3rinu. Thanks!  
						
						
						
					 
					
						2012-11-10 17:03:08 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e224061189 
							
						 
					 
					
						
						
							
							Support for read_only_fields on ModelSerializer classes  
						
						
						
					 
					
						2012-11-09 17:01:20 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							3ac26af7ca 
							
						 
					 
					
						
						
							
							Version 2.1.2 (Adds filtering support)  
						
						
						
					 
					
						2012-11-09 13:13:41 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							c7df9694b5 
							
						 
					 
					
						
						
							
							Merge pull request  #383  from tomchristie/filtering  
						
						... 
						
						
						
						Support for filtering backends 
						
					 
					
						2012-11-09 05:07:34 -08:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ad9c5d2ffa 
							
						 
					 
					
						
						
							
							Added @benkonrath, for his excellent work on filtering support.  Thank you!  
						
						
						
					 
					
						2012-11-08 21:49:38 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f5ce7152ec 
							
						 
					 
					
						
						
							
							Tweak note style  
						
						
						
					 
					
						2012-11-08 15:59:22 +00:00 
						 
				 
			
				
					
						
							
							
								Tomi Pajunen 
							
						 
					 
					
						
						
						
						
							
						
						
							40c6fe7119 
							
						 
					 
					
						
						
							
							Comments updated  
						
						
						
					 
					
						2012-11-08 17:04:29 +02:00 
						 
				 
			
				
					
						
							
							
								Tomi Pajunen 
							
						 
					 
					
						
						
						
						
							
						
						
							b607eefc7c 
							
						 
					 
					
						
						
							
							Release notes updated  
						
						
						
					 
					
						2012-11-08 16:48:16 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							0356c5dca4 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2012-11-07 11:34:31 +00:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							62fc5b80ef 
							
						 
					 
					
						
						
							
							fixed field name  
						
						
						
					 
					
						2012-11-06 20:54:48 +01:00 
						 
				 
			
				
					
						
							
							
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							1f67b9ba9c 
							
						 
					 
					
						
						
							
							added changelog entry and fixed old one  
						
						
						
					 
					
						2012-11-06 20:53:09 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							12b86cb5e3 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2012-11-06 17:05:15 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4f5a6fca64 
							
						 
					 
					
						
						
							
							Added @tonimichel.  Thanks!  
						
						
						
					 
					
						2012-11-06 11:04:27 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							9746abdf72 
							
						 
					 
					
						
						
							
							Version 2.1.0.  Adding release notes.  
						
						
						
					 
					
						2012-11-05 16:46:33 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							b87f01aa54 
							
						 
					 
					
						
						
							
							Merge pull request  #371  from tomchristie/serializer-fixes  
						
						... 
						
						
						
						Serializer fixes 
						
					 
					
						2012-11-05 08:35:54 -08:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							33217db33e 
							
						 
					 
					
						
						
							
							Fix broken link  
						
						
						
					 
					
						2012-11-05 15:39:03 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							558b29e5ff 
							
						 
					 
					
						
						
							
							Added @mjs7231 - Thanks!  
						
						
						
					 
					
						2012-11-05 15:38:22 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							33be4b43b9 
							
						 
					 
					
						
						
							
							queryset argument is now optional on writable model fields. 
						
						
						
					 
					
						2012-11-05 12:51:04 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							b7b942c599 
							
						 
					 
					
						
						
							
							Swap position of instance and data keyword arguments.  
						
						
						
					 
					
						2012-11-05 10:53:20 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							362c413f08 
							
						 
					 
					
						
						
							
							Update release notes.  
						
						
						
					 
					
						2012-11-05 09:59:35 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a4ab4355a6 
							
						 
					 
					
						
						
							
							Added @osiloke.  Thanks!  
						
						
						
					 
					
						2012-11-05 09:59:35 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							3e0319389a 
							
						 
					 
					
						
						
							
							Added @jmagnusson.  Thanks!  
						
						
						
					 
					
						2012-11-04 09:45:30 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							59c1e0933f 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2012-11-02 21:13:29 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							b9bff2a984 
							
						 
					 
					
						
						
							
							Fix issues with pk related fields in the browsable API.  
						
						
						
					 
					
						2012-11-02 14:05:14 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							062f5caef3 
							
						 
					 
					
						
						
							
							Tweaks fields docs, and fix 2.0.1 version.  
						
						
						
					 
					
						2012-11-01 23:40:34 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							09d70958bd 
							
						 
					 
					
						
						
							
							Update release notes  
						
						
						
					 
					
						2012-11-01 23:15:42 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							600289a815 
							
						 
					 
					
						
						
							
							Added @ottoyiu.  Thanks!  
						
						
						
					 
					
						2012-11-01 13:31:22 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							027c9079f6 
							
						 
					 
					
						
						
							
							PUT as create should return 201.   Fixes   #340 .  
						
						
						
					 
					
						2012-10-31 20:11:38 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ecc55ca8f4 
							
						 
					 
					
						
						
							
							Added @asfaltboy.  Thanks!  
						
						
						
					 
					
						2012-10-31 09:39:32 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4cdd0b845e 
							
						 
					 
					
						
						
							
							Final docs tweaks for 2.0  
						
						
						
					 
					
						2012-10-30 13:59:31 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							41ab18b13e 
							
						 
					 
					
						
						
							
							Docs update  
						
						
						
					 
					
						2012-10-30 12:23:17 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							5f0d4ef2fc 
							
						 
					 
					
						
						
							
							Update browser enhancments docs.  Fixes   #339 .  
						
						
						
					 
					
						2012-10-30 10:30:51 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							cf77fd6964 
							
						 
					 
					
						
						
							
							Tweak  
						
						
						
					 
					
						2012-10-29 09:10:14 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							076ca51d6f 
							
						 
					 
					
						
						
							
							Added @minddust.  Thanks!  
						
						
						
					 
					
						2012-10-29 08:53:12 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							0c71b4c100 
							
						 
					 
					
						
						
							
							Tweaks  
						
						
						
					 
					
						2012-10-28 21:16:04 +00:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							51a6401926 
							
						 
					 
					
						
						
							
							Added @madisvain.  Thanks!  
						
						
						
					 
					
						2012-10-27 18:47:17 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							cef379db06 
							
						 
					 
					
						
						
							
							2.0 Announcement  
						
						
						
					 
					
						2012-10-27 18:39:17 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							0aed70dc8b 
							
						 
					 
					
						
						
							
							Added @diviei - Thanks!  
						
						
						
					 
					
						2012-10-24 20:50:45 +02:00 
						 
				 
			
				
					
						
							
							
								Marko Tibold 
							
						 
					 
					
						
						
						
						
							
						
						
							71a93930fd 
							
						 
					 
					
						
						
							
							Fixing spelling errors.  
						
						
						
					 
					
						2012-10-21 16:34:07 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							6717d654d0 
							
						 
					 
					
						
						
							
							Added @rdobson.  Thanks!  
						
						
						
					 
					
						2012-10-17 21:57:34 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							b5daa40852 
							
						 
					 
					
						
						
							
							Docs tweaks  
						
						
						
					 
					
						2012-10-17 13:51:22 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							75ebf895ac 
							
						 
					 
					
						
						
							
							Added @eofs.  Thanks!  
						
						
						
					 
					
						2012-10-17 13:51:22 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							9c1fba3483 
							
						 
					 
					
						
						
							
							Tweak parsers to take parser_context  
						
						
						
					 
					
						2012-10-15 13:27:50 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							7a89d7a770 
							
						 
					 
					
						
						
							
							Work on docs  
						
						
						
					 
					
						2012-10-14 20:46:38 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							b3477b3b6c 
							
						 
					 
					
						
						
							
							Docs tweaks  
						
						
						
					 
					
						2012-10-13 15:34:38 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							7608cf1193 
							
						 
					 
					
						
						
							
							Improve documentation for Requests  
						
						
						
					 
					
						2012-10-13 15:07:43 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							52a2ff8f77 
							
						 
					 
					
						
						
							
							Docs tweaks  
						
						
						
					 
					
						2012-10-09 16:44:49 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							65f592866c 
							
						 
					 
					
						
						
							
							Fix issue where required fields were not being properly validated.  Also make model fields with a default value be not required  
						
						
						
					 
					
						2012-10-08 17:53:18 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4fd8ab17a3 
							
						 
					 
					
						
						
							
							Merge branch 'restframework2' of  https://github.com/tomchristie/django-rest-framework  into restframework2  
						
						
						
					 
					
						2012-10-08 12:18:43 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f4d4d54e03 
							
						 
					 
					
						
						
							
							Adding migration and changelog docs  
						
						
						
					 
					
						2012-10-08 12:17:43 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							321d4d030a 
							
						 
					 
					
						
						
							
							Added @mattbo, @maximilianhurl.  Thanks!  
						
						
						
					 
					
						2012-10-07 21:30:06 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e7685f3eb5 
							
						 
					 
					
						
						
							
							URL overrides in settings fixed up slightly  
						
						
						
					 
					
						2012-10-02 15:24:42 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							aeeb68f68a 
							
						 
					 
					
						
						
							
							Added @j4mie, and added projects to 'additional thanks' as appropriate.  
						
						
						
					 
					
						2012-09-28 10:42:14 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							8582b18ac4 
							
						 
					 
					
						
						
							
							Added @cyberj.  Thanks!  
						
						
						
					 
					
						2012-09-27 14:29:14 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							89a0b22306 
							
						 
					 
					
						
						
							
							Merge branch 'restframework2' of  https://github.com/tomchristie/django-rest-framework  into restframework2  
						
						
						
					 
					
						2012-09-27 13:06:34 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							061cffb67b 
							
						 
					 
					
						
						
							
							Added citation to contributing docs  
						
						
						
					 
					
						2012-09-27 12:49:08 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							da1f6df4fa 
							
						 
					 
					
						
						
							
							Added @LaundroMat.  Thanks!  
						
						
						
					 
					
						2012-09-26 23:07:59 +02:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							4b691c4027 
							
						 
					 
					
						
						
							
							Change package name: djangorestframework -> rest_framework  
						
						
						
					 
					
						2012-09-20 13:06:27 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							db13401af0 
							
						 
					 
					
						
						
							
							Added @phobologic.  Thanks\!  
						
						
						
					 
					
						2012-09-19 17:06:43 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							308677037f 
							
						 
					 
					
						
						
							
							Tweak docs, fix .error_data -> .errors  
						
						
						
					 
					
						2012-09-17 20:19:45 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a96211d3d1 
							
						 
					 
					
						
						
							
							Simplify negotiation.  Drop MSIE hacks.  Etc.  
						
						
						
					 
					
						2012-09-16 21:48:55 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							f204439fa8 
							
						 
					 
					
						
						
							
							Merge branch 'browsable-bootstrap' of  https://github.com/droptype/django-rest-framework  into droptype-browsable-bootstrap  
						
						
						
					 
					
						2012-09-14 12:52:12 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							eb761be9d0 
							
						 
					 
					
						
						
							
							Flesh out resources/routers part of tutorial  
						
						
						
					 
					
						2012-09-14 12:43:14 +01:00 
						 
				 
			
				
					
						
							
							
								Alec Perkins 
							
						 
					 
					
						
						
						
						
							
						
						
							4cbc53a75d 
							
						 
					 
					
						
						
							
							Whoops, forgot to explain these.  
						
						
						
					 
					
						2012-09-09 17:27:24 -04:00 
						 
				 
			
				
					
						
							
							
								Alec Perkins 
							
						 
					 
					
						
						
						
						
							
						
						
							9684b3fe22 
							
						 
					 
					
						
						
							
							Reference-style links. Much cleaner.  
						
						
						
					 
					
						2012-09-09 17:07:54 -04:00 
						 
				 
			
				
					
						
							
							
								Alec Perkins 
							
						 
					 
					
						
						
						
						
							
						
						
							60e6bba12b 
							
						 
					 
					
						
						
							
							Browsable API doc topic  
						
						
						
					 
					
						2012-09-09 17:02:19 -04:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							382b277dfc 
							
						 
					 
					
						
						
							
							Link to github accounts in credits  
						
						
						
					 
					
						2012-09-08 08:41:31 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							79144919f6 
							
						 
					 
					
						
						
							
							Added @alecperkins.  
						
						
						
					 
					
						2012-09-08 08:38:14 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							215de9af81 
							
						 
					 
					
						
						
							
							Tidy up  
						
						
						
					 
					
						2012-09-07 10:17:47 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							ef5279e97c 
							
						 
					 
					
						
						
							
							Improve docs  
						
						
						
					 
					
						2012-09-05 13:03:55 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							c191a46ef0 
							
						 
					 
					
						
						
							
							Update credits  
						
						
						
					 
					
						2012-09-03 12:19:16 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							73d337ea5d 
							
						 
					 
					
						
						
							
							Fix credits doc  
						
						
						
					 
					
						2012-09-01 23:14:48 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							9941556474 
							
						 
					 
					
						
						
							
							Get docs ready to deploy  
						
						
						
					 
					
						2012-09-01 21:23:50 +01:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							deedf6957d 
							
						 
					 
					
						
						
							
							REST framework 2 docs  
						
						
						
					 
					
						2012-09-01 20:26:27 +01:00