Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [0.0.3] - 2026-08-19

### Added
- **Notification state can arrive over a socket instead of being polled for.** `Notify.startRealtime(channel: ...)` subscribes to the notifiable's private broadcast channel and applies each `notification.created` frame straight to the stream, so a new notification shows up when the server sends it rather than up to 30 seconds later. The frame carries the whole row in the same shape `GET /notifications` returns, so no HTTP follows it.
- `Notify.stopRealtime()`, `Notify.isRealtime` and `Notify.isPolling`.
Expand Down
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Flutter push and database notification plugin for the Magic Framework. In-app polling + OneSignal (mobile/web) via `onesignal_flutter` package.

**Version:** 0.0.1 · **Dart:** >=3.6.0 · **Flutter:** >=3.27.0
**Version:** 0.0.3 · **Dart:** >=3.6.0 · **Flutter:** >=3.27.0

## Commands

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Managing notifications in Flutter means juggling multiple channels — database

```yaml
dependencies:
magic_notifications: ^0.0.2
magic_notifications: ^0.0.3
```

### 2. Install configuration
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: magic_notifications
description: Multi-channel notification system for Magic Framework. Supports database (in-app), push (OneSignal), and mail channels.
version: 0.0.2
version: 0.0.3
homepage: https://magic.fluttersdk.com/notifications
documentation: https://magic.fluttersdk.com/packages/notifications/getting-started/installation
repository: https://github.com/fluttersdk/magic_notifications
Expand Down