| Age | Commit message (Collapse) | Author |
|
Thanks Adam Johnson, Carl Meyer, Anssi Kääriäinen, Mariusz Felisiak,
Michael Manfre, and Tim Graham for discussion and review.
|
|
|
|
|
|
|
|
Thanks Shai Berger, Tim Graham and Aymeric Augustin for reviews and
Renbi Yu for the initial patch.
|
|
Thanks Tim Graham for the review.
|
|
A regression in pyenchant caused a problem:
https://github.com/rfk/pyenchant/issues/93
|
|
|
|
|
|
Thanks Markus Holtermann and Tim Graham for reviews.
|
|
Tests and docs complement to cecc079168e8669138728d31611ff3a1e7eb3a9f.
|
|
|
|
|
|
Thanks Tim Graham and Mariusz Felisiak for review and completion.
|
|
|
|
Thanks Simon Charette for the draft patch.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Thanks Mariusz Felisiak for review and MySQL advice.
|
|
|
|
Thanks Anton Gilgur for the report and review.
|
|
|
|
|
|
Thanks IRC alias rpkilby for the report.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
queries.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
models' default and base managers.
This deprecates use_for_related_fields.
Old API:
class CustomManager(models.Model):
use_for_related_fields = True
class Model(models.Model):
custom_manager = CustomManager()
New API:
class Model(models.Model):
custom_manager = CustomManager()
class Meta:
base_manager_name = 'custom_manager'
Refs #20932, #25897.
Thanks Carl Meyer for the guidance throughout this work.
Thanks Tim Graham for writing the docs.
|
|
|