diff --git a/changelog.md b/changelog.md index 7c138306a0..1b1f91c3e3 100644 --- a/changelog.md +++ b/changelog.md @@ -4,7 +4,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [5.0.0 (API 1.0.0)] - 20xx-xx-xx -*This version has not yet been released.* The latest available version is **5.0.0-alpha.1**. +*This version has not yet been released.* The latest available version is **5.0.0-alpha.2**. This version represents, if anything, a fresh start in the version numbering system so Firefly III will finally follow SemVer, for real this time. @@ -15,18 +15,24 @@ This version represents, if anything, a fresh start in the version numbering sys - Firefly III now supports redis as cache backend. - Footer will warn you of alpha and beta versions. - [Issue 2901](https://github.com/firefly-iii/firefly-iii/issues/2901) Can select liability accounts when running rules. +- [Issue 2893](https://github.com/firefly-iii/firefly-iii/issues/2893) Add config cache clear command to Docker build. +- [Issue 2667](https://github.com/firefly-iii/firefly-iii/issues/2667) Option to export data from Firefly III +- [Issue 2064](https://github.com/firefly-iii/firefly-iii/issues/2064) Ability to mass-delete tags. +- Can now give accounts a location tag. TODO: API, migrate tags, edit-screen. ### Changed - [Issue 2776](https://github.com/firefly-iii/firefly-iii/issues/2776) Some charts now do relative scaling. Useful for large amounts. - [Issue 2702](https://github.com/firefly-iii/firefly-iii/issues/2702) More details on tags overview - Fine tune the Docker container startup times using new environment variables. +- [Issue 2919](https://github.com/firefly-iii/firefly-iii/issues/2919) Didn't support user's choice not to check for updates. ### Deprecated - Firefly III no longer supports the SFTP storage backend, nor does it support the ability to use both SFTP and local files as storage backends, because the packages required are no longer maintained and will not work with Laravel 6.0. ### Removed -- Nothing yet. +- Firefly III will no longer be built for Sandstorm. +- The Docker image is built from a separate repository. ### Fixed - [Issue 2907](https://github.com/firefly-iii/firefly-iii/issues/2907) Bad date display in recurring transactions. @@ -35,6 +41,8 @@ This version represents, if anything, a fresh start in the version numbering sys - [Issue 2878](https://github.com/firefly-iii/firefly-iii/issues/2878) Typo in code of budget overview. - [Issue 2876](https://github.com/firefly-iii/firefly-iii/issues/2876) Trailing zeroes and other issues. - [Issue 2881](https://github.com/firefly-iii/firefly-iii/issues/2881) An error when only the title of a split transaction was bad. +- [Issue 2924](https://github.com/firefly-iii/firefly-iii/issues/2924) Could not trigger rules when set to "update". +- [Issue 2691](https://github.com/firefly-iii/firefly-iii/issues/2691) Fix to update recurring transactions with bad types. ### Security - Nothing yet. diff --git a/config/firefly.php b/config/firefly.php index 561d99bc53..f638f56eb4 100644 --- a/config/firefly.php +++ b/config/firefly.php @@ -136,9 +136,9 @@ return [ 'export' => true, ], 'encryption' => null === env('USE_ENCRYPTION') || env('USE_ENCRYPTION') === true, - 'version' => '5.0.0-alpha.1', + 'version' => '5.0.0-alpha.2', 'api_version' => '1.0.0', - 'db_version' => 11, + 'db_version' => 12, 'maxUploadSize' => 15242880, 'send_error_message' => env('SEND_ERROR_MESSAGE', true), 'site_owner' => env('SITE_OWNER', ''),