| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-06 | Revert "Fixed #22183: Don't make a table for M2Ms with through=" | Andrew Godwin | |
| This reverts commit 1562b9896f8f614ef40fd032b1ec777280b377c1. | |||
| 2014-03-06 | Fixed #22183: Don't make a table for M2Ms with through= | Andrew Godwin | |
| 2014-03-05 | Fixed #22207 -- Added support for GenericRelation reverse lookups | Gabe Jackson | |
| GenericRelation now supports an optional related_query_name argument. Setting related_query_name adds a relation from the related object back to the content type for filtering, ordering and other query operations. Thanks to Loic Bistuer for spotting a couple of important issues in his review. | |||
| 2014-03-05 | Fixed #14549 - Removed restriction of single FKs on intermediary tables | Akis Kesoglou | |
| Thanks to Loic Bistuer for review. Minor changes to error messages done by committer. | |||
| 2014-03-05 | Fixed #22206 -- Passed models.TextField.max_length to forms.CharField.maxlength | Chris Wilson | |
| 2014-03-04 | Fixed three small flake8 violations. | Alex Gaynor | |
| 2014-03-04 | Merge pull request #2396 from loic/ticket21893 | Andrew Godwin | |
| Fixed #21893 -- ModelState didn't account for MTI parents inherited from abstract models. | |||
| 2014-03-05 | Fixed #21893 -- ModelState didn't account for MTI parents inherited from ↵ | Loic Bistuer | |
| abstract models. | |||
| 2014-03-04 | Fixed typo in internal CharField method | Chris Wilson | |
| 2014-03-03 | Allowed custom querysets when prefetching single valued relations | Loic Bistuer | |
| The original patch for custom prefetches didn't allow usage of custom queryset for single valued relations (along ForeignKey or OneToOneKey). Allowing these enables calling performance oriented queryset methods like select_related or defer/only. Thanks @akaariai and @timgraham for the reviews. Refs #17001. | |||
| 2014-03-03 | Fixed many typos in comments and docstrings. | Rodolfo Carvalho | |
| Thanks Piotr Kasprzyk for help with the patch. | |||
| 2014-03-03 | Edited model and field checks for grammar and consistency. | Russell Keith-Magee | |
| 2014-03-03 | Edited model check messages for grammar and consistency. | Russell Keith-Magee | |
| 2014-03-03 | Edited MySQL-specific check messages for grammar and consistency. | Russell Keith-Magee | |
| 2014-03-02 | Restored aliases for two APIs removed by app-loading. | Aymeric Augustin | |
| 2014-03-01 | Fixed #22172 -- Allowed index_together to be a single list (rather than list ↵ | Anubhav Joshi | |
| of lists).. Thanks EmilStenstrom for the suggestion. | |||
| 2014-03-01 | Fixed #22168 -- Fixed migrations failing on sqlite when column names are SQL ↵ | Baptiste Mispelon | |
| keywords Thanks to trac user fallen_flint for the report and initial patch. | |||
| 2014-02-28 | Fix keyword agument names in RunPython to be positional | Andrew Godwin | |
| 2014-02-25 | Fixed bad grammar in a comment. | Martin Matusiak | |
| 2014-02-23 | Fixed #22095 -- Enabled backward migrations for RunPython operations | Andrew Gorcester | |
| Added reversible property to RunPython so that migrations will not refuse to reverse migrations including RunPython operations, so long as reverse_code is set in the RunPython constructor. Included tests to check the reversible property on RunPython and the similar RunSQL. | |||
| 2014-02-18 | Fixed #22057 -- Ensured reverse_lazy can be used in settings | Claude Paroz | |
| And without causing a circular import. Thanks Akis Kesoglou for the report. | |||
| 2014-02-17 | Fixed #22073 - Ensure CreateTable operation handles backwards migration ↵ | Ben Davis | |
| correctly when M2M fields are present | |||
| 2014-02-17 | Fixed #22023 -- Raised an error for values() followed by defer() or only(). | Artur Frysiak | |
| Previously, doing so resulted in invalid data or crash. Thanks jtiai for the report and Karol Jochelson, Jakub Nowak, Loic Bistuer, and Baptiste Mispelon for reviews. | |||
| 2014-02-17 | Merge pull request #2270 from bmispelon/ticket-22030 | Andrew Godwin | |
| Fixed #22030 -- Don't assume that all fields have a swappable_setting at... | |||
| 2014-02-15 | Fixed #22047 -- detecting related_name clash with inheritance | Christopher Medrela | |
| Thanks to mondone for fruitful colaboration. | |||
| 2014-02-15 | Fixed #19299 -- Fixed Nullification of Foreign Keys To CharFields | Albert Wang | |
| Thanks tunixman for the report and Baptiste Mispelon and Shai Berger for reviews. | |||
| 2014-02-15 | Fixed typo in docstring. | Rodolfo Carvalho | |
| 2014-02-14 | Fixed #22035 -- reordered migration operations | Anton Baklanov | |
| Now AddField actions appear in operations list before AlterUniqueTogether actions. Thanks to SmileyChris for the report. | |||
| 2014-02-13 | Fixed #22030 -- Don't assume that all fields have a swappable_setting attribute. | Baptiste Mispelon | |
| 2014-02-12 | Fix my slightly hasty autodetector changes | Andrew Godwin | |
| 2014-02-12 | Remove redunant code from RunPython operation | Andrew Godwin | |
| 2014-02-11 | Fixed #2445 -- Allowed limit_choices_to attribute to be a callable. | Christopher Adams | |
| ForeignKey or ManyToManyField attribute ``limit_choices_to`` can now be a callable that returns either a ``Q`` object or a dict. Thanks michael at actrix.gen.nz for the original suggestion. | |||
| 2014-02-10 | Fixed #17673 -- Forbid field shadowing. | Christopher Medrela | |
| Thanks Anssi Kääriäinen for the suggestion. | |||
| 2014-02-09 | Fixed #21763 -- Added an error msg for missing methods on ManyRelatedManager. | Robert Stapenhurst | |
| Attempting to add() and remove() an object related by a 'through' model now raises more descriptive AttributeErrors, in line with set and create(). | |||
| 2014-02-09 | Silence deprecation warnings. | Marc Tamlyn | |
| Also they should only be raised if allow_syncdb does exist, not just if allow_migrate does not. Refs comments on 250841017c6c456806cadd214b4e130aa998233d | |||
| 2014-02-09 | Fixed #21868: Don't die when seeing py3 namespace packages for mig dirs | Andrew Godwin | |
| 2014-02-09 | Fixed #21958: Handle dependencies for swappable models in AddField | Andrew Godwin | |
| 2014-02-09 | Fixed #21844: Move quote_parameter off of Operations and rename | Andrew Godwin | |
| 2014-02-09 | Fixed #21842: Remove redundant DatabaseFeatures.max_index_name_length | Andrew Godwin | |
| 2014-02-09 | Raise (pending) deprecation warning for allow_syncdb. | Marc Tamlyn | |
| 2014-02-09 | Fixed #21968: Bad detection of old-style apps to add initial migration | Andrew Godwin | |
| 2014-02-09 | Fixed #21954: Raise nice error when serializing datetimes with timezones | Andrew Godwin | |
| 2014-02-09 | Removed unused imports + other flake8 fixes. | Tim Graham | |
| 2014-02-09 | Fixed #21917: Overly cautious SQLite3 backend for null fields + defaults | Andrew Godwin | |
| 2014-02-09 | Fixed #21892: RunPython no longer accepts strings | Andrew Godwin | |
| 2014-02-08 | Fixed #21674 -- Deprecated the import_by_path() function in favor of ↵ | Berker Peksag | |
| import_string(). Thanks Aymeric Augustin for the suggestion and review. | |||
| 2014-02-08 | Fixed #16192 -- Made unique error messages in ModelForm customizable. | Loic Bistuer | |
| Overriding the error messages now works for both unique fields, unique_together and unique_for_date. This patch changed the overriding logic to allow customizing NON_FIELD_ERRORS since previously only fields' errors were customizable. Refs #20199. Thanks leahculver for the suggestion. | |||
| 2014-02-06 | Fixed #17713 -- Renamed BaseDatabaseFeatures.allows_primary_key_0 to ↵ | Vajrasky Kok | |
| allows_auto_pk_0. MySQL does allow primary key with value 0. It only forbids autoincrement primary key with value 0. Thanks Claude Paroz for the report. | |||
| 2014-02-05 | Fix pep8 violation in migration template. | Marc Tamlyn | |
| 2014-02-04 | Fixed #21748 -- join promotion for negated AND conditions | Anssi Kääriäinen | |
| Made sure Django treats case .filter(NOT (a AND b)) the same way as .filter((NOT a OR NOT b)) for join promotion. | |||
