| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-01-17 | Removed GeoManager and GeoQuerySet per deprecation timeline. | Tim Graham | |
| 2016-12-15 | Fixed #27497 -- Improved support of geodetic coordinates on SpatiaLite. | Sergey Fedoseev | |
| Area function, Distance function, and distance lookups now work with geodetic coordinates on SpatiaLite. | |||
| 2016-05-02 | Refs 2bd1bbc -- Made GeometryField.get_db_prep_lookup() a private ↵ | Tim Graham | |
| (deprecated) method. | |||
| 2015-12-03 | Fixed many spelling mistakes in code, comments, and docs. | Josh Soref | |
| 2015-10-31 | Fixed #25636 -- Dropped support for SpatiaLite < 3.0 | Sergey Fedoseev | |
| 2015-10-10 | Fixed #24687 -- Added select_related() validation for nested non-relational ↵ | Tim Graham | |
| fields. The removed test was added in the original select_related() validation patch (45d4e43d2d25b902e3821b612209afa951a8bcb8), but there doesn't seem to be any reason for it. Thanks Claude Paroz for help and review. | |||
| 2015-09-23 | Refs #24152 -- Removed deprecated GeoQuerySet aggregate methods. | Tim Graham | |
| Per deprecation timeline. | |||
| 2015-06-24 | Renamed RemovedInDjangoXYWarnings for new roadmap. | Tim Graham | |
| Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more. | |||
| 2015-05-13 | Removed unnecessary arguments in .get method calls | Piotr Jakimiak | |
| 2015-04-22 | Deprecated legacy GeoManager/GeoQuerySet methods | Claude Paroz | |
| 2015-02-06 | Fixed E265 comment style | Collin Anderson | |
| 2015-02-06 | Sorted imports with isort; refs #23860. | Tim Graham | |
| 2015-01-16 | Fixed #24152 -- Deprecated GeoQuerySet aggregate methods | Claude Paroz | |
| Thanks Josh Smeaton and Tim Graham for the reviews. | |||
| 2015-01-08 | Fixed #24020 -- Refactored SQL compiler to use expressions | Anssi Kääriäinen | |
| Refactored compiler SELECT, GROUP BY and ORDER BY generation. While there, also refactored select_related() implementation (get_cached_row() and get_klass_info() are now gone!). Made get_db_converters() method work on expressions instead of internal_type. This allows the backend converters to target specific expressions if need be. Added query.context, this can be used to set per-query state. Also changed the signature of database converters. They now accept context as an argument. | |||
| 2015-01-06 | Fixed #12663 -- Formalized the Model._meta API for retrieving fields. | Daniel Pyrathon | |
| Thanks to Russell Keith-Magee for mentoring this Google Summer of Code 2014 project and everyone else who helped with the patch! | |||
| 2014-11-15 | Fixed #14030 -- Allowed annotations to accept all expressions | Josh Smeaton | |
| 2014-09-22 | Fixed Oracle GIS gml() test failure introduced by e910340; refs #18757. | Marc Tamlyn | |
| 2014-09-05 | Limited lines to 119 characters in django/ | Tim Graham | |
| refs #23395. | |||
| 2014-09-03 | Fixed #18757, #14462, #21565 -- Reworked database-python type conversions | Marc Tamlyn | |
| Complete rework of translating data values from database Deprecation of SubfieldBase, removal of resolve_columns and convert_values in favour of a more general converter based approach and public API Field.from_db_value(). Now works seamlessly with aggregation, .values() and raw queries. Thanks to akaariai in particular for extensive advice and inspiration, also to shaib, manfre and timograham for their reviews. | |||
| 2014-08-26 | Removed some more hardcoded backends in GIS tests | Claude Paroz | |
| Refs #22632. Thanks Tim Graham for the review. | |||
| 2014-08-01 | Fixed #23108 -- Dropped support for PostgreSQL 8.4 & PostGIS 1.3, 1.4. | Tim Graham | |
| Thanks Claude Paroz for the review. | |||
| 2014-05-28 | Fixed #22714 -- Made contrib.gis use six-provided memoryview type | Claude Paroz | |
| Thanks Tim Graham for the report. | |||
| 2014-04-26 | Fix many many typos in comments throughout the codebase | Alex Gaynor | |
| 2014-03-30 | Corrected many style guide violations that the newest version of flake8 catches | Alex Gaynor | |
| 2014-03-03 | Fixed many typos in comments and docstrings. | Rodolfo Carvalho | |
| Thanks Piotr Kasprzyk for help with the patch. | |||
| 2014-01-22 | Fixed #21850 -- Made GeometryField.geodetic case insensitive | Oliver George | |
| 2013-12-10 | Fixed E124 pep8 warnings. | Loic Bistuer | |
| 2013-11-02 | Fixed all E261 warnings | coagulant | |
| 2013-11-02 | Continue to attack E302 violations | Alex Gaynor | |
| 2013-10-26 | Fixed all the E203 violations | Alex Gaynor | |
| 2013-10-24 | Start attacking E231 violations | Alex Gaynor | |
| 2013-10-22 | Fixed E221 pep8 warnings. | Tim Graham | |
| 2013-10-17 | Fixed #21270 -- Fixed E701 pep8 warnings | Alasdair Nicol | |
| 2013-09-30 | Added hints argument to GeoQuerySet; refs #13724. | Tim Graham | |
| 2013-07-22 | Merge pull request #1390 from garnertb/master | Marc Tamlyn | |
| Fixed small grammatical error in docstring. | |||
| 2013-07-22 | Fixed small grammatical error in docstring. | Tyler Garner | |
| 2012-11-02 | Fixed a regression in gis introduced by Query.select_fields removal | Anssi Kääriäinen | |
| 2012-10-12 | Fixed #19028 -- Support GeoJSON output with SpatiaLite 3.0+ | Brian Galey | |
| 2012-10-03 | Fixed #19063 -- Fixed version parameter of gml GeoQuerySet method | Claude Paroz | |
| Thanks lmisek@go2.pl for the report. | |||
| 2012-09-23 | [py3] Added buffer/memoryview compatibility | Claude Paroz | |
| Even if buffer and memoryview are not strictly identical, it should be safe to consider them equivalent for GIS support. Thanks Aymeric Augustin for the review. | |||
| 2012-08-23 | [py3] Removed duplicate imports. | Aymeric Augustin | |
| Fixed #18837. Refs #18791. | |||
| 2012-08-08 | remove a bunch of unnescesarry iterkeys() calls | Alex Gaynor | |
| 2012-08-07 | [py3] Fixed access to dict keys/values/items. | Aymeric Augustin | |
| 2012-07-22 | [py3] Replaced basestring by six.string_types. | Aymeric Augustin | |
| 2012-07-22 | [py3] Removed longs. | Aymeric Augustin | |
| 2011-07-13 | Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for ↵ | Jannis Leidel | |
| the work on the patch and Alex for reviewing. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16539 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2010-10-12 | Enabled area calculations for geography columns. | Justin Bronn | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@14189 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2010-01-29 | Renamed `reverse` to `reverse_geom` because of clash with existing ↵ | Justin Bronn | |
| `QuerySet` method; added `GeoQuerySet.geohash` support for producing GeoHash reprsentations. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12350 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2010-01-29 | Added `reverse` and `force_rhr` methods to `GeoQuerySet`. Refs #12416. | Justin Bronn | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@12349 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2010-01-27 | `GeoQuerySet.distance` now allows calculations to/from non-point geodetic ↵ | Justin Bronn | |
| geometry fields as allowed on PostGIS 1.5. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12312 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
