Update meta files.

This commit is contained in:
James Cole
2020-06-22 18:08:23 +02:00
parent bcb9794315
commit c251ca5daf
5 changed files with 209 additions and 171 deletions

View File

@@ -159,7 +159,7 @@ class DecryptDatabase extends Command
if ('The MAC is invalid.' === $e->getMessage()) {
throw new FireflyException($e->getMessage()); // @codeCoverageIgnore
}
Log::debug(sprintf('Could not decrypt. %s', $e->getMessage()));
//Log::debug(sprintf('Could not decrypt. %s', $e->getMessage()));
}
return $value;

View File

@@ -52,8 +52,6 @@ class AuthServiceProvider extends ServiceProvider
*/
public function boot(): void
{
Log::debug('Boot() of AuthServiceProvider');
Auth::provider(
'remote_user_provider', function ($app, array $config) {
//Log::debug('Creating remote_user_provider in Closure');

View File

@@ -121,7 +121,7 @@ class AttachmentRepository implements AttachmentRepositoryInterface
try {
$unencryptedContent = Crypt::decrypt($encryptedContent); // verified
} catch (DecryptException $e) {
Log::debug(sprintf('Could not decrypt: %e', $e->getMessage()));
//Log::debug(sprintf('Could not decrypt: %e', $e->getMessage()));
$unencryptedContent = $encryptedContent;
}
}

View File

@@ -7,16 +7,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
Several alpha and beta releases preceded this release.
- 5.3.0-alpha.1 on 2020-06-xx
- 5.3.0-alpha.1 on 2020-06-22
### Added
- Piggy banks can be divided over groups. Groups can be sorted on a separate page. This may prove to be useful to organize piggy banks. The feature will
expand to other objects in the future.
- [Issue 3392](https://github.com/firefly-iii/firefly-iii/issues/3392) Notes will be included in the export.
- [Issue 3184](https://github.com/firefly-iii/firefly-iii/issues/3184) You can now use the `REMOTE_USER` field to authenticate. Read [the documentation](https://docs.firefly-iii.org/advanced-installation/authentication
#remote-user) carefully.
- [Issue 3184](https://github.com/firefly-iii/firefly-iii/issues/3184) You can now use the `REMOTE_USER` field to authenticate. Read [the documentation](https://docs.firefly-iii.org/advanced-installation/authentication#remote-user) carefully.
- [Issue 3403](https://github.com/firefly-iii/firefly-iii/issues/3403) More triggers have been added that respond to the date of a transaction. Read [the documentation](https://docs.firefly-iii.org/advanced-concepts/rules)
- You can now add an attachment to recurring transactions.
- You can now add an attachments to recurring transactions.
### Changed
- Firefly III now requires **PHP 7.4**

367
composer.lock generated

File diff suppressed because it is too large Load Diff