From c90229cb2cd1ea11a8a71f8ac4ee1e55903891ee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 Jan 2025 11:25:43 +0100 Subject: [PATCH 1/2] chore(deps): bump vormkracht10/filament-mails from 1.0.5 to 2.0.1 (#301) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 58b7630f..630d4607 100644 --- a/composer.json +++ b/composer.json @@ -48,7 +48,7 @@ "symfony/http-client": "^7.1.8", "symfony/mailgun-mailer": "^7.1", "torchlight/torchlight-laravel": "^0.6", - "vormkracht10/filament-mails": "^1.0", + "vormkracht10/filament-mails": "^2.0", "wire-elements/modal": "^2.0", "wire-elements/spotlight": "^2.0", "yarri/link-finder": "^2.7.10", From b869b36e8f0de20e031ad77ef106a01c7b027392 Mon Sep 17 00:00:00 2001 From: Endaman Stevy Date: Mon, 24 Mar 2025 16:09:20 +0100 Subject: [PATCH 2/2] fix(bug): LAR-184 resolve double thread notification send in telegram --- app/Providers/EventServiceProvider.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/Providers/EventServiceProvider.php b/app/Providers/EventServiceProvider.php index e7e51e32..1430832a 100644 --- a/app/Providers/EventServiceProvider.php +++ b/app/Providers/EventServiceProvider.php @@ -9,18 +9,15 @@ use App\Events\CommentWasAdded; use App\Events\ReplyWasCreated; use App\Events\SponsoringPaymentInitialize; -use App\Events\ThreadWasCreated; use App\Events\UserBannedEvent; use App\Events\UserUnbannedEvent; // use App\Listeners\SendCompanyEmailVerificationNotification; use App\Listeners\NotifyMentionedUsers; -use App\Listeners\PostNewThreadNotification; use App\Listeners\SendBanNotificationListener; use App\Listeners\SendNewArticleNotification; use App\Listeners\SendNewCommentNotification; // use App\Listeners\SendWelcomeCompanyNotification; use App\Listeners\SendNewReplyNotification; -use App\Listeners\SendNewThreadNotification; use App\Listeners\SendPaymentNotification; use App\Listeners\SendUnbanNotificationListener; use App\Listeners\SendWelcomeMailNotification; @@ -42,10 +39,6 @@ final class EventServiceProvider extends ServiceProvider SendNewReplyNotification::class, NotifyMentionedUsers::class, ], - ThreadWasCreated::class => [ - SendNewThreadNotification::class, - PostNewThreadNotification::class, - ], ArticleWasSubmittedForApproval::class => [ SendNewArticleNotification::class, ],