| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-10-02 | [1.8.x] Fixed #25481 -- Added field.help_text to "Looping over a form's ↵ | John Moses | |
| fields" docs. Backport of ac09d22f7913ff09f98001ff51b783932290e378 from master | |||
| 2015-10-02 | [1.8.x] Fixed link to the MySQL Connector/Python Django Backend documentation. | Nick Williams | |
| Backport of 3f342d74e9196da475dd312cf43eaffec13af964 from master | |||
| 2015-09-30 | [1.8.x] Fixed #24505 -- Fixed clash with hidden m2m fields. | Marco Fucci | |
| Added support for multiple m2m fields with the same 'to' model and with related_name set to '+'. Backport of 4ee08958f154594b538207a53c1d457687b3f7ae from master | |||
| 2015-09-30 | [1.8.x] Clarified that Model.delete() isn't called as a result of a ↵ | David Sanders | |
| cascading delete. Backport of 5c6316dc3467fd7b669bea9157f591ac5fd00ec4 from master | |||
| 2015-09-29 | [1.8.x] Fixed #25485 -- Improved deprecation docs for contenttypes ↵ | Tim Graham | |
| reorganization. | |||
| 2015-09-29 | [1.8.x] Improved "“standalone” Django usage" example. | David Sanders | |
| Backport of ae9f9dc37f39afeaa45c646cf6eef81beffcf021 from master | |||
| 2015-09-29 | [1.8.x] Fixed #25376 -- Required virtualenv in installation instructions. | Tim Graham | |
| Thanks Anjul Tyagi for some of the draft text. Backport of a523d94b4581ec41c86f5bbaaffdf5bb6b819c2e from master | |||
| 2015-09-28 | [1.8.x] Documented auth's login/logout function parameters. | Tim Graham | |
| Backport of c14b6b52ff131db263bf06a02f903a73390975da from master | |||
| 2015-09-28 | [1.8.x] Fixed #24323 -- Documented @admin.register can't be used with ↵ | Tim Graham | |
| super(XXXAdmin in __init__(). Backport of 4cd2bdae07ac5561fdae0eede58c68df4dfcc780 from master | |||
| 2015-09-26 | [1.8.x] Fixed #25421 -- Fixed test --keepdb option on Oracle. | Mariusz Felisiak | |
| Backport of a3a6def867c61d24dfded6cbfef7f820409dc739 from master | |||
| 2015-09-25 | [1.8.x] Corrected use of 'affect' vs 'effect' in docs. | Rob Hudson | |
| Backport of 021782d22b80ea57fdd5e040add58adeafaedc55 from master | |||
| 2015-09-25 | [1.8.x] Fixed #25451 -- Added advice about organizing tests. | Tim Graham | |
| Backport of 53e89ce2e71411ff9d1c3fd6f2b10d052a4aeace from master | |||
| 2015-09-24 | [1.8.x] Removed a prominent note about django.utils.unittest deprecation. | Tim Graham | |
| It doesn't seem this would be relevant to most readers. | |||
| 2015-09-24 | [1.8.x] Fixed #25455 -- Optimized dictfetchall() example. | Tim Graham | |
| Thanks aklim007 for the suggestion. Backport of 361f60479d1890e8144fc254d7389a67b35725e9 from master | |||
| 2015-09-24 | [1.8.x] Bumped latest Python 2.7 release in docs/ref/databases.txt. | Tim Graham | |
| Backport of ce531f7ad783facc5799cf43b59b5ce053aa5d9e from master | |||
| 2015-09-23 | [1.8.x] Fixed #25386 -- Warned about differences between Engine and ↵ | Tim Graham | |
| DjangoTemplates. Backport of 2634f606d55b63511ab1c50c4fad2d52fbda1b19 from master | |||
| 2015-09-23 | [1.8.x] Fixed #25453 -- Reworded makemigration's ask_not_null_alteration ↵ | Benjamin Wohlwend | |
| suggestion. Backport of de31423130912a012513aad93ec805f8e08a0d5e from master | |||
| 2015-09-23 | [1.8.x] Fixed typo in docs/topics/db/examples/one_to_one.txt | Don Kirkby | |
| Backport of dcd7358afd7985c3803cd8ef2a189ca39aaa9603 from master | |||
| 2015-09-23 | Refs #24361 -- Corrected documented level of the 'django' logger. | Tim Graham | |
| The logger doesn't define an explicit level, therefore it defaults to WARNING. | |||
| 2015-09-22 | [1.8.x] Fixed #25447 -- Emphasized the need to restart dev server when ↵ | Henry Jordan | |
| adding template tags. Backport of af95eee9fb70dae5b3b2ce8bc73c13fc1de239ff from master | |||
| 2015-09-22 | [1.8.x] Added link to Babel's message extracting functionality. | Rik | |
| Backport of 6e51d5d0e531c6aead9ebd638a63ffdc32245e5a from master | |||
| 2015-09-22 | [1.8.x] Recommended against default_app_config. | Aymeric Augustin | |
| Most likely this is a losing fight -- people seem to love this small convention -- but at least the reasons for avoiding it will be documented. Refs #25356. Backport of 94a36cf from master | |||
| 2015-09-21 | [1.8.x] Added "readded" to the docs wordlist. | Tim Graham | |
| Backport of 4b1416d372c3cf4146855ada9e6444cb6649648e from master | |||
| 2015-09-21 | [1.8.x] Fixed #24921 -- set_autocommit(False) + ORM queries. | Aymeric Augustin | |
| This commits lifts the restriction that the outermost atomic block must be declared with savepoint=False. This restriction was overly cautious. The logic that makes it safe not to create savepoints for inner blocks also applies to the outermost block when autocommit is disabled and a transaction is already active. This makes it possible to use the ORM after set_autocommit(False). Previously it didn't work because ORM write operations are protected with atomic(savepoint=False). Backport of 91e9f1c from master | |||
| 2015-09-21 | [1.8.x] Fixed #25431 -- Readded inline foreign keys to modelformset instances | Claude Paroz | |
| Too much field exclusions in form's construct_instance() in _post_clean() could lead to some unexpected missing ForeignKey values. Fixes a regression from 45e049937. Refs #13776. Backport of 65a1055a3 from master. | |||
| 2015-09-21 | [1.8.x] Corrected docstring in core.urlresolvers module. | Matt Deacalion Stevens | |
| The RegexURLResolver.resolve() method no longer returns a tuple. It has returned a ResolverMatch object since commit e0fb90b2. Backport of c07f9fef398a21a76d350e8b02b396b3e580b751 from master | |||
| 2015-09-19 | [1.8.x] Fixed #25430 -- Fixed incorrect RunSQL examples. | Flavio Curella | |
| Backport of 95edabb45e016ed269f96acc03d4a2bfcecd6b71 from master | |||
| 2015-09-19 | [1.8.x] Fixed #25160 (again) -- Moved data loss check on reverse relations. | Aymeric Augustin | |
| Moved data loss check when assigning to a reverse one-to-one relation on an unsaved instance to Model.save(). This is exactly the same change as e4b813c but for reverse relations. Backport of c3904de from master | |||
| 2015-09-18 | [1.8.x] Made assorted improvements to the Oracle documentation. | Mariusz Felisiak | |
| Backport of 6f1b09bb5c1bafe4633514cbff37f9a7ed7a63ae from master | |||
| 2015-09-18 | [1.8.x] Refs #17785 -- Made docstring for sqlite3's get_relations() ↵ | Hynek Cernoch | |
| consistent with other backends. Backport of 4b9d063da05faa112577a4e3cefd020850a25e9e from master | |||
| 2015-09-17 | [1.8.x] Refs #20625 -- Fixed custom queryset chaining with values() and ↵ | Aric Coady | |
| values_list(). | |||
| 2015-09-17 | [1.8.x] Added a version requirement to mysqlclient in test requirements. | Tim Graham | |
| Backport of fc8a6a9b002aef90ff68f3d95e560db1ea728c76 from master | |||
| 2015-09-17 | [1.8.x] Added a version requirement to python-memcached in test requirements. | Tim Graham | |
| Backport of 12a62e7e4b8e6d1136aa4457619449cbbcf9dd7c from master | |||
| 2015-09-16 | [1.8.x] Removed unnecessarily rude terminology. | Stephen Paulger | |
| Backport of 443dffbeb214da18a0a4204b5295c2b97df418ab from master | |||
| 2015-09-16 | [1.8.x] Fixed typo in django/core/cache/backends/base.py docstring. | Matthew Crowson | |
| Backport of 8615e415861ea93afb5a84365895bd7b9af7be6f from master | |||
| 2015-09-15 | [1.8.x] Added upgrade tip in BaseCommand.option_list deprecation comment. | Daniel Hahler | |
| Backport of d731cf5caf043189fda3708cc0dace5d8f94db6b from master | |||
| 2015-09-14 | [1.8.x] Fixed #25369 -- Corrected syndication's get_object() example. | Tim Graham | |
| Backport of 64d7a553e1be20174b0aa2882111049abf392d4f from master | |||
| 2015-09-14 | [1.8.x] Reverted "Fixed #25203 -- Documented how to pass Apache environment ↵ | Tim Graham | |
| variables to Django." As discussed on the ticket, this isn't a pattern we should recommend. This reverts commit c8773493b62083b9ca5476a6040737f5cca79944. | |||
| 2015-09-14 | [1.8.x] Fixed #25377 -- Changed Count queries to execute COUNT(*) instead of ↵ | Adam Chainz | |
| COUNT('*'). Backport of 3fe3887a2ed94f7b15be769f6d81571031ec5627 from master | |||
| 2015-09-14 | [1.8.x] Fixed #25393 -- Fixed MySQL crash when adding text/blob field with ↵ | Ville Skyttä | |
| unhashable default. Backport of 4d933ad4181a511f3ced98edba4e17aff054e0e2 from master | |||
| 2015-09-14 | [1.8.x] Fixed typo in django/forms/utils.py docstring. | Kholid Fuadi | |
| Backport of b8b776aabe9afcd771f5c49afd2b41b44cae65a4 from master | |||
| 2015-09-12 | [1.8.x] Refs #25386 -- Added links to the OPTIONS of the built-in template ↵ | Tim Graham | |
| backends. Backport of f3e5a746469401a16939de0fc17fed584ced2118 from master | |||
| 2015-09-12 | [1.8.x] Fixed #25384 -- Ordered imports in newly created migration files | Markus Holtermann | |
| 2015-09-11 | [1.8.x] Refs #25381 -- Clarified that AppConfig model methods search only ↵ | Tim Graham | |
| the current app. Backport of e7e8d30cae9457339eb49ae8584e82ff0a038e99 from master | |||
| 2015-09-11 | [1.8.x] Fixed #25203 -- Documented how to pass Apache environment variables ↵ | Paul Rentschler | |
| to Django. Backport of 47016d4322574860f90431e1c87d19f7a1f778c6 from master | |||
| 2015-09-11 | [1.8.x] Fixed #25382 -- Removed obsolete references to DateQuerySet. | Renato Oliveira | |
| Backport of e3720b990a33ae259da4b1f1f6069aa6bbc8c03d from master | |||
| 2015-09-11 | [1.8.x] Fixed #25351 -- Added example for database test settings to docs. | Jose Carlos Menezes | |
| Backport of cf99bae53af2ed8f73622bc8a8ed0331c272fda3 from master | |||
| 2015-09-11 | [1.8.x] Fixed #25380 -- Added Postgres.app to the PostGIS options on OS X. | Flavio Curella | |
| Backport of 0c7c18cc9e80101c882749c99437ad700fde0ca0 from master | |||
| 2015-09-09 | [1.8.x] Fixed #25372 -- Fixed autocompletion for options of non-argparse ↵ | Daniel Hahler | |
| commands. Backport of acb833081dd3abca3bc62753103690f23fb3f0ec from master | |||
| 2015-09-09 | [1.8.x] Fixed #25371 -- Added reverse_sql and reverse_code examples to docs. | Bibhas | |
| Backport of 4283a038431ef6428d086d4911179bd8eb8b2299 from master | |||
