<feed xmlns='http://www.w3.org/2005/Atom'>
<title>chango.git/tests/model_fields/test_integerfield.py, branch 3.2</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/chango.git/atom?h=3.2</id>
<link rel='self' href='http://cgit.adnoto.dev/chango.git/atom?h=3.2'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/'/>
<updated>2020-12-10T17:00:57Z</updated>
<entry>
<title>Fixed #32178 -- Allowed database backends to skip tests and mark expected failures.</title>
<updated>2020-12-10T17:00:57Z</updated>
<author>
<name>Hasan Ramezani</name>
<email>hasan.r67@gmail.com</email>
</author>
<published>2020-12-10T17:00:57Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=275dd4ebbabbbe758c7219a3d666953d5a7b072f'/>
<id>urn:sha1:275dd4ebbabbbe758c7219a3d666953d5a7b072f</id>
<content type='text'>
Co-authored-by: Tim Graham &lt;timograham@gmail.com&gt;</content>
</entry>
<entry>
<title>Fixed #32132 -- Fixed column types in m2m intermediary tables for Positive(Big/Small)IntegerFields.</title>
<updated>2020-11-02T19:11:58Z</updated>
<author>
<name>David-Wobrock</name>
<email>david.wobrock@gmail.com</email>
</author>
<published>2020-10-23T21:56:12Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=cfc7cd6513a72b8c5898c264d04bdf49f897a1de'/>
<id>urn:sha1:cfc7cd6513a72b8c5898c264d04bdf49f897a1de</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #32132 -- Added rel_db_type() tests for auto and integer fields.</title>
<updated>2020-11-02T19:11:58Z</updated>
<author>
<name>David-Wobrock</name>
<email>david.wobrock@gmail.com</email>
</author>
<published>2020-11-02T07:20:15Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=4ebd633350ac07091a23c0f0c3eac3aa691cab05'/>
<id>urn:sha1:4ebd633350ac07091a23c0f0c3eac3aa691cab05</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #30987 -- Added models.PositiveBigIntegerField.</title>
<updated>2019-11-19T08:34:11Z</updated>
<author>
<name>Caio Ariede</name>
<email>caio.ariede@gmail.com</email>
</author>
<published>2019-10-16T12:32:12Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=555bebe7749ab1a72d5141a00f9ce7a602c72298'/>
<id>urn:sha1:555bebe7749ab1a72d5141a00f9ce7a602c72298</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #27910 -- Added enumeration helpers for use in Field.choices.</title>
<updated>2019-09-04T12:42:49Z</updated>
<author>
<name>Shai Berger</name>
<email>shai@platonix.com</email>
</author>
<published>2018-12-31T17:57:35Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=72ebe85a269aab4bdb3829de4846b41f90973c5d'/>
<id>urn:sha1:72ebe85a269aab4bdb3829de4846b41f90973c5d</id>
<content type='text'>
These classes can serve as a base class for user enums, supporting
translatable human-readable names, or names automatically inferred
from the enum member name.

Additional properties make it easy to access the list of names, values
and display labels.

Thanks to the following for ideas and reviews:

Carlton Gibson, Fran Hrženjak, Ian Foote, Mariusz Felisiak, Shai Berger.

Co-authored-by: Shai Berger &lt;shai@platonix.com&gt;
Co-authored-by: Nick Pope &lt;nick.pope@flightdataservices.com&gt;
Co-authored-by: Mariusz Felisiak &lt;felisiak.mariusz@gmail.com&gt;
</content>
</entry>
<entry>
<title>Fixed #29979, Refs #17337 -- Extracted AutoField field logic into a mixin and refactored AutoFields.</title>
<updated>2019-08-20T07:22:25Z</updated>
<author>
<name>Nick Pope</name>
<email>nick.pope@flightdataservices.com</email>
</author>
<published>2017-12-11T15:36:33Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=21e559495b8255bba1e8a4429cd083246ab90457'/>
<id>urn:sha1:21e559495b8255bba1e8a4429cd083246ab90457</id>
<content type='text'>
This reduces duplication by allowing AutoField, BigAutoField and
SmallAutoField to inherit from IntegerField, BigIntegerField and
SmallIntegerField respectively. Doing so also allows for enabling the
max_length warning check and minimum/maximum value validation for auto
fields, as well as providing a mixin that can be used for other possible
future auto field types such as a theoretical UUIDAutoField.
</content>
</entry>
<entry>
<title>Fixed #28393 -- Added helpful error messages for invalid AutoField/FloatField/IntegerField values.</title>
<updated>2019-08-05T06:41:29Z</updated>
<author>
<name>Diederik van der Boor</name>
<email>vdboor@edoburu.nl</email>
</author>
<published>2017-07-13T11:55:23Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=25f21bd2376603c8e233a0a0e5a726a0fdfdd33e'/>
<id>urn:sha1:25f21bd2376603c8e233a0a0e5a726a0fdfdd33e</id>
<content type='text'>
Co-authored-by: Diederik van der Boor &lt;vdboor@edoburu.nl&gt;
Co-authored-by: Nick Pope &lt;nick.pope@flightdataservices.com&gt;
</content>
</entry>
<entry>
<title>Fixed #30328 -- Fixed crash of IntegerField.validators when limit_value in a custom validator is callable.</title>
<updated>2019-04-19T05:58:27Z</updated>
<author>
<name>Scott Fitsimones</name>
<email>iscottonline@gmail.com</email>
</author>
<published>2019-04-06T04:40:46Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=a14c0fda15db7e0eb982ac7b68d47b45fc95b4cb'/>
<id>urn:sha1:a14c0fda15db7e0eb982ac7b68d47b45fc95b4cb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #27979 -- Made MySQL raise IntegrityError rather than OperationalError when saving negative numbers in PositiveInteger fields.</title>
<updated>2017-09-29T19:20:32Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2017-09-29T18:50:51Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=dd82f3327124fd2762cf6df2ac8c6380772bf127'/>
<id>urn:sha1:dd82f3327124fd2762cf6df2ac8c6380772bf127</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #23919 -- Removed six.&lt;various&gt;_types usage</title>
<updated>2017-01-18T19:18:46Z</updated>
<author>
<name>Claude Paroz</name>
<email>claude@2xlibre.net</email>
</author>
<published>2016-12-29T15:27:49Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=7b2f2e74adb36a4334e83130f6abc2f79d395235'/>
<id>urn:sha1:7b2f2e74adb36a4334e83130f6abc2f79d395235</id>
<content type='text'>
Thanks Tim Graham and Simon Charette for the reviews.
</content>
</entry>
</feed>
