Skip to content

Releases: teamnovu/laravel-notification-log

v2.0.0

18 Aug 23:56
Compare
Choose a tag to compare

Full Changelog: v1.3.3...v2.0.0

v1.3.3

12 Dec 11:53
Compare
Choose a tag to compare

v1.3.2

21 Oct 15:02
Compare
Choose a tag to compare

Full Changelog: v1.3.1...v1.3.2

v1.3.1

17 Oct 18:42
Compare
Choose a tag to compare

Full Changelog: v1.3.0...v1.3.1

v1.3.0

17 Oct 18:16
Compare
Choose a tag to compare

Breaking Change

You now need to apply the following Interface and Trait so a Notification can be logged:

use Teamnovu\LaravelNotificationLog\Concerns\LogNotification;
use Teamnovu\LaravelNotificationLog\Contracts\ShouldLogNotification;

class DummyNotification extends Notification implements ShouldLogNotification
{
    use LogNotification;

   // ...
}

Full Changelog: v1.2.0...v1.3.0

v1.2.0

17 Oct 16:09
Compare
Choose a tag to compare

What's Changed

  • Add way to resolve messages of notifications for several Notification Channels like sms, telegram, webpush and so on... by @okaufmann in #1

Breaking Changes

You need to update some Database Columns with the following migration.

Schema::table('sent_notification_logs', function (Blueprint $table) {
    $table->text('response')->nullable()->change();

    $table->after('response', function (Blueprint $table) {
        $table->json('message')->nullable();
        $table->string('status')->nullable();
    });
});

New Contributors

Full Changelog: v1.1.4...v1.2.0

v1.1.4

12 Oct 13:51
Compare
Choose a tag to compare

Full Changelog: v1.1.3...v1.1.4

v1.1.3

11 Oct 11:13
Compare
Choose a tag to compare

Full Changelog: v1.1.2...v1.1.3

v1.1.2

11 Oct 11:13
Compare
Choose a tag to compare

Full Changelog: v1.1.1...v1.1.2

v1.1.1

11 Oct 11:12
Compare
Choose a tag to compare

Full Changelog: v1.1.0...v1.1.1