summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNick Pope <nick@nickpope.me.uk>2021-04-06 09:52:09 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2024-01-11 12:01:35 +0100
commit40b5b1596f7505416bd30d5d7582b5a9004ea7d5 (patch)
tree895bd3d15f8ad3f37cdc185e39ee925de680e43c /docs
parent8d2c16252e78a0fae2356ead3a7b3f879a653046 (diff)
Fixed #35100 -- Reworked GeoIP2 database initialization.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.1.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/releases/5.1.txt b/docs/releases/5.1.txt
index 547a38d0b4..2f672e3dce 100644
--- a/docs/releases/5.1.txt
+++ b/docs/releases/5.1.txt
@@ -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
--------------------------------