Merge branch 'hotfix/5.5.12' into main

This commit is contained in:
James Cole
2021-06-03 13:01:20 +02:00
4 changed files with 14 additions and 5 deletions

View File

@@ -2,6 +2,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## 5.5.12 - 2021-06-03
⚠️ On July 1st 2021 the Docker tag will change to `fireflyiii/core`. You can already start using the new tag.
### Security
- This version of Firefly III fixes a security vulnerability in the export routine. You are advised to upgrade as soon as possible. All credits to the excellent @oomb.
## 5.5.11 - 2021-05-08 ## 5.5.11 - 2021-05-08
⚠️ On July 1st 2021 the Docker tag will change to `fireflyiii/core`. You can already start using the new tag. ⚠️ On July 1st 2021 the Docker tag will change to `fireflyiii/core`. You can already start using the new tag.

View File

@@ -100,7 +100,7 @@ return [
'handle_debts' => true, 'handle_debts' => true,
], ],
'version' => '5.5.11', 'version' => '5.5.12',
'api_version' => '1.5.2', 'api_version' => '1.5.2',
'db_version' => 16, 'db_version' => 16,
'maxUploadSize' => 1073741824, // 1 GB 'maxUploadSize' => 1073741824, // 1 GB

View File

@@ -15,9 +15,10 @@
<p> <p>
{{ 'export_data_expl'|_ }} {{ 'export_data_expl'|_ }}
</p> </p>
<ul> <form action="{{ route('export.export') }}" method="post">
<li><i class="fa fa-fw fa-download"></i> <a href="{{ route('export.export') }}" title="{{ 'export_data_all_transactions'|_ }}">{{ 'export_data_all_transactions'|_ }}</a></li> <input type="hidden" name="_token" value="{{ csrf_token() }}"/>
</ul> <button type="submit"><i class="fa fa-fw fa-download"></i> {{ 'export_data_all_transactions'|_ }}</button>
</form>
<p> <p>
{{ 'export_data_advanced_expl'|_ }} {{ 'export_data_advanced_expl'|_ }}
</p> </p>

View File

@@ -538,7 +538,7 @@ Route::group(
// index // index
Route::get('', ['uses' => 'Export\IndexController@index', 'as' => 'index']); Route::get('', ['uses' => 'Export\IndexController@index', 'as' => 'index']);
Route::get('export', ['uses' => 'Export\IndexController@export', 'as' => 'export']); Route::post('export', ['uses' => 'Export\IndexController@export', 'as' => 'export']);
} }
); );
/** /**