chore(release): release 4.0.1 with iOS Daily Reminder identifier separation

This commit is contained in:
Jose Olarte III
2026-06-09 19:30:05 +08:00
parent 9e81c89471
commit 5703d2a1e3
3 changed files with 14 additions and 3 deletions

View File

@@ -5,6 +5,17 @@ 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).
## [4.0.1] - 2026-06-09
### Fixed
- **iOS**: Daily Reminders now use `daily_<reminderId>` UNNotificationCenter identifiers instead of sharing `api_<epochMillis>` with batch API notifications. `clearApiNotifications` no longer removes new daily reminders.
- **iOS**: Legacy `api_*` daily-reminder pending requests are cancelled on schedule/cancel/update; `getScheduledReminders` matches both `daily_*` and transitional legacy ids.
### Changed
- **TypeScript**: JSDoc documents separate iOS identifier families (`daily_*` vs `api_*`).
## [4.0.0] - 2026-06-09
### Changed

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@timesafari/daily-notification-plugin",
"version": "4.0.0",
"version": "4.0.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@timesafari/daily-notification-plugin",
"version": "4.0.0",
"version": "4.0.1",
"license": "MIT",
"workspaces": [
"packages/*"

View File

@@ -1,6 +1,6 @@
{
"name": "@timesafari/daily-notification-plugin",
"version": "4.0.0",
"version": "4.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",