ultimate-jekyll-manager 1.7.0 → 1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/assets/js/core/auth.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
14
14
|
- `Fixed` for any bug fixes.
|
|
15
15
|
- `Security` in case of vulnerabilities.
|
|
16
16
|
|
|
17
|
+
---
|
|
18
|
+
## [1.7.1] - 2026-06-09
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
|
|
22
|
+
- **Auto-subscribe push notifications on authenticated page load** — calls `webManager.notifications().subscribe()` in the core auth listener after the consent guard passes. Fires for both fresh signups and returning sign-ins. Failure logs a warning and never blocks navigation.
|
|
23
|
+
|
|
17
24
|
---
|
|
18
25
|
## [1.7.0] - 2026-06-09
|
|
19
26
|
|
|
@@ -106,7 +106,9 @@ export default function () {
|
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
// Prompt for push notification subscription (fire-and-forget)
|
|
109
|
-
webManager.notifications().subscribe().catch(() => {
|
|
109
|
+
webManager.notifications().subscribe().catch((e) => {
|
|
110
|
+
console.warn('[Auth] Notification subscribe failed:', e.message);
|
|
111
|
+
});
|
|
110
112
|
|
|
111
113
|
// Check if page requires user to be unauthenticated (e.g., signin page)
|
|
112
114
|
if (policy === 'unauthenticated') {
|