From 32de74b23eb253b8ec9a694864bf0dc67bf6c5ae Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Thu, 2 Jan 2020 22:46:56 +0100 Subject: [PATCH 1/2] Updated URL from which GeoLite DB is downloaded --- config/autoload/geolite2.global.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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', ], ]; From 2fff38d51a7dcfd3ffc6d6c041e2781d00b83c2f Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Thu, 2 Jan 2020 22:49:17 +0100 Subject: [PATCH 2/2] Added v1.21.1 to changelog --- CHANGELOG.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb001cb4..d0f69aa0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org). +## 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