Skip to content

Commit 1aeee20

Browse files
committed
release: v14.2.0
1 parent bdb7cd4 commit 1aeee20

4 files changed

Lines changed: 33 additions & 8 deletions

File tree

apps/admin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mx-admin/admin",
33
"private": true,
4-
"version": "8.4.14",
4+
"version": "8.4.15",
55
"scripts": {
66
"dev": "NODE_ENV=development vite --mode development --open --host",
77
"build": "NODE_ENV=production vite build --mode production",

apps/core/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## [14.2.0](https://github.com/mx-space/core/compare/v14.1.0...v14.2.0) (2026-08-18)
2+
3+
4+
### Bug Fixes
5+
6+
* **activity:** keep presence avatars without trusting client readerId ([9e0e9ab](https://github.com/mx-space/core/commit/9e0e9aba2fa72a5147c53fd4b937b4a674ce9ccf))
7+
8+
9+
### Features
10+
11+
* **push:** reader content and reply notification fan-out ([#2812](https://github.com/mx-space/core/issues/2812)) ([bdb7cd4](https://github.com/mx-space/core/commit/bdb7cd42629154f1ab206fb08c1b271dbe4bd306))
12+
113
## [14.1.0](https://github.com/mx-space/core/compare/v14.0.2...v14.1.0) (2026-08-16)
214

315

apps/core/RELEASE_NOTES.md

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,33 @@
11
## TL;DR
22

3-
Adds reader activity/report endpoints and reader account deletion for the Yohaku Me tab, plus a toggleable App Review demo account for Apple sign-in review.
3+
Ships reader content and comment-reply push for Yohaku, with APNs Communication metadata and a presence-avatar trust fix.
44

55
## Highlights
66

7-
Readers can now see their own comment history via `GET /comments/reader/me`, flag problematic comments with `POST /comments/:id/report`, and delete their own account through Expo sessions. Together these endpoints back the Yohaku app's Me tab and satisfy app-store account-deletion requirements without any admin involvement.
7+
Yohaku readers can now receive alerts when published posts, notes, or recently entries go live, and when someone replies to their comments. Core enriches those events with public titles, summaries, and tap paths, skips content that has no summary, and keeps private or unpublished work out of the payload. Comment replies carry sender metadata so iOS can render Communication Notifications.
88

9-
A new App Review demo account streamlines Apple sign-in review: enabling the toggle provisions a fixed reader identity (`app-review@users.invalid`) that can sign in via the email form even when password login is globally disabled. The account is reset daily by cron, its credentials surface in the admin panel, and disabling the toggle bans the account and cleans up its sessions.
9+
Device activation is a single public `POST /notifications/push/activate`. Relay owns per-device preferences; Core stores source metadata with an optional reader. Bindings are scoped to the owning installation, so a device can read, update, or revoke its own record without a session cookie.
10+
11+
Presence avatars no longer trust a client-supplied reader id. The gateway accepts an optional HTTPS image, resolves identity from session or socket, and returns only the public reader card.
1012

1113
## Changes
1214

1315
### Features
1416

15-
- Reader activity list (`GET /comments/reader/me`), public comment reporting (`POST /comments/:id/report`), and reader self-service account deletion for the Yohaku Me tab ([#2811](https://github.com/mx-space/core/pull/2811))
16-
- App Review demo account behind an admin toggle: idempotent provisioning, email sign-in bypass when password login is disabled, daily content/profile reset, and full cleanup on toggle-off ([#2811](https://github.com/mx-space/core/pull/2811))
17+
- Fan out published content and comment-reply alerts to Yohaku readers, including localized APNs payloads and mutable-content on replies ([#2812](https://github.com/mx-space/core/pull/2812))
18+
- Public push activation and installation-scoped Relay binding APIs, with optional reader association instead of reader-owned endpoints ([#2812](https://github.com/mx-space/core/pull/2812))
19+
20+
### Bug Fixes
21+
22+
- Keep presence avatars without trusting a client-supplied `readerId` ([9e0e9ab](https://github.com/mx-space/core/commit/9e0e9aba2fa72a5147c53fd4b937b4a674ce9ccf))
23+
- Block private content metadata from push payloads and reject encoded path traversal in notification targets ([#2812](https://github.com/mx-space/core/pull/2812))
24+
25+
## Upgrade Notes
26+
27+
Release-phase will apply migration `0033`, which makes `push_relay_bindings.owner_id` nullable and drops any leftover `push_reader_preferences` table. No extra operator SQL is required.
28+
29+
Comment-reply Communication Notifications also need a Push Relay that understands the enriched payload. Redeploy Relay alongside this Core tag before shipping the Yohaku client.
1730

1831
---
1932

20-
**Full Changelog**: https://github.com/mx-space/core/compare/v14.0.2...v14.1.0
33+
**Full Changelog**: https://github.com/mx-space/core/compare/v14.1.0...v14.2.0

apps/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mx-space/core",
3-
"version": "14.1.0",
3+
"version": "14.2.0",
44
"type": "module",
55
"private": true,
66
"engines": {

0 commit comments

Comments
 (0)