diff --git a/CHANGELOG.md b/CHANGELOG.md index 3de5763d315..39a212c93f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [1.2.20] - 2022-07-09 +- Fixed security issue when uploading svg files with script tags +- Fixed security issue when using special characters as url parameters +- Other fixes +- [see all changes....](https://github.com/microweber/microweber/compare/1.2.19...1.2.20 "") + + ## [1.2.19] - 2022-07-04 - Fixed uploading, now requires a valid XSRF token. - Fixed artisan command names and arguments are now with dash instead of underscore diff --git a/src/MicroweberPackages/App/LaravelApplication.php b/src/MicroweberPackages/App/LaravelApplication.php index 23f0316e0ec..67e9becf8f9 100644 --- a/src/MicroweberPackages/App/LaravelApplication.php +++ b/src/MicroweberPackages/App/LaravelApplication.php @@ -13,7 +13,7 @@ class LaravelApplication extends Application { //remember to change also in version.txt - const APP_VERSION = '1.2.19'; + const APP_VERSION = '1.2.20'; private $base_path_local; diff --git a/version.txt b/version.txt index f37ae4a1634..b8305541340 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.2.19 \ No newline at end of file +1.2.20 \ No newline at end of file