native-update 2.0.0 → 3.1.0
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/Readme.md +28 -14
- package/android/manifest-additions.xml +28 -0
- package/android/src/main/AndroidManifest.xml +3 -7
- package/android/src/main/java/com/aoneahsan/nativeupdate/BackgroundNotificationManager.kt +21 -13
- package/android/src/main/java/com/aoneahsan/nativeupdate/LiveUpdatePlugin.kt +196 -29
- package/android/src/main/java/com/aoneahsan/nativeupdate/NativeUpdatePlugin.kt +21 -36
- package/cli/AGENTS.md +15 -1
- package/cli/CLAUDE.md +15 -1
- package/cli/commands/backend-create.js +56 -15
- package/cli/commands/bundle-create.js +39 -7
- package/cli/commands/monitor.js +72 -51
- package/cli/index.js +10 -24
- package/cli/package.json +11 -3
- package/dist/esm/app-review/app-review-manager.js +0 -1
- package/dist/esm/app-review/index.js +0 -1
- package/dist/esm/app-review/platform-review-handler.js +0 -1
- package/dist/esm/app-review/review-conditions-checker.js +0 -1
- package/dist/esm/app-review/review-rate-limiter.js +0 -1
- package/dist/esm/app-review/types.js +0 -1
- package/dist/esm/app-update/app-update-checker.js +0 -1
- package/dist/esm/app-update/app-update-installer.d.ts +1 -0
- package/dist/esm/app-update/app-update-installer.js +19 -8
- package/dist/esm/app-update/app-update-manager.js +0 -1
- package/dist/esm/app-update/app-update-notifier.js +0 -1
- package/dist/esm/app-update/index.js +0 -1
- package/dist/esm/app-update/platform-app-update.js +12 -3
- package/dist/esm/app-update/types.js +0 -1
- package/dist/esm/background-update/background-scheduler.js +0 -1
- package/dist/esm/background-update/index.js +0 -1
- package/dist/esm/background-update/notification-manager.js +0 -1
- package/dist/esm/config/support.js +0 -1
- package/dist/esm/core/analytics.d.ts +13 -0
- package/dist/esm/core/analytics.js +15 -1
- package/dist/esm/core/cache-manager.js +0 -1
- package/dist/esm/core/config.d.ts +0 -15
- package/dist/esm/core/config.js +0 -4
- package/dist/esm/core/errors.d.ts +1 -0
- package/dist/esm/core/errors.js +1 -1
- package/dist/esm/core/event-emitter.d.ts +0 -3
- package/dist/esm/core/event-emitter.js +8 -3
- package/dist/esm/core/logger.js +0 -1
- package/dist/esm/core/performance.js +0 -1
- package/dist/esm/core/plugin-manager.js +3 -1
- package/dist/esm/core/security.d.ts +11 -0
- package/dist/esm/core/security.js +27 -1
- package/dist/esm/definitions.d.ts +0 -11
- package/dist/esm/definitions.js +0 -1
- package/dist/esm/index.d.ts +3 -2
- package/dist/esm/index.js +3 -1
- package/dist/esm/live-update/bundle-manager.d.ts +8 -0
- package/dist/esm/live-update/bundle-manager.js +20 -1
- package/dist/esm/live-update/certificate-pinning.js +0 -1
- package/dist/esm/live-update/delta-processor.d.ts +1 -1
- package/dist/esm/live-update/delta-processor.js +3 -1
- package/dist/esm/live-update/download-manager.js +9 -2
- package/dist/esm/live-update/rollout-checker.d.ts +1 -1
- package/dist/esm/live-update/rollout-checker.js +5 -6
- package/dist/esm/live-update/update-manager.js +0 -1
- package/dist/esm/live-update/version-manager.d.ts +0 -12
- package/dist/esm/live-update/version-manager.js +0 -68
- package/dist/esm/plugin.js +69 -43
- package/dist/esm/security/crypto.js +11 -7
- package/dist/esm/security/validator.js +0 -1
- package/dist/esm/types/rollout.d.ts +85 -0
- package/dist/esm/types/rollout.js +25 -0
- package/dist/esm/web.d.ts +8 -0
- package/dist/esm/web.js +148 -54
- package/dist/plugin.cjs.js +1 -2
- package/dist/plugin.esm.js +1 -2
- package/dist/plugin.js +2 -3
- package/docs/CHANGELOG.md +124 -0
- package/docs/CLAUDE.md +1 -1
- package/docs/MANUAL-TASKS.md +17 -0
- package/docs/MARKETING_WEBSITE_TRACKER.md +18 -2
- package/docs/MIGRATION.md +83 -0
- package/docs/PACKAGES.md +167 -0
- package/docs/PERFORMANCE.md +110 -0
- package/docs/PROJECT_COMPLETION_TRACKER.md +4 -35
- package/docs/README.md +0 -1
- package/docs/REMAINING_FEATURES.md +123 -76
- package/docs/ROADMAP.md +200 -120
- package/docs/SECURITY-IF-REPO-PUBLIC.md +232 -0
- package/docs/TESTING_REQUIREMENTS.md +1 -112
- package/docs/ai-knowledge-base/00-project-profile.md +38 -0
- package/docs/ai-knowledge-base/01-features.md +46 -0
- package/docs/ai-knowledge-base/02-routes.md +72 -0
- package/docs/ai-knowledge-base/03-tech-stack.md +57 -0
- package/docs/ai-knowledge-base/README.md +23 -0
- package/docs/analytics-tracking.md +37 -0
- package/docs/capacitor-official-plugins.md +46 -0
- package/docs/capawesome-plugins.md +29 -0
- package/docs/deployment/HOSTINGER_DEPLOY.md +75 -34
- package/docs/deployment/PRODUCTION-DEPLOY-CHECKLIST.md +184 -0
- package/docs/docs-site/plan.md +201 -0
- package/docs/docs-site/scope.md +127 -0
- package/docs/docs-site/tracker.json +235 -0
- package/docs/error-handling-tracking.md +37 -0
- package/docs/guides/testing-guide.md +15 -41
- package/docs/package-audit.md +41 -0
- package/docs/play-store/ASO-METADATA.md +5 -0
- package/docs/play-store/DATA-SAFETY.md +5 -0
- package/docs/play-store/DECLARATIONS.md +5 -0
- package/docs/play-store/README.md +27 -0
- package/docs/play-store/RELEASE-NOTES.md +99 -0
- package/docs/play-store/RELEASE-STEPS.md +6 -0
- package/docs/play-store/STORE-LISTING.md +7 -0
- package/docs/play-store/SUBMISSION-CHECKLIST.md +5 -0
- package/docs/production-readiness.md +1 -1
- package/docs/project-audit/2026-05-16/00-FINALIZATION-PLAN.md +123 -0
- package/docs/project-audit/2026-05-16/01-BATCH-PLAN.md +227 -0
- package/docs/project-audit/2026-05-16/02-AUDIT-FINDINGS.md +144 -0
- package/docs/project-audit/2026-05-16/sessions/batch-01.md +42 -0
- package/docs/project-audit/2026-05-16/sessions/batch-02.md +74 -0
- package/docs/project-audit/2026-05-16/sessions/batch-03.md +71 -0
- package/docs/project-audit/2026-05-16/sessions/batch-04.md +88 -0
- package/docs/project-audit/2026-05-16/sessions/batch-05.md +63 -0
- package/docs/project-audit/2026-05-16/sessions/batch-06.md +103 -0
- package/docs/project-audit/2026-05-16/sessions/batch-07.md +61 -0
- package/docs/project-audit/2026-05-16/sessions/batch-08.md +101 -0
- package/docs/project-audit/2026-05-16/sessions/batch-09.md +105 -0
- package/docs/project-audit/2026-05-16/sessions/batch-10.md +102 -0
- package/docs/project-audit/AUDIT-HISTORY.md +74 -0
- package/docs/project-audit/BATCH-PLAN.md +168 -0
- package/docs/project-audit/MARKETING-WEBSITE-FINDINGS-2026-05-11.md +73 -0
- package/docs/project-audit/PRODUCTION-READINESS-AUDIT-2026-05-08.md +275 -0
- package/docs/project-finalization/00-tracker.json +60 -0
- package/docs/project-knowledge-base/01-system-overview.md +39 -30
- package/docs/project-knowledge-base/02-routes-pages-forms-users.md +87 -81
- package/docs/project-knowledge-base/03-tech-stack-modules-services.md +140 -108
- package/docs/project-knowledge-base/04-data-models-integrations.md +191 -254
- package/docs/project-knowledge-base/05-docs-corpus-inventory.md +83 -20
- package/docs/project-knowledge-base/06-operations-testing-legal-content.md +67 -29
- package/docs/project-knowledge-base/README.md +27 -14
- package/docs/project-profiles/native-update-capacitor-update-platform-project-profile-last-updated-2026-05-19.md +81 -0
- package/docs/rules-tracker.md +102 -0
- package/docs/security/PRE-LAUNCH-PENTEST-CHECKLIST.md +116 -0
- package/docs/social-media-marketing/README.md +81 -0
- package/docs/social-media-marketing/posts-batch-01.md +613 -0
- package/docs/social-media-marketing/posts-batch-02.md +528 -0
- package/docs/social-media-marketing/whatsapp-messages-batch-01.md +458 -0
- package/docs/social-media-marketing/whatsapp-status-batch-01.md +355 -0
- package/docs/tracking/finalization-2026-05-16-tracker.json +346 -0
- package/docs/tracking/full-audit-tracker.json +121 -0
- package/docs/tracking/production-readiness-audit-tracker.json +429 -0
- package/ios/Plugin/BackgroundUpdate/BackgroundUpdatePlugin.swift +16 -3
- package/ios/Plugin/LiveUpdate/LiveUpdatePlugin.swift +71 -47
- package/ios/Plugin/NativeUpdatePlugin.swift +14 -9
- package/package.json +29 -29
- package/cli/node_modules/.yarn-integrity +0 -16
- package/cli/node_modules/commander/LICENSE +0 -22
- package/cli/node_modules/commander/Readme.md +0 -1148
- package/cli/node_modules/commander/esm.mjs +0 -16
- package/cli/node_modules/commander/index.js +0 -26
- package/cli/node_modules/commander/lib/argument.js +0 -145
- package/cli/node_modules/commander/lib/command.js +0 -2179
- package/cli/node_modules/commander/lib/error.js +0 -43
- package/cli/node_modules/commander/lib/help.js +0 -462
- package/cli/node_modules/commander/lib/option.js +0 -329
- package/cli/node_modules/commander/lib/suggestSimilar.js +0 -100
- package/cli/node_modules/commander/package-support.json +0 -16
- package/cli/node_modules/commander/package.json +0 -80
- package/cli/node_modules/commander/typings/esm.d.mts +0 -3
- package/cli/node_modules/commander/typings/index.d.ts +0 -884
- package/cli/yarn.lock +0 -8
- package/dist/esm/__tests__/bundle-manager.test.d.ts +0 -1
- package/dist/esm/__tests__/bundle-manager.test.js +0 -151
- package/dist/esm/__tests__/bundle-manager.test.js.map +0 -1
- package/dist/esm/__tests__/config.test.d.ts +0 -1
- package/dist/esm/__tests__/config.test.js +0 -70
- package/dist/esm/__tests__/config.test.js.map +0 -1
- package/dist/esm/__tests__/delta-processor.test.d.ts +0 -1
- package/dist/esm/__tests__/delta-processor.test.js +0 -77
- package/dist/esm/__tests__/delta-processor.test.js.map +0 -1
- package/dist/esm/__tests__/firestore-schema.test.d.ts +0 -1
- package/dist/esm/__tests__/firestore-schema.test.js +0 -74
- package/dist/esm/__tests__/firestore-schema.test.js.map +0 -1
- package/dist/esm/__tests__/integration.test.d.ts +0 -1
- package/dist/esm/__tests__/integration.test.js +0 -78
- package/dist/esm/__tests__/integration.test.js.map +0 -1
- package/dist/esm/__tests__/manifest-reader.test.d.ts +0 -1
- package/dist/esm/__tests__/manifest-reader.test.js +0 -271
- package/dist/esm/__tests__/manifest-reader.test.js.map +0 -1
- package/dist/esm/__tests__/rollout-checker.test.d.ts +0 -1
- package/dist/esm/__tests__/rollout-checker.test.js +0 -210
- package/dist/esm/__tests__/rollout-checker.test.js.map +0 -1
- package/dist/esm/__tests__/security-enforcement.test.d.ts +0 -1
- package/dist/esm/__tests__/security-enforcement.test.js +0 -95
- package/dist/esm/__tests__/security-enforcement.test.js.map +0 -1
- package/dist/esm/__tests__/security.test.d.ts +0 -1
- package/dist/esm/__tests__/security.test.js +0 -54
- package/dist/esm/__tests__/security.test.js.map +0 -1
- package/dist/esm/__tests__/version-manager.test.d.ts +0 -1
- package/dist/esm/__tests__/version-manager.test.js +0 -45
- package/dist/esm/__tests__/version-manager.test.js.map +0 -1
- package/dist/esm/app-review/app-review-manager.js.map +0 -1
- package/dist/esm/app-review/index.js.map +0 -1
- package/dist/esm/app-review/platform-review-handler.js.map +0 -1
- package/dist/esm/app-review/review-conditions-checker.js.map +0 -1
- package/dist/esm/app-review/review-rate-limiter.js.map +0 -1
- package/dist/esm/app-review/types.js.map +0 -1
- package/dist/esm/app-update/app-update-checker.js.map +0 -1
- package/dist/esm/app-update/app-update-installer.js.map +0 -1
- package/dist/esm/app-update/app-update-manager.js.map +0 -1
- package/dist/esm/app-update/app-update-notifier.js.map +0 -1
- package/dist/esm/app-update/index.js.map +0 -1
- package/dist/esm/app-update/platform-app-update.js.map +0 -1
- package/dist/esm/app-update/types.js.map +0 -1
- package/dist/esm/background-update/background-scheduler.js.map +0 -1
- package/dist/esm/background-update/index.js.map +0 -1
- package/dist/esm/background-update/notification-manager.js.map +0 -1
- package/dist/esm/config/support.js.map +0 -1
- package/dist/esm/core/analytics.js.map +0 -1
- package/dist/esm/core/cache-manager.js.map +0 -1
- package/dist/esm/core/config.js.map +0 -1
- package/dist/esm/core/errors.js.map +0 -1
- package/dist/esm/core/event-emitter.js.map +0 -1
- package/dist/esm/core/logger.js.map +0 -1
- package/dist/esm/core/performance.js.map +0 -1
- package/dist/esm/core/plugin-manager.js.map +0 -1
- package/dist/esm/core/security.js.map +0 -1
- package/dist/esm/definitions.js.map +0 -1
- package/dist/esm/firestore/firestore-client.d.ts +0 -109
- package/dist/esm/firestore/firestore-client.js +0 -264
- package/dist/esm/firestore/firestore-client.js.map +0 -1
- package/dist/esm/firestore/index.d.ts +0 -11
- package/dist/esm/firestore/index.js +0 -11
- package/dist/esm/firestore/index.js.map +0 -1
- package/dist/esm/firestore/manifest-reader.d.ts +0 -87
- package/dist/esm/firestore/manifest-reader.js +0 -294
- package/dist/esm/firestore/manifest-reader.js.map +0 -1
- package/dist/esm/firestore/schema.d.ts +0 -507
- package/dist/esm/firestore/schema.js +0 -73
- package/dist/esm/firestore/schema.js.map +0 -1
- package/dist/esm/index.js.map +0 -1
- package/dist/esm/live-update/bundle-manager.js.map +0 -1
- package/dist/esm/live-update/certificate-pinning.js.map +0 -1
- package/dist/esm/live-update/delta-processor.js.map +0 -1
- package/dist/esm/live-update/download-manager.js.map +0 -1
- package/dist/esm/live-update/rollout-checker.js.map +0 -1
- package/dist/esm/live-update/update-manager.js.map +0 -1
- package/dist/esm/live-update/version-manager.js.map +0 -1
- package/dist/esm/plugin.js.map +0 -1
- package/dist/esm/security/crypto.js.map +0 -1
- package/dist/esm/security/validator.js.map +0 -1
- package/dist/esm/web.js.map +0 -1
- package/dist/plugin.cjs.js.map +0 -1
- package/dist/plugin.esm.js.map +0 -1
- package/dist/plugin.js.map +0 -1
- package/docs/FIREBASE_INTEGRATION_TRACKER.md +0 -321
- package/docs/FIREBASE_QUERIES_AND_INDEXES_AUDIT.md +0 -221
- package/docs/examples/firebase-backend-example.md +0 -27
- package/docs/features/laravel-nova-backend/credentials.ignore.md +0 -34
- package/docs/guides/no-cost-backend-implementation-plan.md +0 -77
- package/docs/guides/no-cost-firestore-google-drive-backend.md +0 -60
- package/docs/project-profiles/native-update-capacitor-update-platform-project-profile-last-updated-2026-03-16.md +0 -454
- package/docs/project-profiles/native-update-capacitor-update-platform-project-profile-last-updated-2026-03-24.md +0 -66
- package/docs/project-profiles/native-update-capacitor-update-platform-project-profile-last-updated-2026-03-25.md +0 -67
- /package/docs/{MARKETING_WEBSITE_PLAN.md → archive/MARKETING_WEBSITE_PLAN.md} +0 -0
|
@@ -1,145 +1,192 @@
|
|
|
1
1
|
# Remaining Features for Production Readiness
|
|
2
2
|
|
|
3
|
-
**Last Updated:** 2026-
|
|
4
|
-
**Status:** ✅
|
|
3
|
+
**Last Updated:** 2026-06-22
|
|
4
|
+
**Status:** ✅ Production Ready — Play-Store-publishable end-to-end as of 2026-05-16. Core features complete. Optional enhancements listed below. Finalization re-verified 2026-06-22 (plugin + website + docs-site builds all green; no automatable gaps remain).
|
|
5
5
|
|
|
6
|
-
This document tracks remaining optional work and future enhancements.
|
|
6
|
+
This document tracks remaining optional work and future enhancements. It is refreshed alongside major releases; for the authoritative "what shipped when" timeline see the root `CLAUDE.md` Audit Record + `docs/CHANGELOG.md`.
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
-
## ✅ COMPLETED Features
|
|
10
|
+
## ✅ COMPLETED Features (as of 2026-05-18)
|
|
11
11
|
|
|
12
12
|
### Backend Infrastructure ✅
|
|
13
|
-
|
|
14
|
-
- [x]
|
|
15
|
-
- [x]
|
|
16
|
-
- [x]
|
|
17
|
-
- [x]
|
|
13
|
+
|
|
14
|
+
- [x] Laravel 13 + Nova 5 SaaS backend (`backend/`) — the only backend after v3.0.0
|
|
15
|
+
- [x] MySQL persistence (single source of truth)
|
|
16
|
+
- [x] Google Drive bundle storage (server-side OAuth; encrypted tokens at rest)
|
|
17
|
+
- [x] Identity via Laravel Socialite (Google OAuth)
|
|
18
|
+
- [x] Sanctum personal access tokens for dashboard auth
|
|
19
|
+
- [x] `spatie/laravel-permission` RBAC (`super-admin`, `admin`, `user` roles + per-route `can:` middleware + `Gate::before` super-admin bypass)
|
|
20
|
+
- [x] Mobile API plane (`/api/v1/*`) with per-app `ValidateApiKey` middleware
|
|
18
21
|
- [x] Analytics endpoints
|
|
22
|
+
- [x] PayPal webhook + Stripe subscription model
|
|
23
|
+
- [x] FormRequest validators (UpdateBuildRequest + Create/Update FormRequests for App, ApiKey, SigningKey)
|
|
24
|
+
- [x] Backend policies + Nova canSee guards
|
|
25
|
+
- [x] env-driven CORS allowlist (`backend/config/cors.php`)
|
|
19
26
|
|
|
20
27
|
### Native Platform Implementation ✅
|
|
21
|
-
|
|
22
|
-
- [x] Complete
|
|
28
|
+
|
|
29
|
+
- [x] Complete iOS implementation (Swift)
|
|
30
|
+
- [x] Complete Android implementation (Kotlin; Play Core update + Play Review + WorkManager background)
|
|
23
31
|
- [x] Platform-specific error handling
|
|
24
|
-
- [x] Background update services
|
|
25
|
-
- [x] App store integration (Play Core, StoreKit)
|
|
32
|
+
- [x] Background update services (BGTaskScheduler / WorkManager)
|
|
33
|
+
- [x] App store integration (Play Core, StoreKit `SKStoreReviewController`)
|
|
34
|
+
|
|
35
|
+
### Testing Suite ✅
|
|
26
36
|
|
|
27
|
-
|
|
28
|
-
- [x] Unit tests for
|
|
29
|
-
- [x]
|
|
30
|
-
- [x] Unit tests for iOS native code
|
|
31
|
-
- [x] Unit tests for Android native code
|
|
32
|
-
- [x] E2E testing scenarios
|
|
37
|
+
- [x] Backend Pest/PHPUnit tests covering OAuth + Sanctum + Spatie + UpdateBuildRequest + PayPal webhook + BundleUpload + UserLicense (**134/134 passing**)
|
|
38
|
+
- [x] Unit tests for iOS native code (XCTest)
|
|
39
|
+
- [x] Unit tests for Android native code (JUnit/Kotlin)
|
|
33
40
|
|
|
34
41
|
### Security Implementation ✅
|
|
35
|
-
|
|
42
|
+
|
|
43
|
+
- [x] Client-side signature verification (RSA-SHA256)
|
|
36
44
|
- [x] Certificate pinning architecture
|
|
37
45
|
- [x] SHA-256 checksum verification
|
|
38
|
-
- [x] RSA/
|
|
46
|
+
- [x] RSA-2048 / RSA-4096 / EC P-256 / EC P-384 signature support
|
|
39
47
|
- [x] HTTPS enforcement
|
|
48
|
+
- [x] Bundle signing service (CLI tools)
|
|
49
|
+
- [x] Public/private key generation
|
|
50
|
+
- [x] Pre-launch DIY pentest checklist (`docs/security/PRE-LAUNCH-PENTEST-CHECKLIST.md`) covering 10 sections + 9 specific attack paths
|
|
51
|
+
- [x] Encrypted Drive OAuth token storage (Laravel encrypter)
|
|
52
|
+
- [x] Hashed-at-rest Sanctum tokens
|
|
40
53
|
|
|
41
54
|
### Developer Tools ✅
|
|
42
|
-
|
|
55
|
+
|
|
56
|
+
- [x] Complete CLI package (8 commands: `init`, `bundle-create`, `bundle-sign`, `bundle-verify`, `keys-generate`, `backend-create`, `server-start`, `monitor`)
|
|
43
57
|
- [x] Version management system
|
|
44
58
|
- [x] Bundle creation and signing
|
|
45
59
|
- [x] Local testing server
|
|
46
|
-
- [x] Monitor utility
|
|
60
|
+
- [x] Monitor utility (interval+spinner cleanup, signal handlers, failure bail)
|
|
47
61
|
|
|
48
62
|
### Documentation ✅
|
|
49
|
-
|
|
63
|
+
|
|
64
|
+
- [x] Complete API reference (`docs/api/`)
|
|
50
65
|
- [x] Platform-specific guides
|
|
51
|
-
- [x] Security implementation guide
|
|
52
|
-
- [x] Migration guide
|
|
66
|
+
- [x] Security implementation guide + pentest checklist
|
|
67
|
+
- [x] Migration guide (incl. v2 → v3.0.0 + 2026-05-11 auth-swap notes)
|
|
53
68
|
- [x] Getting started guides
|
|
69
|
+
- [x] Public Docusaurus docs site (`native-update-docs/` sibling repo on Firebase Hosting — 58 pages, ~76k words, full Diátaxis coverage; 7-day refresh cooldown)
|
|
54
70
|
|
|
55
71
|
### Example Implementations ✅
|
|
56
|
-
|
|
57
|
-
- [x]
|
|
58
|
-
- [x]
|
|
72
|
+
|
|
73
|
+
- [x] React + Capacitor example app (with capability cards for app-update / app-review / background-update)
|
|
74
|
+
- [x] Node.js + Express backend example
|
|
75
|
+
|
|
76
|
+
### CI/CD ✅
|
|
77
|
+
|
|
78
|
+
- [x] `.github/workflows/ci.yml` — yarn-based CI on every PR
|
|
79
|
+
- [x] `.github/workflows/release.yml` — tag-driven npm publish (with provenance) + GitHub Release
|
|
80
|
+
- [x] `.github/workflows/example-bundle.yml` — release+manual+weekly-cron — build example app, sign, attach signed zip + .sig + metadata to GitHub Release
|
|
81
|
+
|
|
82
|
+
### Marketing Website + Dashboard ✅
|
|
83
|
+
|
|
84
|
+
- [x] React 19 + Vite 7 + Tailwind v4 + TanStack Query + Radix primitives
|
|
85
|
+
- [x] Capacitor-wrapped for Play Store distribution
|
|
86
|
+
- [x] All legal pages (Privacy, Terms, Security, Cookies, Data Deletion) rewritten for the Sanctum stack
|
|
87
|
+
- [x] SEO/AEO: per-route static HTML prerender; 30+ AI-bot allow list in robots.txt; llms.txt / llms-full.txt / ai.txt / humans.txt / security.txt / machine-readable pricing.md
|
|
88
|
+
- [x] Per-route JSON-LD (WebSite + Organization + SoftwareApplication + FAQPage + HowTo + Article + Product)
|
|
89
|
+
- [x] Observability: Sentry + Microsoft Clarity + Amplitude (page-view auto-track; silently skip when env keys absent)
|
|
90
|
+
|
|
91
|
+
### Android Release Readiness ✅ (2026-05-16)
|
|
92
|
+
|
|
93
|
+
- [x] `signingConfigs.release` wired (keystore path, store password, key alias, key password from env)
|
|
94
|
+
- [x] ProGuard/R8 enabled with sensible Capacitor-aware rules
|
|
95
|
+
- [x] `network_security_config.xml` (HTTPS-only outside debug; localhost cleartext exception for emulator/device dev)
|
|
96
|
+
- [x] Branded launcher icons (15 PNGs across all densities + adaptive)
|
|
97
|
+
- [x] Branded splash assets (11 PNGs)
|
|
98
|
+
- [x] 3 Play Store graphics (feature graphic, promo graphic, TV banner) rendered from SVG via rsvg-convert
|
|
99
|
+
- [x] 10-section BUILD_FOR_PLAY_STORE.md runbook
|
|
100
|
+
- [x] screenshots/CAPTURE-GUIDE.md
|
|
101
|
+
- [x] Play Store full-description.md + data-safety.md written for the Sanctum stack
|
|
59
102
|
|
|
60
103
|
---
|
|
61
104
|
|
|
62
105
|
## 🟡 Optional Enhancement Features
|
|
63
106
|
|
|
64
|
-
### 1. Advanced
|
|
65
|
-
- [x] iOS XCTest implementation
|
|
66
|
-
- [x] Android JUnit tests
|
|
67
|
-
- [x] E2E test suite with Detox/Appium/Jest
|
|
68
|
-
- [ ] Performance benchmarking suite
|
|
69
|
-
- [ ] Security vulnerability testing
|
|
107
|
+
### 1. Advanced Update Features (Optional)
|
|
70
108
|
|
|
71
|
-
|
|
72
|
-
- [ ] Delta updates WASM optimization (placeholder exists)
|
|
109
|
+
- [ ] Delta updates WASM optimization (placeholder exists; not yet wired)
|
|
73
110
|
- [ ] A/B testing support
|
|
74
|
-
- [ ]
|
|
75
|
-
- [ ] Update scheduling
|
|
111
|
+
- [ ] Update scheduling (calendar-based)
|
|
76
112
|
- [ ] Geographic targeting
|
|
77
113
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
- [ ]
|
|
83
|
-
- [ ]
|
|
114
|
+
(Note: percentage rollouts + pause/resume + targetSegments JSON column are already shipped on the `builds` table.)
|
|
115
|
+
|
|
116
|
+
### 2. Enterprise Features (Optional)
|
|
117
|
+
|
|
118
|
+
- [ ] Multi-tenant SaaS hardening beyond current single-user model (sub-team / org-account / shared ownership)
|
|
119
|
+
- [ ] Enterprise SSO integration (SAML / OIDC providers beyond Google)
|
|
120
|
+
- [ ] Advanced audit logging UI (raw events already persist via `analytics_events` + Nova; UI surfaces TBD)
|
|
121
|
+
- [ ] Custom branding options for white-label SaaS
|
|
122
|
+
- [ ] SLA monitoring + uptime page
|
|
123
|
+
|
|
124
|
+
### 3. Additional Framework Support (Optional)
|
|
84
125
|
|
|
85
|
-
### 4. Additional Framework Support (Optional)
|
|
86
126
|
- [ ] Vue example app
|
|
87
127
|
- [ ] Angular example app
|
|
88
128
|
- [ ] Svelte example app
|
|
89
129
|
- [ ] Python backend example
|
|
90
130
|
- [ ] Java backend example
|
|
91
131
|
|
|
92
|
-
###
|
|
132
|
+
### 4. Community / Content (Optional)
|
|
133
|
+
|
|
93
134
|
- [ ] Video tutorials
|
|
94
|
-
- [ ]
|
|
95
|
-
- [ ]
|
|
135
|
+
- [ ] Wikipedia mention (highest-leverage AI-citation source per Princeton GEO study)
|
|
136
|
+
- [ ] Reddit / Product Hunt / AlternativeTo / G2 / Capterra presence
|
|
96
137
|
- [ ] Community plugins directory
|
|
97
138
|
|
|
139
|
+
### 5. Refactors (Optional, deferred)
|
|
140
|
+
|
|
141
|
+
- [x] `website/src/pages/DocsPage.tsx` — DONE. Refactored from 1,406 lines into a 166-line shell + `website/src/pages/docs-page/sections/` (per-feature section components). (Verified 2026-06-22.)
|
|
142
|
+
- [ ] Three page components sit marginally over the 500-line soft guideline — `FeaturesPage.tsx` (578), `ExamplesPage.tsx` (523), `dashboard/AnalyticsPage.tsx` (519). Cohesive content-heavy pages that build clean; split only if they grow further.
|
|
143
|
+
|
|
98
144
|
---
|
|
99
145
|
|
|
100
146
|
## 📊 Completion Summary
|
|
101
147
|
|
|
102
148
|
| Category | Status | Notes |
|
|
103
149
|
|----------|--------|-------|
|
|
104
|
-
| Core Plugin | ✅ 100% |
|
|
105
|
-
| Native iOS | ✅ 100% |
|
|
106
|
-
| Native Android | ✅ 100% |
|
|
107
|
-
| Backend
|
|
150
|
+
| Core Plugin | ✅ 100% | TypeScript + Capacitor 8 SDK |
|
|
151
|
+
| Native iOS | ✅ 100% | Swift |
|
|
152
|
+
| Native Android | ✅ 100% | Kotlin |
|
|
153
|
+
| Backend | ✅ 100% | Laravel 13 + Nova 5 + MySQL + Socialite + Sanctum + Spatie RBAC |
|
|
154
|
+
| Example Backends | ✅ 100% | Node.js + Express (Firebase example removed in v3.0.0) |
|
|
108
155
|
| CLI Tools | ✅ 100% | 8 commands |
|
|
109
|
-
| Documentation | ✅ 100% |
|
|
110
|
-
| Marketing Website | ✅ 100% |
|
|
111
|
-
|
|
|
112
|
-
| Native Tests | ✅ 100% | iOS + Android
|
|
113
|
-
|
|
|
156
|
+
| Documentation | ✅ 100% | Repo `/docs/` + public Docusaurus site (58 pages) |
|
|
157
|
+
| Marketing Website + Dashboard | ✅ 100% | React 19 + Vite 7; Capacitor-wrapped for Play Store |
|
|
158
|
+
| Backend Tests | ✅ 100% | 134/134 PHPUnit passing |
|
|
159
|
+
| Native Tests | ✅ 100% | iOS XCTest + Android JUnit |
|
|
160
|
+
| CI/CD | ✅ 100% | 3 GitHub Actions workflows |
|
|
161
|
+
| Android Release Readiness | ✅ 100% | signingConfigs + ProGuard + branded assets + Data Safety + Play Store runbook |
|
|
114
162
|
| Enterprise Features | ⏳ 0% | Future roadmap |
|
|
115
163
|
|
|
116
164
|
---
|
|
117
165
|
|
|
118
166
|
## 🎯 Priority for Future Development
|
|
119
167
|
|
|
120
|
-
### High Priority (If Needed)
|
|
121
|
-
1. Performance benchmarking suite
|
|
122
|
-
2. Security vulnerability testing
|
|
123
|
-
3. Delta updates WASM optimization
|
|
124
|
-
|
|
125
168
|
### Medium Priority
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
169
|
+
|
|
170
|
+
1. Delta updates WASM optimization (working JS-level patching ships today → optional WASM bsdiff/bspatch)
|
|
171
|
+
2. Additional framework examples (Vue / Angular / Svelte / Python / Java)
|
|
172
|
+
3. Wikipedia / Reddit / Product Hunt presence for AI-citation reach
|
|
129
173
|
|
|
130
174
|
### Low Priority
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
175
|
+
|
|
176
|
+
1. Enterprise tenant model (sub-team / org accounts)
|
|
177
|
+
2. Enterprise SSO (SAML / OIDC beyond Google)
|
|
178
|
+
3. Custom branding for white-label SaaS
|
|
179
|
+
4. Audit-logging UI in the dashboard
|
|
134
180
|
|
|
135
181
|
---
|
|
136
182
|
|
|
137
183
|
## 📝 Notes
|
|
138
184
|
|
|
139
|
-
- Core functionality is complete and production-ready
|
|
140
|
-
- All builds pass with zero errors
|
|
141
|
-
-
|
|
142
|
-
-
|
|
143
|
-
-
|
|
144
|
-
- Optional features can be added based on user demand
|
|
145
|
-
-
|
|
185
|
+
- Core functionality is complete and production-ready; v3.1.0 is on NPM.
|
|
186
|
+
- All builds pass with zero errors (`yarn build` root + website + Docusaurus).
|
|
187
|
+
- All lint checks pass with zero warnings (`yarn lint` root + website).
|
|
188
|
+
- Backend tests pass cleanly (`php artisan test` 134/134).
|
|
189
|
+
- The plugin is ready for production use and the dashboard is Play-Store-publishable end-to-end (2026-05-16 finalization audit closed).
|
|
190
|
+
- Optional features can be added based on user demand.
|
|
191
|
+
- Firestore-backed code paths were intentionally removed in v3.0.0; this is permanent.
|
|
192
|
+
- Firebase Hosting is still the deploy target for the marketing site + Docusaurus docs, but no Firestore / Firebase Auth / Firebase Functions are used.
|