diff --git a/.travis.yml b/.travis.yml index a122912428..f9c80429b4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ sudo: required language: bash env: - - VERSION=4.8.1.5 + - VERSION=4.8.1.6 dist: xenial diff --git a/changelog.md b/changelog.md index a6a958ccc8..3e7350ec47 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [4.8.1.6 (API 0.10.4)] - 2019-10-25 + +### Fixed +- Redirecting to an URL with parameters works well now for editing and creating transactions. +- #2756 Search was broken due to left-over debug statements. +- #2757 2FA was broken due to a changed library. +- #2758 A debug command courtesy of Laravel wouldn't work due to invalid routes. +- #2701 Fixed a never-ending loop. + ## [4.8.1.5 (API 0.10.4)] - 2019-10-21 ### Added @@ -14,12 +23,6 @@ This project adheres to [Semantic Versioning](http://semver.org/). - [Issue 2734](https://github.com/firefly-iii/firefly-iii/issues/2734) Put personal access token in textarea for easier copy/pasting. - [Issue 2728](https://github.com/firefly-iii/firefly-iii/issues/2728) Remove superfluous currency names. -### Deprecated -- Initial release. - -### Removed -- Initial release. - ### Fixed - [Issue 2699](https://github.com/firefly-iii/firefly-iii/issues/2699) Internal cache wouldn't update. - [Issue 2713](https://github.com/firefly-iii/firefly-iii/issues/2713) Could not search for numerical values. @@ -31,9 +34,6 @@ This project adheres to [Semantic Versioning](http://semver.org/). - [Issue 2746](https://github.com/firefly-iii/firefly-iii/issues/2746) Cache would not clear after firing recurring transactions. - [Issue 2755](https://github.com/firefly-iii/firefly-iii/issues/2755) Making a rule inactive would still fire it. -### Security -- Initial release. - ### API - [Issue 2698](https://github.com/firefly-iii/firefly-iii/issues/2698) Fix return value in API. - [Issue 2753](https://github.com/firefly-iii/firefly-iii/issues/2753) Was possible to upload and manage empty attachments. diff --git a/config/firefly.php b/config/firefly.php index 2704e28a71..7a4a29ee8f 100644 --- a/config/firefly.php +++ b/config/firefly.php @@ -125,7 +125,7 @@ return [ 'is_demo_site' => false, ], 'encryption' => null === env('USE_ENCRYPTION') || env('USE_ENCRYPTION') === true, - 'version' => '4.8.1.5', + 'version' => '4.8.1.6', 'api_version' => '0.10.4', 'db_version' => 11, 'maxUploadSize' => 15242880,