Version 2.0.9:
- Fix UnboundLocalError: local variable 'key_cls' referenced before assignment
for cases when models is a python package, the to argument is a string
that is used in this pattern app.Model and also there is some other
bool const like null=True right after to.
- Don't crash if ForeignKey field doesn't have keyword arguments
3.9.5
* Added small helper for setting timezone when using Postgres.
* Improved SQL generation for `VALUES` clause.
* Support passing resolution to `TimestampField` as a power-of-10.
* Small improvements to `INSERT` queries when the primary-key is not an
auto-incrementing integer, but is generated by the database server (eg uuid).
* Cleanups to virtual table implementation and python-to-sqlite value
conversions.
* Fixed bug related to binding previously-unbound models to a database using a
context manager.
Upstream changes:
version 3.98 at 2019-04-20 20:23:20 +0000
-----------------------------------------
Change: 410e74dbd253fa35ca64cea19d546e1c94f44b41
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-04-20 21:23:20 +0000
Updated for v5.29.10
Upstream changes:
2019-04-23 16:00:00 xsawyerx
version 3.15
* Fix leaking.
unreleased
version 3.14
* (perl #133708) don't build-time probe for stack limits at all
unreleased
version 3.12
* (perl #133411) don't probe for stack limits with -Dusecrosscompile
Upstream changes:
3.46 - 2019-04-20
* Fix the isFOO character type classification macros to work properly on
all versions, as follows:
* Fixed isALNUM, isALPHA, isDIGIT, isIDFIRST, isLOWER, and isUPPER on
very early perls to not be locale-dependent
* Fixed isASCII on early perls to work with signed char arguments
* Fixed isCNTRL on early perls to know that DEL is a control
* Fixed isSPACE on perls before 5.20 to know that VERTICAL TAB is a
space
* Added isALPHANUMERIC, synonym for isALNUMC
* Added isIDCONT, to match legal non-initial characters in an
identifier
* Added isOCTAL, to match [0-7]
* Added isWORDCHAR, synonym for isALNUM
* Make all the character classification isFOO macros work on EBCDIC
platforms on all versions
* Added isFOO_A synonyms for all character classification isFOO
macros
* Provide LIKELY/UNLIKELY branch prediction
* Provide av_tindex/av_top_index
* Provide __ASSERT_ for assertions inside macros
* Provide UTF8_SAFE_SKIP
* Provide my_strnlen()
* Provide utf8_to_uvchr_buf()
* Replace utf8_to_uvchr() with a safer version
* Provide UNICODE_REPLACEMENT