diff --git a/CHANGES.md b/CHANGES.md index d34b6c95f..103cf5510 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -68,6 +68,7 @@ - Upgraded Redis Resque queue library to version 1.3.6 ([#319](https://github.com/appwrite/appwrite/issues/319)) - Upgraded ClamAV container image to version 1.0.11 ([#412](https://github.com/appwrite/appwrite/issues/412)) - Upgraded device detctor to version 3.12.6 +- Upgraded GEOIP DB file to Feb 2021 release ## Breaking Changes (Read before upgrading!) diff --git a/app/db/DBIP/dbip-country-lite-2020-01.mmdb b/app/db/DBIP/dbip-country-lite-2020-01.mmdb deleted file mode 100644 index 133c89622..000000000 Binary files a/app/db/DBIP/dbip-country-lite-2020-01.mmdb and /dev/null differ diff --git a/app/db/DBIP/dbip-country-lite-2021-02.mmdb b/app/db/DBIP/dbip-country-lite-2021-02.mmdb new file mode 100644 index 000000000..6434c220f Binary files /dev/null and b/app/db/DBIP/dbip-country-lite-2021-02.mmdb differ diff --git a/app/init.php b/app/init.php index 5db2fbba9..8872cd3df 100644 --- a/app/init.php +++ b/app/init.php @@ -208,7 +208,7 @@ $register->set('smtp', function () { return $mail; }); $register->set('geodb', function () { - return new Reader(__DIR__.'/db/DBIP/dbip-country-lite-2020-01.mmdb'); + return new Reader(__DIR__.'/db/DBIP/dbip-country-lite-2021-02.mmdb'); }); /*