diff --git a/CHANGELOG.md b/CHANGELOG.md index 37474ba..0282eab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to the Daily Notification Plugin will be documented in this The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.0.1] - 2026-04-16 + +### Fixed + +- **Android**: Dual native prefetch with an empty `NotificationContent` list no longer maps to placeholder title/body or arms the chained notify alarm for that cycle. The cache stores `skipNotification`, `DualScheduleHelper` skips display for fresh payloads (and for stale cache when `relationship.fallbackBehavior` is `skip`), and `DualScheduleFetchRecovery` still schedules the next prefetch. + +### Added + +- **Android**: Unit tests (`DualScheduleHelperTest`) for dual empty-cache resolution and skip payload detection. + ## [3.0.0] - 2026-04-02 ### Added diff --git a/package-lock.json b/package-lock.json index 8f2b17c..af309f3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@timesafari/daily-notification-plugin", - "version": "3.0.0", + "version": "3.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@timesafari/daily-notification-plugin", - "version": "3.0.0", + "version": "3.0.1", "license": "MIT", "workspaces": [ "packages/*" diff --git a/package.json b/package.json index a5383c8..e602fbd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@timesafari/daily-notification-plugin", - "version": "3.0.0", + "version": "3.0.1", "description": "TimeSafari Daily Notification Plugin - Enterprise-grade daily notification functionality with dual scheduling, callback support, TTL-at-fire logic, and comprehensive observability across Mobile (Capacitor) and Desktop (Electron) platforms", "main": "dist/plugin.js", "module": "dist/esm/index.js",