1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #35100 -- Reworked GeoIP2 database initialization.

This commit is contained in:
Nick Pope
2021-04-06 09:52:09 +01:00
committed by Mariusz Felisiak
parent 8d2c16252e
commit 40b5b1596f
3 changed files with 75 additions and 131 deletions

View File

@@ -305,6 +305,13 @@ backends.
* Support for GDAL 2.4 is removed.
* :class:`~django.contrib.gis.geoip2.GeoIP2` no longer opens both city and
country databases when a directory path is provided, preferring the city
database, if it is available. The country database is a subset of the city
database and both are not typically needed. If you require use of the country
database when in the same directory as the city database, explicitly pass the
country database path to the constructor.
Dropped support for MariaDB 10.4
--------------------------------