Michael Manfre 
							
						 
					 
					
						
						
							
						
						bf757a2f4d 
					 
					
						
						
							
							Fixed   #21147  -- Avoided time.time precision issue with cache backends.  
						
						... 
						
						
						
						The precision of time.time() is OS specific and it is possible for the
resolution to be low enough to allow reading a cache key previously set
with a timeout of 0. 
						
						
					 
					
						2013-10-01 13:42:59 -04:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						9595183d03 
					 
					
						
						
							
							Fixed   #13724 : Corrected routing of write queries involving managers.  
						
						... 
						
						
						
						Previously, if a database request spanned a related object manager, the
first manager encountered would cause a request to the router, and this
would bind all subsequent queries to the same database returned by the
router. Unfortunately, the first router query would be performed using
a read request to the router, resulting in bad routing information being
used if the subsequent query was actually a write.
This change defers the call to the router until the final query is acutally
made.
It includes a small *BACKWARDS INCOMPATIBILITY* on an edge case - see the
release notes for details.
Thanks to Paul Collins (@paulcollinsiii) for the excellent debugging
work and patch. 
						
						
					 
					
						2013-09-30 13:05:43 +08:00 
						 
				 
			
				
					
						
							
							
								Erik Romijn 
							
						 
					 
					
						
						
							
						
						1a63092981 
					 
					
						
						
							
							Fixed   #20439  -- Started deprecation of IPAddressField  
						
						
						
						
					 
					
						2013-09-28 10:55:32 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Manfre 
							
						 
					 
					
						
						
							
						
						99c87f1410 
					 
					
						
						
							
							Fixed   #17671  - Cursors are now context managers.  
						
						
						
						
					 
					
						2013-09-25 21:47:26 +03:00 
						 
				 
			
				
					
						
							
							
								Loic Bistuer 
							
						 
					 
					
						
						
							
						
						04a2a6b0f9 
					 
					
						
						
							
							Fixed   #3871  -- Custom managers when traversing reverse relations.  
						
						
						
						
					 
					
						2013-09-25 21:15:59 +03:00 
						 
				 
			
				
					
						
							
							
								Ramiro Morales 
							
						 
					 
					
						
						
							
						
						bebb449ac3 
					 
					
						
						
							
							Added docs for changes in commit  dd3a883894.  
						
						... 
						
						
						
						Refs #20693 . 
						
						
					 
					
						2013-09-22 15:43:27 -03:00 
						 
				 
			
				
					
						
							
							
								tschilling 
							
						 
					 
					
						
						
							
						
						0d1ba84d13 
					 
					
						
						
							
							Fixed   #20702  -- Deprecated get_formsets in favor of get_formsets_with_inlines.  
						
						... 
						
						
						
						Thanks stanislas.guerra at gmail.com for the report. 
						
						
					 
					
						2013-09-20 07:47:24 -04:00 
						 
				 
			
				
					
						
							
							
								yokomizor 
							
						 
					 
					
						
						
							
						
						df27803a55 
					 
					
						
						
							
							Fixed   #9532  -- Added min_num and validate_min on formsets.  
						
						... 
						
						
						
						Thanks gsf for the suggestion. 
						
						
					 
					
						2013-09-19 13:11:49 -04:00 
						 
				 
			
				
					
						
							
							
								Curtis Maloney 
							
						 
					 
					
						
						
							
						
						4e9f800742 
					 
					
						
						
							
							Fixed   #21125  -- Removed support for cache URI syntax  
						
						
						
						
					 
					
						2013-09-19 10:01:39 -04:00 
						 
				 
			
				
					
						
							
							
								Brian Holdefehr 
							
						 
					 
					
						
						
							
						
						98514849dc 
					 
					
						
						
							
							Fixed   #19414  -- Added admin registration decorator  
						
						... 
						
						
						
						Thanks stavros for the suggestion. 
						
						
					 
					
						2013-09-18 11:44:10 -04:00 
						 
				 
			
				
					
						
							
							
								Berker Peksag 
							
						 
					 
					
						
						
							
						
						2f0566fa61 
					 
					
						
						
							
							Fixed   #4278  -- Added a dirs parameter to a few functions to override TEMPLATE_DIRS.  
						
						... 
						
						
						
						* django.template.loader.get_template()
* django.template.loader.select_template()
* django.shortcuts.render()
* django.shortcuts.render_to_response()
Thanks amcnabb for the suggestion. 
						
						
					 
					
						2013-09-18 07:37:08 -04:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						18ffdb1772 
					 
					
						
						
							
							Fixed   #17627  -- Renamed util.py files to utils.py  
						
						... 
						
						
						
						Thanks PaulM for the suggestion and Luke Granger-Brown and
Wiktor Kołodziej for the initial patch. 
						
						
					 
					
						2013-09-16 12:52:05 -04:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						8d29005524 
					 
					
						
						
							
							Cleaned up 1.5.4/1.4.8 release notes  
						
						
						
						
					 
					
						2013-09-15 14:14:26 -04:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						aae5a96d57 
					 
					
						
						
							
							Ensure that passwords are never long enough for a DoS.  
						
						... 
						
						
						
						* Limit the password length to 4096 bytes
  * Password hashers will raise a ValueError
  * django.contrib.auth forms will fail validation
* Document in release notes that this is a backwards incompatible change
Thanks to Josh Wright for the report, and Donald Stufft for the patch.
This is a security fix; disclosure to follow shortly. 
						
						
					 
					
						2013-09-15 13:42:23 +08:00 
						 
				 
			
				
					
						
							
							
								Juan Catalano 
							
						 
					 
					
						
						
							
						
						4840fd9cbc 
					 
					
						
						
							
							Fixed   #20919  -- Extended assertRedirects to be able to avoid fetching redirect's response.  
						
						... 
						
						
						
						Thanks mjtamlyn for the suggestion. 
						
						
					 
					
						2013-09-10 12:22:55 -04:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						4ba373840a 
					 
					
						
						
							
							Fixed   #16534  -- Improved ability to customize DiscoverRunner  
						
						... 
						
						
						
						Added DiscoverRunner.test_suite and .test_runner attributes.
Thanks tomchristie for the suggestion and jcd for the patch. 
						
						
					 
					
						2013-09-10 09:49:39 -04:00 
						 
				 
			
				
					
						
							
							
								Romain B. 
							
						 
					 
					
						
						
							
						
						522d3d6132 
					 
					
						
						
							
							Fixed a little mistake in Django 1.7 release notes  
						
						
						
						
					 
					
						2013-09-09 19:02:41 -04:00 
						 
				 
			
				
					
						
							
							
								Aymeric Augustin 
							
						 
					 
					
						
						
							
						
						ec2778b445 
					 
					
						
						
							
							Fixed   #17262  -- Refactored tzinfo implementations.  
						
						... 
						
						
						
						This commit deprecates django.utils.tzinfo in favor of the more recent
django.utils.timezone which was introduced when Django gained support
for time zones. 
						
						
					 
					
						2013-09-09 22:32:51 +02:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						910a5760f6 
					 
					
						
						
							
							Improved release notes for ticket  #10164  
						
						... 
						
						
						
						Thanks Aymeric for the suggestions.
refs #10164  
						
						
					 
					
						2013-09-09 14:22:29 -04:00 
						 
				 
			
				
					
						
							
							
								Baptiste Mispelon 
							
						 
					 
					
						
						
							
						
						28a571348b 
					 
					
						
						
							
							Fix   #20745 : Don't silence TypeError raised inside templates.  
						
						... 
						
						
						
						Thanks to robin for the report and claudep for the review. 
						
						
					 
					
						2013-09-08 22:05:35 +02:00 
						 
				 
			
				
					
						
							
							
								Aymeric Augustin 
							
						 
					 
					
						
						
							
						
						fa7bc24671 
					 
					
						
						
							
							Repositioned two paragraphs in the release notes.  
						
						
						
						
					 
					
						2013-09-08 11:23:37 +02:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						5ca290f5db 
					 
					
						
						
							
							Fixed some sphinx errors and added some links.  
						
						
						
						
					 
					
						2013-09-06 16:15:35 -04:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						c7c19ac408 
					 
					
						
						
							
							Added new AdminSite attributes to 1.7 release notes  
						
						
						
						
					 
					
						2013-09-06 14:27:40 -05:00 
						 
				 
			
				
					
						
							
							
								Chris Wilson 
							
						 
					 
					
						
						
							
						
						eade315da1 
					 
					
						
						
							
							Fixed   #10164  -- Made AutoField increase monotonically on SQLite  
						
						... 
						
						
						
						Thanks malte for the report. 
						
						
					 
					
						2013-09-06 12:31:17 -04:00 
						 
				 
			
				
					
						
							
							
								Preston Timmons 
							
						 
					 
					
						
						
							
						
						8625c7aab3 
					 
					
						
						
							
							Fixed   #16096  -- Added origin attribute to template instances.  
						
						... 
						
						
						
						Thanks jdunck for the suggestion. 
						
						
					 
					
						2013-09-06 09:14:52 -04:00 
						 
				 
			
				
					
						
							
							
								CHI Cheng 
							
						 
					 
					
						
						
							
						
						ed9cd4fd8b 
					 
					
						
						
							
							Fixed   #21000  -- Made cached_db session backend respect SESSION_CACHE_ALIAS  
						
						
						
						
					 
					
						2013-09-05 10:47:58 -04:00 
						 
				 
			
				
					
						
							
							
								Ramiro Morales 
							
						 
					 
					
						
						
							
						
						e909ceae9b 
					 
					
						
						
							
							Made django.test.testcases not depend on staticfiles contrib app.  
						
						... 
						
						
						
						Do this by introducing a django.contrib.staticfiles.testing.StaticLiveServerCase
unittest TestCase subclass.
Fixes  #20739 . 
						
						
					 
					
						2013-08-31 11:02:32 -03:00 
						 
				 
			
				
					
						
							
							
								Curtis Maloney 
							
						 
					 
					
						
						
							
						
						e2f06226ea 
					 
					
						
						
							
							Improved {% include %} implementation  
						
						... 
						
						
						
						Merged BaseIncludeNode, ConstantIncludeNode and Include node.
This avoids raising TemplateDoesNotExist at parsing time, allows recursion
when passing a literal template name, and should make TEMPLATE_DEBUG behavior
consistant.
Thanks loic84 for help with the tests.
Fixed  #3544 , fixed  #12064 , fixed  #16147  
						
						
					 
					
						2013-08-30 10:36:36 +03:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						cf8d6e9108 
					 
					
						
						
							
							Fixed   #20881  -- Removed contrib.auth.models.AbstractUser.get_absolute_url()  
						
						... 
						
						
						
						The definition is arbitrary and creates a broken "view on site"
link in the admin if a project doesn't define such a URL. 
						
						
					 
					
						2013-08-29 06:36:35 -04:00 
						 
				 
			
				
					
						
							
							
								Curtis Maloney 
							
						 
					 
					
						
						
							
						
						5cdacbda03 
					 
					
						
						
							
							Fixed   #17356  -- Allowed {% include %} to render compiled templates  
						
						... 
						
						
						
						Reviewed by Loic Bistuer and Tim Graham. 
						
						
					 
					
						2013-08-29 10:22:24 +03:00 
						 
				 
			
				
					
						
							
							
								Loic Bistuer 
							
						 
					 
					
						
						
							
						
						da800be6dd 
					 
					
						
						
							
							Fixed   #20986  -- Enabled SelectDateWidget to use custom months  
						
						... 
						
						
						
						Reviewed by Trac alias MarkusH. 
						
						
					 
					
						2013-08-28 16:39:26 +03:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						4f7ed3f2d1 
					 
					
						
						
							
							Organized 1.7 minor features into subsections.  
						
						
						
						
					 
					
						2013-08-27 09:39:56 -04:00 
						 
				 
			
				
					
						
							
							
								Erik Romijn 
							
						 
					 
					
						
						
							
						
						fa57266699 
					 
					
						
						
							
							Fixed   #20972  -- Make messages cookie follow session cookie secure/httponly  
						
						
						
						
					 
					
						2013-08-26 21:34:29 +02:00 
						 
				 
			
				
					
						
							
							
								Andrew Godwin 
							
						 
					 
					
						
						
							
						
						5569b0b92f 
					 
					
						
						
							
							Merge remote-tracking branch 'core/master' into schema-alteration  
						
						... 
						
						
						
						Conflicts:
	django/db/backends/oracle/base.py
	django/db/backends/postgresql_psycopg2/base.py
	django/db/models/signals.py
	tests/queries/tests.py 
						
						
					 
					
						2013-08-23 12:36:53 +01:00 
						 
				 
			
				
					
						
							
							
								Anssi Kääriäinen 
							
						 
					 
					
						
						
							
						
						6af05e7a0f 
					 
					
						
						
							
							Fixed model.__eq__ and __hash__ for no pk value cases  
						
						... 
						
						
						
						The __eq__ method now considers two instances without primary key value
equal only when they have same id(). The __hash__ method raises
TypeError for no primary key case.
Fixed  #18864 , fixed  #18250 
Thanks to Tim Graham for docs review. 
						
						
					 
					
						2013-08-22 17:24:07 +03:00 
						 
				 
			
				
					
						
							
							
								Andrew Godwin 
							
						 
					 
					
						
						
							
						
						b6a957f0ba 
					 
					
						
						
							
							Merge remote-tracking branch 'core/master' into schema-alteration  
						
						... 
						
						
						
						Conflicts:
	docs/ref/django-admin.txt 
						
						
					 
					
						2013-08-19 18:30:48 +01:00 
						 
				 
			
				
					
						
							
							
								Anssi Kääriäinen 
							
						 
					 
					
						
						
							
						
						4668c142dc 
					 
					
						
						
							
							Made Model.__eq__ consider proxy models equivalent  
						
						... 
						
						
						
						Fixed  #11892 , fixed  #16458 , fixed  #14492 . 
					
						2013-08-19 09:51:28 +03:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						29255fcb4f 
					 
					
						
						
							
							Fixed some ReST errors regarding backticks  
						
						
						
						
					 
					
						2013-08-15 07:14:10 -04:00 
						 
				 
			
				
					
						
							
							
								Jonathan Slenders 
							
						 
					 
					
						
						
							
						
						ff410565bf 
					 
					
						
						
							
							Fixed   #20709  -- Allowed {% widthratio %} to accept an "as" parameter.  
						
						... 
						
						
						
						Thanks clay.evil@ for the suggestion. 
						
						
					 
					
						2013-08-14 12:40:19 -04:00 
						 
				 
			
				
					
						
							
							
								SusanTan 
							
						 
					 
					
						
						
							
						
						71c491972e 
					 
					
						
						
							
							Fixed   #11400  -- Passed kwargs from AbstractUser.email_user() to send_mail()  
						
						... 
						
						
						
						Thanks Jug_ for suggestion, john_scott for the initial patch,
and Tim Graham for code review. 
						
						
					 
					
						2013-08-14 07:46:11 -04:00 
						 
				 
			
				
					
						
							
							
								Matt Johnson 
							
						 
					 
					
						
						
							
						
						907ef9d0d1 
					 
					
						
						
							
							Fixed   #20555  -- Make subwidget id attribute available  
						
						... 
						
						
						
						In `BoundField.__iter__`, the widget's id attribute is now passed to
each subwidget. A new id_for_label property was added to ChoiceInput. 
						
						
					 
					
						2013-08-13 13:23:05 -04:00 
						 
				 
			
				
					
						
							
							
								Loic Bistuer 
							
						 
					 
					
						
						
							
						
						163a34ce4b 
					 
					
						
						
							
							Fixed   #20883  -- Made model inheritance find parent links in abstract parents  
						
						
						
						
					 
					
						2013-08-13 15:14:11 +03:00 
						 
				 
			
				
					
						
							
							
								Mel Collins 
							
						 
					 
					
						
						
							
						
						6bdb3b1135 
					 
					
						
						
							
							Fixed   #13518  -- Added FILE_UPLOAD_DIRECTORY_PERMISSIONS setting  
						
						... 
						
						
						
						This setting does for new directories what FILE_UPLOAD_PERMISSIONS
does for new files.
Thanks jacob@ for the suggestion. 
						
						
					 
					
						2013-08-12 07:15:59 -04:00 
						 
				 
			
				
					
						
							
							
								Andrew Godwin 
							
						 
					 
					
						
						
							
						
						7970d97a70 
					 
					
						
						
							
							Docs tweaks (thanks timgraham)  
						
						
						
						
					 
					
						2013-08-10 20:00:12 +01:00 
						 
				 
			
				
					
						
							
							
								ersran9 
							
						 
					 
					
						
						
							
						
						00d23a13eb 
					 
					
						
						
							
							Fixed   #20828  -- Allowed @permission_required to take a list of permissions  
						
						... 
						
						
						
						Thanks Giggaflop for the suggestion. 
						
						
					 
					
						2013-08-10 10:10:18 -04:00 
						 
				 
			
				
					
						
							
							
								Andrew Godwin 
							
						 
					 
					
						
						
							
						
						588b523233 
					 
					
						
						
							
							Merge remote-tracking branch 'core/master' into schema-alteration  
						
						... 
						
						
						
						Conflicts:
	django/db/models/options.py 
						
						
					 
					
						2013-08-09 14:37:37 +01:00 
						 
				 
			
				
					
						
							
							
								Andrew Godwin 
							
						 
					 
					
						
						
							
						
						1d1cfd0bd8 
					 
					
						
						
							
							Document new field API in release notes  
						
						
						
						
					 
					
						2013-08-09 14:31:24 +01:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						ddae74b64c 
					 
					
						
						
							
							Fixed   #9057  -- Added default_permissions model meta option.  
						
						... 
						
						
						
						Thanks hvendelbo for the suggestion and koenb for the draft patch. 
						
						
					 
					
						2013-08-09 09:19:52 -04:00 
						 
				 
			
				
					
						
							
							
								Andrew Godwin 
							
						 
					 
					
						
						
							
						
						de64c4d6e9 
					 
					
						
						
							
							Merge remote-tracking branch 'core/master' into schema-alteration  
						
						... 
						
						
						
						Conflicts:
	django/core/management/commands/flush.py
	django/core/management/commands/syncdb.py
	django/db/models/loading.py
	docs/internals/deprecation.txt
	docs/ref/django-admin.txt
	docs/releases/1.7.txt 
						
						
					 
					
						2013-08-09 14:17:30 +01:00 
						 
				 
			
				
					
						
							
							
								Marc Tamlyn 
							
						 
					 
					
						
						
							
						
						1c4a9bd9ad 
					 
					
						
						
							
							Revert change to the default Form.clean()  
						
						... 
						
						
						
						This means it doesn't break for people who are doing
`cleaned_data = super(FooForm, self).clean()`. 
						
						
					 
					
						2013-08-08 14:27:48 +01:00