| Age | Commit message (Collapse) | Author |
|
|
|
|
|
Thanks Simon Charette and Tim Graham for the reviews.
|
|
Refs #23879.
|
|
|
|
Fixed queries where an expression was used in order_by() but the
expression wasn't in the query's select clause (for example the
expression could be masked by .values() call)
Thanks to Trac alias MattBlack85 for the report.
|
|
This would break upcoming changes and AdminSite assumptions about
having an app_config for each application that has registered
models.
|
|
|
|
templates.
|
|
Thanks Tim Graham for the review.
|
|
This reverts commit e0cc36f615f70061e034f5ba3f4e75330f51d3ca.
The problem is the following:
* With non-gis backends, gis_tests sub apps are not discovered
(see runtests.py)
* Consequently, the app_label is inferred from the gis_tests
AppConfig
* Then models with same names in different sub apps conflict
because of same model_name/app_label pair.
|
|
|
|
Thanks to Bas Peschier for pointing this out. Refs #23804.
|
|
Thanks Tim Graham for the review.
|
|
Earlier versions of GDAL do not allow the srid to be set to 0,
so it should be a required parameter to ensure compatibility.
|
|
- Instantiation of GDALRaster instances from dict or json data.
- Retrieve and write pixel values in GDALBand objects.
- Support for the GDALFlushCache in gdal C prototypes
- Added private flush method to GDALRaster to make sure all
data is written to files when file-based rasters are changed.
- Replaced ``ptr`` with ``_ptr`` for internal ptr variable
Refs #23804. Thanks Claude Paroz and Tim Graham for the reviews.
|
|
Specifically stopped using the dir argument.
|
|
The new signature enables better support for routing RunPython and
RunSQL operations, especially w.r.t. reusable and third-party apps.
This commit also takes advantage of the deprecation cycle for the old
signature to remove the backward incompatibility introduced in #22583;
RunPython and RunSQL won't call allow_migrate() when when the router
has the old signature.
Thanks Aymeric Augustin and Tim Graham for helping shape up the patch.
Refs 22583.
|
|
|