diff --git a/.travis-ci/build.sh b/.travis-ci/build.sh index 57aa5ca110..3e4f3e4a20 100644 --- a/.travis-ci/build.sh +++ b/.travis-ci/build.sh @@ -15,7 +15,7 @@ then exit 1 fi -if test $(find "./app/db/DBIP/dbip-country-lite-2021-12.mmdb" -mmin +259200) +if test $(find "./app/db/DBIP/dbip-country-lite-2022-02.mmdb" -mmin +259200) then printf "${RED}GEO country DB has not been updated for more than 6 months. Go to https://db-ip.com/db/download/ip-to-country-lite to download a newer version${NC}\n" fi diff --git a/CHANGES.md b/CHANGES.md index bccf34dd1d..49b45ef20e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,15 @@ +# Version 0.12.2 + +## Bugs +- Fix security vulnerability in the Console (#2778) +- Fix security vulnerability in the ACME-Challenge (#2780) + +## Upgrades + +- Upgraded `redis` extenstion to version 5.3.6 +- Upgraded `swoole` extenstion to version 4.8.6 +- Upgraded `imagick` extenstion to version 3.7.0 + # Version 0.12.1 ## Bugs diff --git a/app/db/DBIP/dbip-country-lite-2021-12.mmdb b/app/db/DBIP/dbip-country-lite-2021-12.mmdb deleted file mode 100644 index 5dcb5ed777..0000000000 Binary files a/app/db/DBIP/dbip-country-lite-2021-12.mmdb and /dev/null differ diff --git a/app/db/DBIP/dbip-country-lite-2022-02.mmdb b/app/db/DBIP/dbip-country-lite-2022-02.mmdb new file mode 100644 index 0000000000..eb0814eefb Binary files /dev/null and b/app/db/DBIP/dbip-country-lite-2022-02.mmdb differ diff --git a/app/init.php b/app/init.php index 725702a9c7..fe63f1c397 100644 --- a/app/init.php +++ b/app/init.php @@ -484,7 +484,7 @@ $register->set('smtp', function () { return $mail; }); $register->set('geodb', function () { - return new Reader(__DIR__.'/db/DBIP/dbip-country-lite-2021-12.mmdb'); + return new Reader(__DIR__.'/db/DBIP/dbip-country-lite-2022-02.mmdb'); }); $register->set('db', function () { // This is usually for our workers or CLI commands scope $dbHost = App::getEnv('_APP_DB_HOST', '');