mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-01 02:21:45 +00:00
Compare commits
8 Commits
develop-20
...
develop-20
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a3eb3bb1a4 | ||
|
|
bc5d52435e | ||
|
|
eda81ef7b5 | ||
|
|
5be32b1675 | ||
|
|
917b919503 | ||
|
|
43c38be0ed | ||
|
|
35e4ece205 | ||
|
|
b3421faf25 |
@@ -281,7 +281,9 @@ TRACKER_URL=
|
||||
# This is entirely optional of course. If you run into errors, I will gladly accept GitHub
|
||||
# issues or a forwared email message.
|
||||
#
|
||||
TRACK_ERRORS=false
|
||||
# If you set this to true, your installation will try to contact sentry.io when it runs into errors.
|
||||
#
|
||||
REPORT_ERRORS_ONLINE=false
|
||||
|
||||
#
|
||||
# Firefly III supports webhooks. These are security sensitive and must be enabled manually first.
|
||||
|
||||
@@ -36,7 +36,7 @@ class QueryRequest extends ApiRequest
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
'query' => sprintf('min:1|max:50|%s', $this->required),
|
||||
'query' => sprintf('min:0|max:50|%s', $this->required),
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
@@ -85,7 +85,7 @@ class Handler extends ExceptionHandler
|
||||
#[Override]
|
||||
public function register(): void
|
||||
{
|
||||
if (true === config('firefly.track_errors')) {
|
||||
if (true === config('firefly.report_errors_online')) {
|
||||
$this->reportable(function (Throwable $e): void {
|
||||
Integration::captureUnhandledException($e);
|
||||
});
|
||||
|
||||
@@ -78,8 +78,8 @@ return [
|
||||
'running_balance_column' => env('USE_RUNNING_BALANCE', false),
|
||||
// see cer.php for exchange rates feature flag.
|
||||
],
|
||||
'version' => 'develop/2025-11-03',
|
||||
'build_time' => 1762199520,
|
||||
'version' => 'develop/2025-11-04',
|
||||
'build_time' => 1762231951,
|
||||
'api_version' => '2.1.0', // field is no longer used.
|
||||
'db_version' => 28, // field is no longer used.
|
||||
|
||||
@@ -107,7 +107,7 @@ return [
|
||||
'demo_password' => env('DEMO_PASSWORD', ''),
|
||||
'tracker_site_id' => env('TRACKER_SITE_ID', ''),
|
||||
'tracker_url' => env('TRACKER_URL', ''),
|
||||
'track_errors' => env('TRACK_ERRORS', false),
|
||||
'report_errors_online' => env('REPORT_ERRORS_ONLINE', false),
|
||||
|
||||
// authentication settings
|
||||
'authentication_guard' => envNonEmpty('AUTHENTICATION_GUARD', 'web'),
|
||||
|
||||
Reference in New Issue
Block a user