diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ad42591..d95519d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,13 +29,36 @@ The format is based on [Keep a Changelog](https://keepachangelog.com), and this * Preview generation feature completely removed. * Authentication against REST API using JWT is no longer supported. - See [UPGRADE doc](UPGRADE.md) in order to get details on how to migrate to this version. + See [UPGRADE](UPGRADE.md) doc in order to get details on how to migrate to this version. #### Fixed * *Nothing* +## 1.21.1 - 2020-01-02 + +#### Added + +* *Nothing* + +#### Changed + +* *Nothing* + +#### Deprecated + +* *Nothing* + +#### Removed + +* *Nothing* + +#### Fixed + +* [#596](https://github.com/shlinkio/shlink/issues/596) Fixed error when trying to download GeoLite2 database due to changes on how to get the database files. + + ## 1.21.0 - 2019-12-29 #### Added diff --git a/config/autoload/geolite2.global.php b/config/autoload/geolite2.global.php index 5b7e2fa1..97e8c381 100644 --- a/config/autoload/geolite2.global.php +++ b/config/autoload/geolite2.global.php @@ -7,7 +7,9 @@ return [ 'geolite2' => [ 'db_location' => __DIR__ . '/../../data/GeoLite2-City.mmdb', 'temp_dir' => sys_get_temp_dir(), - 'download_from' => 'http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz', + 'download_from' => + 'https://download.maxmind.com/app/geoip_download' + . '?edition_id=GeoLite2-City&license_key=G4Lm0C60yJsnkdPi&suffix=tar.gz', ], ];