<feed xmlns='http://www.w3.org/2005/Atom'>
<title>chango.git/tests/proxy_models/models.py, branch devmain</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/chango.git/atom?h=devmain</id>
<link rel='self' href='http://cgit.adnoto.dev/chango.git/atom?h=devmain'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/'/>
<updated>2025-07-23T23:17:55Z</updated>
<entry>
<title>Refs #36500 -- Rewrapped long docstrings and block comments via a script.</title>
<updated>2025-07-23T23:17:55Z</updated>
<author>
<name>django-bot</name>
<email>ops@djangoproject.com</email>
</author>
<published>2025-07-23T03:41:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=69a93a88edb56ba47f624dac7a21aacc47ea474f'/>
<id>urn:sha1:69a93a88edb56ba47f624dac7a21aacc47ea474f</id>
<content type='text'>
Rewrapped long docstrings and block comments to 79 characters + newline
using script from https://github.com/medmunds/autofix-w505.
</content>
</entry>
<entry>
<title>Applied Black's 2024 stable style.</title>
<updated>2024-01-26T11:45:07Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2024-01-26T11:45:07Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=305757aec19c9d5111e4d76095ae0acd66163e4b'/>
<id>urn:sha1:305757aec19c9d5111e4d76095ae0acd66163e4b</id>
<content type='text'>
https://github.com/psf/black/releases/tag/24.1.0</content>
</entry>
<entry>
<title>Refs #33476 -- Reformatted code with Black.</title>
<updated>2022-02-07T19:37:05Z</updated>
<author>
<name>django-bot</name>
<email>ops@djangoproject.com</email>
</author>
<published>2022-02-03T19:24:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=9c19aff7c7561e3a82978a272ecdaad40dda5c00'/>
<id>urn:sha1:9c19aff7c7561e3a82978a272ecdaad40dda5c00</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #28776 -- Fixed a/an/and typos in docs and comments.</title>
<updated>2017-11-07T03:41:03Z</updated>
<author>
<name>Дилян Палаузов</name>
<email>dilyanpalauzov@users.noreply.github.com</email>
</author>
<published>2017-11-07T03:11:39Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=6c0042430e3618ce5c276d195d92a6b884daa3a3'/>
<id>urn:sha1:6c0042430e3618ce5c276d195d92a6b884daa3a3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Sorted imports per isort 4.2.9.</title>
<updated>2017-06-01T17:23:48Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2017-06-01T17:23:48Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=cde31daf8815e05b4b86b857b49fb0e31e1f0a38'/>
<id>urn:sha1:cde31daf8815e05b4b86b857b49fb0e31e1f0a38</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #23919 -- Replaced super(ClassName, self) with super().</title>
<updated>2017-01-25T17:23:46Z</updated>
<author>
<name>chillaranand</name>
<email>anand21nanda@gmail.com</email>
</author>
<published>2017-01-21T13:13:44Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=d6eaf7c0183cd04b78f2a55e1d60bb7e59598310'/>
<id>urn:sha1:d6eaf7c0183cd04b78f2a55e1d60bb7e59598310</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #23919 -- Removed python_2_unicode_compatible decorator usage</title>
<updated>2017-01-18T12:44:34Z</updated>
<author>
<name>Claude Paroz</name>
<email>claude@2xlibre.net</email>
</author>
<published>2016-11-19T20:54:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=f3c43ad1fd9556f0fd026a5dfa93c67a5cf186ca'/>
<id>urn:sha1:f3c43ad1fd9556f0fd026a5dfa93c67a5cf186ca</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #10506, #13793, #14891, #25201 -- Introduced new APIs to specify models' default and base managers.</title>
<updated>2016-05-17T05:07:22Z</updated>
<author>
<name>Loïc Bistuer</name>
<email>loic.bistuer@gmail.com</email>
</author>
<published>2016-04-17T11:55:55Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=ed0ff913c648b16c4471fc9a9441d1ee48cb5420'/>
<id>urn:sha1:ed0ff913c648b16c4471fc9a9441d1ee48cb5420</id>
<content type='text'>
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.
</content>
</entry>
<entry>
<title>Fixed #11560 -- Allowed proxy model multiple-inheritance from the same concrete base model.</title>
<updated>2016-03-30T17:06:27Z</updated>
<author>
<name>Akshesh</name>
<email>aksheshdoshi@gmail.com</email>
</author>
<published>2016-03-27T19:20:54Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=49f95cc0a0167e91fd0f6987428905911bff076c'/>
<id>urn:sha1:49f95cc0a0167e91fd0f6987428905911bff076c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #18012 -- Propagated reverse foreign keys from proxy to concrete models.</title>
<updated>2015-10-12T16:14:26Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2015-10-01T18:57:58Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=6c9f37ea9eafb0ca1b02eb71ae8d375672043824'/>
<id>urn:sha1:6c9f37ea9eafb0ca1b02eb71ae8d375672043824</id>
<content type='text'>
Thanks to Anssi for the review.
</content>
</entry>
</feed>
