From 1c22a6625db5bfa6312ced3aef692b584d4cd513 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Mon, 24 Aug 2026 08:50:58 -0700 Subject: [PATCH] release(local-notifications): 7.0.0 Published to npm as @nativescript/local-notifications@7.0.0. Ships #639, which switched the plugin to @nativescript-community/perms v3 and was merged after 6.4.0 was cut. Major bump because v3's check()/request() resolve to a Status string rather than the v2 [Status, boolean] tuple. Co-Authored-By: Claude Opus 5 (1M context) --- packages/local-notifications/CHANGELOG.md | 14 ++++++++++++++ packages/local-notifications/package.json | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/packages/local-notifications/CHANGELOG.md b/packages/local-notifications/CHANGELOG.md index 38da0587..b29681e7 100644 --- a/packages/local-notifications/CHANGELOG.md +++ b/packages/local-notifications/CHANGELOG.md @@ -1,3 +1,17 @@ +## 7.0.0 (2026-08-24) + +### ⚠️ Breaking Changes + +- **local-notifications:** now depends on `@nativescript-community/perms` v3, whose `check()`/`request()` resolve to a `Status` string instead of a `[Status, boolean]` tuple. Apps pinning perms v2 must upgrade. + +### 🚀 Features + +- **local-notifications:** use updated perms dependency + simplify authorization check ([#639](https://github.com/NativeScript/plugins/pull/639)) + +### ❤️ Thank You + +- 江程训 @cnclboss + ## 6.4.0 (2025-03-03) ### 🩹 Fixes diff --git a/packages/local-notifications/package.json b/packages/local-notifications/package.json index e24e61ff..72169281 100644 --- a/packages/local-notifications/package.json +++ b/packages/local-notifications/package.json @@ -1,6 +1,6 @@ { "name": "@nativescript/local-notifications", - "version": "6.4.0", + "version": "7.0.0", "description": "The Local Notifications plugin allows your app to show notifications when the app is not running.", "main": "index", "typings": "index.d.ts",