mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-16 17:33:45 +00:00
Fix meta data for new release.
This commit is contained in:
2
.github/funding.yml
vendored
2
.github/funding.yml
vendored
@@ -1,5 +1,5 @@
|
|||||||
# These are supported funding model platforms
|
# These are supported funding model platforms
|
||||||
|
|
||||||
#github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
github: jc5
|
||||||
patreon: JC5
|
patreon: JC5
|
||||||
custom: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=44UKUT455HUFA
|
custom: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=44UKUT455HUFA
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
sudo: required
|
sudo: required
|
||||||
language: bash
|
language: bash
|
||||||
env:
|
env:
|
||||||
- VERSION=4.8.1.4
|
- VERSION=4.8.1.5
|
||||||
|
|
||||||
dist: xenial
|
dist: xenial
|
||||||
|
|
||||||
|
38
changelog.md
38
changelog.md
@@ -2,6 +2,44 @@
|
|||||||
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/).
|
||||||
|
|
||||||
|
## [4.8.1.5 (API 0.10.4)] - 2019-10-21
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- #2694 Special page for archived accounts.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- #2540 Partly translated transaction edit/create form.
|
||||||
|
- #2655 Link to Firefly III's base Docker image.
|
||||||
|
- #2724 Cleanup some JS output.
|
||||||
|
- #2734 Put personal access token in textarea for easier copy/pasting.
|
||||||
|
- #2728 Remove superfluous currency names.
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
- Initial release.
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
- Initial release.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- #2699 Internal cache wouldn't update.
|
||||||
|
- #2713 Could not search for numerical values.
|
||||||
|
- #2716 Could not reset intro popups.
|
||||||
|
- #2701 Temporary fix for timeouts.
|
||||||
|
- #2727 CSP headers too strict.
|
||||||
|
- #2731 Too strict config vars.
|
||||||
|
- #2754 Memcached config would error out.
|
||||||
|
- #2746 Cache would not clear after firing recurring transactions.
|
||||||
|
- #2755 Making a rule inactive would still fire it.
|
||||||
|
|
||||||
|
### Security
|
||||||
|
- Initial release.
|
||||||
|
|
||||||
|
### API
|
||||||
|
- #2698 Fix return value in API.
|
||||||
|
- #2753 Was possible to upload and manage empty attachments.
|
||||||
|
- New accounts submitted through the API may include account number, BIC and IBAN data.
|
||||||
|
- New end point to support #2752.
|
||||||
|
|
||||||
## [4.8.1.4 (API 0.10.3)] - 2019-10-05
|
## [4.8.1.4 (API 0.10.3)] - 2019-10-05
|
||||||
|
|
||||||
Emergency fix because I borked the upgrade routine. I apologise for the inconvenience.
|
Emergency fix because I borked the upgrade routine. I apologise for the inconvenience.
|
||||||
|
@@ -125,8 +125,8 @@ return [
|
|||||||
'is_demo_site' => false,
|
'is_demo_site' => false,
|
||||||
],
|
],
|
||||||
'encryption' => null === env('USE_ENCRYPTION') || env('USE_ENCRYPTION') === true,
|
'encryption' => null === env('USE_ENCRYPTION') || env('USE_ENCRYPTION') === true,
|
||||||
'version' => '4.8.1.4',
|
'version' => '4.8.1.5',
|
||||||
'api_version' => '0.10.3',
|
'api_version' => '0.10.4',
|
||||||
'db_version' => 11,
|
'db_version' => 11,
|
||||||
'maxUploadSize' => 15242880,
|
'maxUploadSize' => 15242880,
|
||||||
'send_error_message' => env('SEND_ERROR_MESSAGE', true),
|
'send_error_message' => env('SEND_ERROR_MESSAGE', true),
|
||||||
|
@@ -426,7 +426,7 @@ Route::group(
|
|||||||
|
|
||||||
// special group for transaction journals
|
// special group for transaction journals
|
||||||
Route::group(
|
Route::group(
|
||||||
['namespace' => 'FireflyIII\Api\V1\Controllers', 'prefix' => 'journals',
|
['namespace' => 'FireflyIII\Api\V1\Controllers', 'prefix' => 'transaction-journals',
|
||||||
'as' => 'api.v1.journals.'],
|
'as' => 'api.v1.journals.'],
|
||||||
static function () {
|
static function () {
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user