@digilogiclabs/create-saas-app 1.20.1 → 2.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/CHANGELOG.md +27 -388
- package/dist/.tsbuildinfo +1 -1
- package/dist/cli/commands/create.d.ts +10 -0
- package/dist/cli/commands/create.d.ts.map +1 -1
- package/dist/cli/commands/create.js +10 -0
- package/dist/cli/commands/create.js.map +1 -1
- package/dist/cli/prompts/project-setup.d.ts.map +1 -1
- package/dist/cli/prompts/project-setup.js +72 -9
- package/dist/cli/prompts/project-setup.js.map +1 -1
- package/dist/generators/template-generator.d.ts +13 -1
- package/dist/generators/template-generator.d.ts.map +1 -1
- package/dist/generators/template-generator.js +155 -52
- package/dist/generators/template-generator.js.map +1 -1
- package/dist/templates/infrastructure/kubernetes/base/template/README.md +253 -0
- package/dist/templates/infrastructure/kubernetes/base/template/configmap.yaml +12 -0
- package/dist/templates/infrastructure/kubernetes/base/template/deployment.yaml +123 -0
- package/dist/templates/infrastructure/kubernetes/base/template/hpa.yaml +45 -0
- package/dist/templates/infrastructure/kubernetes/base/template/ingress.yaml +31 -0
- package/dist/templates/infrastructure/kubernetes/base/template/kustomization.yaml +25 -0
- package/dist/templates/infrastructure/kubernetes/base/template/namespace.yaml +8 -0
- package/dist/templates/infrastructure/kubernetes/base/template/networkpolicy.yaml +48 -0
- package/dist/templates/infrastructure/kubernetes/base/template/pdb.yaml +14 -0
- package/dist/templates/infrastructure/kubernetes/base/template/secret.yaml +17 -0
- package/dist/templates/infrastructure/kubernetes/base/template/service.yaml +19 -0
- package/dist/templates/infrastructure/kubernetes/base/template/serviceaccount.yaml +9 -0
- package/dist/templates/infrastructure/kubernetes/production/template/kustomization.yaml +92 -0
- package/dist/templates/infrastructure/terraform/aws/template/README.md +156 -0
- package/dist/templates/infrastructure/terraform/aws/template/main.tf +343 -0
- package/dist/templates/infrastructure/terraform/aws/template/outputs.tf +66 -0
- package/dist/templates/infrastructure/terraform/aws/template/terraform.tfvars.example +28 -0
- package/dist/templates/infrastructure/terraform/aws/template/variables.tf +110 -0
- package/dist/templates/infrastructure/terraform/gcp/template/README.md +165 -0
- package/dist/templates/infrastructure/terraform/gcp/template/main.tf +397 -0
- package/dist/templates/infrastructure/terraform/gcp/template/outputs.tf +51 -0
- package/dist/templates/infrastructure/terraform/gcp/template/terraform.tfvars.example +29 -0
- package/dist/templates/infrastructure/terraform/gcp/template/variables.tf +115 -0
- package/dist/templates/web/ai-platform/template/.env.example +16 -0
- package/dist/templates/web/ai-platform/template/README.md +84 -0
- package/dist/templates/web/ai-platform/template/middleware.ts +55 -0
- package/dist/templates/web/ai-platform/template/next.config.js +14 -0
- package/dist/templates/web/ai-platform/template/package.json +55 -0
- package/dist/templates/web/ai-platform/template/src/app/api/chat/route.ts +54 -0
- package/dist/templates/web/ai-platform/template/src/app/chat/page.tsx +235 -0
- package/dist/templates/web/ai-platform/template/src/app/dashboard/page.tsx +142 -0
- package/dist/templates/web/ai-platform/template/src/app/globals.css +34 -0
- package/dist/templates/web/ai-platform/template/src/app/layout.tsx +27 -0
- package/dist/templates/web/ai-platform/template/src/app/page.tsx +203 -0
- package/dist/templates/web/ai-platform/template/src/components/providers/app-providers.tsx +27 -0
- package/dist/templates/web/ai-platform/template/src/lib/auth-server.ts +33 -0
- package/dist/templates/web/ai-platform/template/src/lib/supabase/client.ts +8 -0
- package/dist/templates/web/ai-platform/template/src/lib/supabase/server.ts +27 -0
- package/dist/templates/web/ai-platform/template/src/lib/utils.ts +6 -0
- package/dist/templates/web/ai-platform/template/tsconfig.json +27 -0
- package/dist/templates/web/base/template/package.json +5 -4
- package/dist/templates/web/base/template/src/lib/platform.ts +146 -0
- package/dist/templates/web/iot-dashboard/template/.env.example +12 -0
- package/dist/templates/web/iot-dashboard/template/README.md +101 -0
- package/dist/templates/web/iot-dashboard/template/middleware.ts +56 -0
- package/dist/templates/web/iot-dashboard/template/next.config.js +14 -0
- package/dist/templates/web/iot-dashboard/template/package.json +49 -0
- package/dist/templates/web/iot-dashboard/template/src/app/dashboard/page.tsx +229 -0
- package/dist/templates/web/iot-dashboard/template/src/app/globals.css +20 -0
- package/dist/templates/web/iot-dashboard/template/src/app/layout.tsx +27 -0
- package/dist/templates/web/iot-dashboard/template/src/app/page.tsx +191 -0
- package/dist/templates/web/iot-dashboard/template/src/components/providers/app-providers.tsx +24 -0
- package/dist/templates/web/iot-dashboard/template/src/lib/auth-server.ts +33 -0
- package/dist/templates/web/iot-dashboard/template/src/lib/supabase/client.ts +8 -0
- package/dist/templates/web/iot-dashboard/template/src/lib/supabase/server.ts +27 -0
- package/dist/templates/web/iot-dashboard/template/src/lib/utils.ts +25 -0
- package/dist/templates/web/iot-dashboard/template/tsconfig.json +27 -0
- package/dist/templates/web/marketplace/template/.env.example +12 -0
- package/dist/templates/web/marketplace/template/README.md +66 -0
- package/dist/templates/web/marketplace/template/middleware.ts +56 -0
- package/dist/templates/web/marketplace/template/next.config.js +14 -0
- package/dist/templates/web/marketplace/template/package.json +51 -0
- package/dist/templates/web/marketplace/template/src/app/cart/page.tsx +147 -0
- package/dist/templates/web/marketplace/template/src/app/dashboard/page.tsx +149 -0
- package/dist/templates/web/marketplace/template/src/app/globals.css +20 -0
- package/dist/templates/web/marketplace/template/src/app/layout.tsx +27 -0
- package/dist/templates/web/marketplace/template/src/app/page.tsx +167 -0
- package/dist/templates/web/marketplace/template/src/app/products/page.tsx +129 -0
- package/dist/templates/web/marketplace/template/src/components/providers/app-providers.tsx +27 -0
- package/dist/templates/web/marketplace/template/src/lib/auth-server.ts +33 -0
- package/dist/templates/web/marketplace/template/src/lib/supabase/client.ts +8 -0
- package/dist/templates/web/marketplace/template/src/lib/supabase/server.ts +27 -0
- package/dist/templates/web/marketplace/template/src/lib/utils.ts +19 -0
- package/dist/templates/web/marketplace/template/tsconfig.json +27 -0
- package/dist/templates/web/micro-saas/template/.env.example +10 -0
- package/dist/templates/web/micro-saas/template/README.md +63 -0
- package/dist/templates/web/micro-saas/template/middleware.ts +53 -0
- package/dist/templates/web/micro-saas/template/next.config.js +14 -0
- package/dist/templates/web/micro-saas/template/package.json +41 -0
- package/dist/templates/web/micro-saas/template/src/app/dashboard/page.tsx +117 -0
- package/dist/templates/web/micro-saas/template/src/app/globals.css +20 -0
- package/dist/templates/web/micro-saas/template/src/app/layout.tsx +27 -0
- package/dist/templates/web/micro-saas/template/src/app/login/page.tsx +87 -0
- package/dist/templates/web/micro-saas/template/src/app/page.tsx +137 -0
- package/dist/templates/web/micro-saas/template/src/app/signup/page.tsx +108 -0
- package/dist/templates/web/micro-saas/template/src/components/providers/app-providers.tsx +24 -0
- package/dist/templates/web/micro-saas/template/src/lib/auth-server.ts +33 -0
- package/dist/templates/web/micro-saas/template/src/lib/supabase/client.ts +8 -0
- package/dist/templates/web/micro-saas/template/src/lib/supabase/server.ts +29 -0
- package/dist/templates/web/micro-saas/template/src/lib/utils.ts +6 -0
- package/dist/templates/web/micro-saas/template/tsconfig.json +27 -0
- package/dist/templates/web/ui-auth/template/package.json +4 -3
- package/dist/templates/web/ui-auth/template/src/lib/platform.ts +137 -0
- package/dist/templates/web/ui-auth-payments/template/.env.example +51 -15
- package/dist/templates/web/ui-auth-payments/template/package.json +5 -4
- package/dist/templates/web/ui-auth-payments/template/src/lib/platform.ts +146 -0
- package/dist/templates/web/ui-auth-payments-ai/template/.env.example +60 -22
- package/dist/templates/web/ui-auth-payments-ai/template/package.json +6 -5
- package/dist/templates/web/ui-auth-payments-ai/template/src/lib/platform.ts +155 -0
- package/package.json +6 -6
- package/src/templates/infrastructure/kubernetes/base/template/README.md +253 -0
- package/src/templates/infrastructure/kubernetes/base/template/configmap.yaml +12 -0
- package/src/templates/infrastructure/kubernetes/base/template/deployment.yaml +123 -0
- package/src/templates/infrastructure/kubernetes/base/template/hpa.yaml +45 -0
- package/src/templates/infrastructure/kubernetes/base/template/ingress.yaml +31 -0
- package/src/templates/infrastructure/kubernetes/base/template/kustomization.yaml +25 -0
- package/src/templates/infrastructure/kubernetes/base/template/namespace.yaml +8 -0
- package/src/templates/infrastructure/kubernetes/base/template/networkpolicy.yaml +48 -0
- package/src/templates/infrastructure/kubernetes/base/template/pdb.yaml +14 -0
- package/src/templates/infrastructure/kubernetes/base/template/secret.yaml +17 -0
- package/src/templates/infrastructure/kubernetes/base/template/service.yaml +19 -0
- package/src/templates/infrastructure/kubernetes/base/template/serviceaccount.yaml +9 -0
- package/src/templates/infrastructure/kubernetes/production/template/kustomization.yaml +92 -0
- package/src/templates/infrastructure/terraform/aws/template/README.md +156 -0
- package/src/templates/infrastructure/terraform/aws/template/main.tf +343 -0
- package/src/templates/infrastructure/terraform/aws/template/outputs.tf +66 -0
- package/src/templates/infrastructure/terraform/aws/template/terraform.tfvars.example +28 -0
- package/src/templates/infrastructure/terraform/aws/template/variables.tf +110 -0
- package/src/templates/infrastructure/terraform/gcp/template/README.md +165 -0
- package/src/templates/infrastructure/terraform/gcp/template/main.tf +397 -0
- package/src/templates/infrastructure/terraform/gcp/template/outputs.tf +51 -0
- package/src/templates/infrastructure/terraform/gcp/template/terraform.tfvars.example +29 -0
- package/src/templates/infrastructure/terraform/gcp/template/variables.tf +115 -0
- package/src/templates/web/ai-platform/template/.env.example +16 -0
- package/src/templates/web/ai-platform/template/README.md +84 -0
- package/src/templates/web/ai-platform/template/middleware.ts +55 -0
- package/src/templates/web/ai-platform/template/next.config.js +14 -0
- package/src/templates/web/ai-platform/template/package.json +55 -0
- package/src/templates/web/ai-platform/template/src/app/api/chat/route.ts +54 -0
- package/src/templates/web/ai-platform/template/src/app/chat/page.tsx +235 -0
- package/src/templates/web/ai-platform/template/src/app/dashboard/page.tsx +142 -0
- package/src/templates/web/ai-platform/template/src/app/globals.css +34 -0
- package/src/templates/web/ai-platform/template/src/app/layout.tsx +27 -0
- package/src/templates/web/ai-platform/template/src/app/page.tsx +203 -0
- package/src/templates/web/ai-platform/template/src/components/providers/app-providers.tsx +27 -0
- package/src/templates/web/ai-platform/template/src/lib/auth-server.ts +33 -0
- package/src/templates/web/ai-platform/template/src/lib/supabase/client.ts +8 -0
- package/src/templates/web/ai-platform/template/src/lib/supabase/server.ts +27 -0
- package/src/templates/web/ai-platform/template/src/lib/utils.ts +6 -0
- package/src/templates/web/ai-platform/template/tsconfig.json +27 -0
- package/src/templates/web/base/template/package.json +5 -4
- package/src/templates/web/base/template/src/lib/platform.ts +146 -0
- package/src/templates/web/iot-dashboard/template/.env.example +12 -0
- package/src/templates/web/iot-dashboard/template/README.md +101 -0
- package/src/templates/web/iot-dashboard/template/middleware.ts +56 -0
- package/src/templates/web/iot-dashboard/template/next.config.js +14 -0
- package/src/templates/web/iot-dashboard/template/package.json +49 -0
- package/src/templates/web/iot-dashboard/template/src/app/dashboard/page.tsx +229 -0
- package/src/templates/web/iot-dashboard/template/src/app/globals.css +20 -0
- package/src/templates/web/iot-dashboard/template/src/app/layout.tsx +27 -0
- package/src/templates/web/iot-dashboard/template/src/app/page.tsx +191 -0
- package/src/templates/web/iot-dashboard/template/src/components/providers/app-providers.tsx +24 -0
- package/src/templates/web/iot-dashboard/template/src/lib/auth-server.ts +33 -0
- package/src/templates/web/iot-dashboard/template/src/lib/supabase/client.ts +8 -0
- package/src/templates/web/iot-dashboard/template/src/lib/supabase/server.ts +27 -0
- package/src/templates/web/iot-dashboard/template/src/lib/utils.ts +25 -0
- package/src/templates/web/iot-dashboard/template/tsconfig.json +27 -0
- package/src/templates/web/marketplace/template/.env.example +12 -0
- package/src/templates/web/marketplace/template/README.md +66 -0
- package/src/templates/web/marketplace/template/middleware.ts +56 -0
- package/src/templates/web/marketplace/template/next.config.js +14 -0
- package/src/templates/web/marketplace/template/package.json +51 -0
- package/src/templates/web/marketplace/template/src/app/cart/page.tsx +147 -0
- package/src/templates/web/marketplace/template/src/app/dashboard/page.tsx +149 -0
- package/src/templates/web/marketplace/template/src/app/globals.css +20 -0
- package/src/templates/web/marketplace/template/src/app/layout.tsx +27 -0
- package/src/templates/web/marketplace/template/src/app/page.tsx +167 -0
- package/src/templates/web/marketplace/template/src/app/products/page.tsx +129 -0
- package/src/templates/web/marketplace/template/src/components/providers/app-providers.tsx +27 -0
- package/src/templates/web/marketplace/template/src/lib/auth-server.ts +33 -0
- package/src/templates/web/marketplace/template/src/lib/supabase/client.ts +8 -0
- package/src/templates/web/marketplace/template/src/lib/supabase/server.ts +27 -0
- package/src/templates/web/marketplace/template/src/lib/utils.ts +19 -0
- package/src/templates/web/marketplace/template/tsconfig.json +27 -0
- package/src/templates/web/micro-saas/template/.env.example +10 -0
- package/src/templates/web/micro-saas/template/README.md +63 -0
- package/src/templates/web/micro-saas/template/middleware.ts +53 -0
- package/src/templates/web/micro-saas/template/next.config.js +14 -0
- package/src/templates/web/micro-saas/template/package.json +41 -0
- package/src/templates/web/micro-saas/template/src/app/dashboard/page.tsx +117 -0
- package/src/templates/web/micro-saas/template/src/app/globals.css +20 -0
- package/src/templates/web/micro-saas/template/src/app/layout.tsx +27 -0
- package/src/templates/web/micro-saas/template/src/app/login/page.tsx +87 -0
- package/src/templates/web/micro-saas/template/src/app/page.tsx +137 -0
- package/src/templates/web/micro-saas/template/src/app/signup/page.tsx +108 -0
- package/src/templates/web/micro-saas/template/src/components/providers/app-providers.tsx +24 -0
- package/src/templates/web/micro-saas/template/src/lib/auth-server.ts +33 -0
- package/src/templates/web/micro-saas/template/src/lib/supabase/client.ts +8 -0
- package/src/templates/web/micro-saas/template/src/lib/supabase/server.ts +29 -0
- package/src/templates/web/micro-saas/template/src/lib/utils.ts +6 -0
- package/src/templates/web/micro-saas/template/tsconfig.json +27 -0
- package/src/templates/web/ui-auth/template/package.json +4 -3
- package/src/templates/web/ui-auth/template/src/lib/platform.ts +137 -0
- package/src/templates/web/ui-auth-payments/template/.env.example +51 -15
- package/src/templates/web/ui-auth-payments/template/package.json +5 -4
- package/src/templates/web/ui-auth-payments/template/src/lib/platform.ts +146 -0
- package/src/templates/web/ui-auth-payments-ai/template/.env.example +60 -22
- package/src/templates/web/ui-auth-payments-ai/template/package.json +6 -5
- package/src/templates/web/ui-auth-payments-ai/template/src/lib/platform.ts +155 -0
- package/bin/index.js +0 -36
package/CHANGELOG.md
CHANGED
|
@@ -1,403 +1,42 @@
|
|
|
1
1
|
# @digilogiclabs/create-saas-app
|
|
2
2
|
|
|
3
|
-
## 1.
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- 🔧 **React Native Compatibility Fixes**
|
|
8
|
-
- **React & React DOM**: Updated from `18.2.0` to `19.1.0` across all mobile templates
|
|
9
|
-
- **Expo SDK**: Upgraded from `~51.0.0` to `~54.0.11` for latest stability and features
|
|
10
|
-
- **Expo Router**: Updated from `~3.4.0` to `~6.0.9` for improved routing
|
|
11
|
-
- **Babel Configuration**: Added `babel.config.js` to base mobile template
|
|
12
|
-
- **Package Installation**: Added `--legacy-peer-deps` flag for npm installations to resolve peer dependency conflicts
|
|
13
|
-
|
|
14
|
-
### Technical Improvements
|
|
15
|
-
|
|
16
|
-
- ⚡ **Better Dependency Resolution**: npm installations now use `--legacy-peer-deps` to handle React 19 peer dependencies
|
|
17
|
-
- 📦 **Complete Babel Setup**: All 4 mobile templates now have proper babel.config.js configuration
|
|
18
|
-
- 🔄 **Version Consistency**: All mobile templates use consistent React and Expo versions
|
|
19
|
-
- ✅ **Build Verification**: All templates tested and verified to build successfully
|
|
20
|
-
|
|
21
|
-
### Templates Updated
|
|
22
|
-
|
|
23
|
-
- `mobile/base` - Base mobile template
|
|
24
|
-
- `mobile/ui-auth-payments` - UI + Auth + Payments template
|
|
25
|
-
- `mobile/ui-auth-payments-ai` - UI + Auth + Payments + AI template
|
|
26
|
-
- `mobile/ui-auth-payments-ai-rag` - UI + Auth + Payments + AI + RAG template
|
|
27
|
-
|
|
28
|
-
## 1.20.0
|
|
29
|
-
|
|
30
|
-
### Minor Changes
|
|
31
|
-
|
|
32
|
-
- 💳 **Native Payment Infrastructure Upgrade**
|
|
33
|
-
- **Payments Package**: Upgraded `@digilogiclabs/saas-factory-payments` from `^1.2.6` to `^1.2.7`
|
|
34
|
-
- **Architecture Overhaul**: Implemented server-side payment API architecture for React Native
|
|
35
|
-
- **Fixed Critical Issue**: Eliminated "Cannot import Node.js 'crypto' module" errors in mobile apps
|
|
36
|
-
- **Zero Node.js Dependencies**: Removed Node.js Stripe SDK from native bundle (~800KB reduction)
|
|
37
|
-
|
|
38
|
-
- 🏗 **PaymentsProvider Integration**
|
|
39
|
-
- **All Mobile Templates Updated**: Added `PaymentsProvider` wrapper to all mobile templates
|
|
40
|
-
- `mobile/base`
|
|
41
|
-
- `mobile/ui-auth-payments`
|
|
42
|
-
- `mobile/ui-auth-payments-ai`
|
|
43
|
-
- `mobile/ui-auth-payments-ai-rag`
|
|
44
|
-
- **Server-Side Operations**: All sensitive payment operations now handled via API endpoints
|
|
45
|
-
- **Environment Configuration**: Added `EXPO_PUBLIC_API_URL` for server API communication
|
|
46
|
-
|
|
47
|
-
### Patch Changes
|
|
48
|
-
|
|
49
|
-
- 🐛 **Template Fixes**
|
|
50
|
-
- **Missing Layout File**: Created `app/_layout.tsx` for `ui-auth-payments-ai-rag` template
|
|
51
|
-
- **Import Corrections**: Updated Stripe provider imports across all mobile templates
|
|
52
|
-
- **Provider Hierarchy**: Corrected provider nesting order for optimal functionality
|
|
53
|
-
|
|
54
|
-
### Performance Improvements
|
|
55
|
-
|
|
56
|
-
- ⚡ **Bundle Size**: Reduced mobile bundle size by ~800KB
|
|
57
|
-
- ⚡ **Build Time**: Faster builds without crypto polyfills
|
|
58
|
-
- ⚡ **Memory Usage**: Lower memory footprint on mobile devices
|
|
59
|
-
- ⚡ **Startup Time**: Faster app initialization due to smaller bundle
|
|
60
|
-
|
|
61
|
-
### Security Enhancements
|
|
62
|
-
|
|
63
|
-
- 🔒 **PCI Compliance**: All card data handling moved to server-side
|
|
64
|
-
- 🔒 **No Secrets in App**: Payment secrets never bundled with mobile app
|
|
65
|
-
- 🔒 **Secure Communication**: All payment operations use authenticated HTTPS APIs
|
|
66
|
-
- 🔒 **Audit Trail**: Server-side logging of all payment operations
|
|
67
|
-
|
|
68
|
-
### Documentation
|
|
69
|
-
|
|
70
|
-
- 📚 **Release Notes**: Comprehensive v1.20.0 release notes with migration guide
|
|
71
|
-
- 📚 **Architecture Documentation**: Detailed native payment architecture documentation
|
|
72
|
-
- 📚 **Server API Spec**: Complete server endpoint specifications for payment operations
|
|
73
|
-
|
|
74
|
-
## 1.19.9
|
|
75
|
-
|
|
76
|
-
### Patch Changes
|
|
77
|
-
|
|
78
|
-
- 🚀 **Critical Mobile Template Deployment Fixes**
|
|
79
|
-
- **Assets Generation**: CLI now automatically creates `assets/` directory with required placeholder files
|
|
80
|
-
- `icon.png`, `splash.png`, `adaptive-icon.png`, `favicon.png` (1x1 transparent PNG placeholders)
|
|
81
|
-
- **Dependency Resolution**: Fixed missing required dependencies for iOS deployment
|
|
82
|
-
- Added `expo-constants: ~16.0.2`, `expo-linking: ~6.3.1`, `expo-status-bar: ~1.12.1`
|
|
83
|
-
- Added `react-native-web: ~0.19.10`, `react-dom: 18.2.0`, `@react-native/assets-registry: ^0.81.1`
|
|
84
|
-
- Removed conflicting `@types/react-native` from devDependencies across all templates
|
|
85
|
-
- **Android Package Format**: Fixed Android package name to use valid camelCase format
|
|
86
|
-
- Changed from `com.my-app-name.app` to `com.myAppName.app` for proper reverse DNS compliance
|
|
87
|
-
- **Build Configuration**: Added `.expo/` to `.gitignore` for all mobile templates
|
|
88
|
-
- Prevents Expo build artifacts from being committed to repositories
|
|
89
|
-
|
|
90
|
-
### Mobile Template Quality Improvements
|
|
91
|
-
|
|
92
|
-
- ✅ **100% iOS Deployment Ready**: Generated projects now work out-of-the-box for iOS App Store submission
|
|
93
|
-
- ✅ **Dependency Completeness**: All required Expo and React Native dependencies included
|
|
94
|
-
- ✅ **Package Name Validation**: Android package names follow proper naming conventions
|
|
95
|
-
- ✅ **Asset Management**: Automatic generation of all required mobile app assets
|
|
96
|
-
- ✅ **Git Integration**: Proper .gitignore configuration for mobile development workflow
|
|
97
|
-
|
|
98
|
-
### Technical Enhancements
|
|
99
|
-
|
|
100
|
-
- 🔧 **Template Generator**: Enhanced mobile project generation with asset creation pipeline
|
|
101
|
-
- 📦 **Package Resolution**: Eliminated peer dependency conflicts and missing package errors
|
|
102
|
-
- 🛠 **Build Optimization**: Reduced manual setup steps required after project generation
|
|
103
|
-
- ✅ **Deployment Testing**: Verified mobile template generation produces deployment-ready projects
|
|
104
|
-
|
|
105
|
-
## 1.19.8
|
|
106
|
-
|
|
107
|
-
### Patch Changes
|
|
108
|
-
|
|
109
|
-
- 🚀 **Native Mobile App Generation Improvements**
|
|
110
|
-
- **Latest Package Versions**: Updated all mobile templates to use latest stable packages
|
|
111
|
-
- `@digilogiclabs/saas-factory-ui`: `^0.27.0` → `^0.27.1` (Fixed peer dependencies)
|
|
112
|
-
- `@digilogiclabs/saas-factory-auth`: `^1.0.4` → `^1.0.5` (React Native compatibility)
|
|
113
|
-
- `@digilogiclabs/saas-factory-payments`: `^1.2.5` → `^1.2.6` (React Native compatibility)
|
|
114
|
-
- **Expo SDK Upgrade**: Updated from `~50.0.0` to `~51.0.0` for better stability
|
|
115
|
-
- **Native Dependencies**: Added missing essential dependencies for better out-of-box experience
|
|
116
|
-
- `@react-native-community/netinfo`: Updated to `^11.0.0`
|
|
117
|
-
- `expo-linear-gradient`: Added `~12.3.0` for UI package compatibility
|
|
118
|
-
- `@stripe/stripe-react-native`: Ensured `~0.28.0` for payments
|
|
119
|
-
|
|
120
|
-
### Mobile Template Enhancements
|
|
121
|
-
|
|
122
|
-
- ✅ **iOS Permissions**: Added comprehensive iOS permission descriptions
|
|
123
|
-
- `NSPhotoLibraryUsageDescription`: "This app accesses the photo library to select images"
|
|
124
|
-
- Enhanced camera and location permission descriptions
|
|
125
|
-
- ✅ **EAS Build Configuration**: Standardized EAS CLI version to `>= 5.7.0` across all templates
|
|
126
|
-
- ✅ **Base Template Completion**: Added missing `app.json` and `eas.json` to base mobile template
|
|
127
|
-
- ✅ **Configuration Consistency**: Aligned all mobile templates for production deployment
|
|
128
|
-
|
|
129
|
-
### Technical Improvements
|
|
130
|
-
|
|
131
|
-
- 🔧 **Peer Dependency Fixes**: All packages now support React Native 0.72.0+ without upper bounds
|
|
132
|
-
- 📦 **Dependency Resolution**: Fixed `@react-native-netinfo/netinfo` → `@react-native-community/netinfo` alignment
|
|
133
|
-
- 🛠 **Build Optimization**: Ensured all mobile templates work out-of-the-box with latest package versions
|
|
134
|
-
- ✅ **Generation Testing**: Verified mobile template generation produces working projects with correct dependencies
|
|
135
|
-
|
|
136
|
-
## 1.19.7
|
|
137
|
-
|
|
138
|
-
### Patch Changes
|
|
139
|
-
|
|
140
|
-
- 📱 **Mobile Template Native Capabilities Enhancement**
|
|
141
|
-
- **Package Updates**: Updated all mobile templates to latest stable versions
|
|
142
|
-
- `@digilogiclabs/saas-factory-ui`: `^0.26.1` → `^0.27.0`
|
|
143
|
-
- `@digilogiclabs/saas-factory-auth`: `^1.0.3` → `^1.0.4`
|
|
144
|
-
- `@digilogiclabs/saas-factory-payments`: `^1.2.3` → `^1.2.5`
|
|
145
|
-
- **Environment Variables**: Fixed all `NEXT_PUBLIC_*` → `EXPO_PUBLIC_*` for proper Expo compatibility
|
|
146
|
-
- **TypeScript Configuration**: Updated `moduleResolution` from `"node"` to `"bundler"` for modern bundler compatibility
|
|
147
|
-
- **Native Dependencies**: Added missing dependencies (`@supabase/ssr`, updated `@stripe/stripe-react-native` to `0.28.0`)
|
|
148
|
-
- **RAG Template Completion**: Added missing configuration files for `ui-auth-payments-ai-rag` template
|
|
149
|
-
|
|
150
|
-
### Templates Enhanced
|
|
151
|
-
|
|
152
|
-
- ✅ **mobile/ui-auth-payments**: Updated dependencies, fixed environment variables, improved TypeScript config
|
|
153
|
-
- ✅ **mobile/ui-auth-payments-ai**: Updated dependencies, fixed environment variables, improved TypeScript config
|
|
154
|
-
- ✅ **mobile/ui-auth-payments-ai-rag**: Added complete configuration files, updated dependencies
|
|
155
|
-
- ✅ **mobile/base**: Updated dependencies for compatibility
|
|
156
|
-
- 📚 **README**: Updated with correct mobile commands and latest package versions
|
|
157
|
-
|
|
158
|
-
### Technical Improvements
|
|
159
|
-
|
|
160
|
-
- 🔧 **Environment Variable Consistency**: All mobile templates now use proper `EXPO_PUBLIC_` prefixes
|
|
161
|
-
- 📦 **Dependency Alignment**: Ensured all mobile templates use latest downstream package versions
|
|
162
|
-
- 🛠 **Configuration Completeness**: RAG template now has all required config files (tsconfig.json, app.json, babel.config.js, metro.config.js, eas.json)
|
|
163
|
-
- ✅ **Generation Testing**: Verified mobile template generation works correctly with updated dependencies
|
|
164
|
-
|
|
165
|
-
## 1.19.1
|
|
166
|
-
|
|
167
|
-
### Patch Changes
|
|
168
|
-
|
|
169
|
-
- 🔧 **Critical Payment Template Fix**
|
|
170
|
-
- **Issue**: Missing Stripe dependencies (`@stripe/react-stripe-js`, `@stripe/stripe-js`) in web payment templates causing build failures
|
|
171
|
-
- **Solution**: Added missing dependencies to all web payment templates
|
|
172
|
-
- **Package Update**: Updated all payment templates to use `@digilogiclabs/saas-factory-payments@^1.2.2` with proper peer dependencies
|
|
173
|
-
- **Impact**: All payment templates now build and function correctly without dependency errors
|
|
174
|
-
|
|
175
|
-
### Templates Fixed
|
|
176
|
-
|
|
177
|
-
- ✅ **web/ui-auth-payments**: Added Stripe React dependencies
|
|
178
|
-
- ✅ **web/ui-auth-payments-ai**: Added Stripe React dependencies
|
|
179
|
-
- ✅ **web/ui-auth-payments-audio**: Added Stripe React dependencies
|
|
180
|
-
- ✅ **web/ui-auth-payments-video**: Added Stripe React dependencies
|
|
181
|
-
- ✅ **web/ui-auth-payments-ai-rag**: Added Stripe React dependencies
|
|
182
|
-
- ✅ **mobile/***: Already had correct React Native Stripe dependencies
|
|
183
|
-
|
|
184
|
-
## 1.19.0
|
|
3
|
+
## 1.0.0
|
|
185
4
|
|
|
186
5
|
### Major Changes
|
|
187
6
|
|
|
188
|
-
|
|
189
|
-
- **Issue**: JSX object literals (e.g., `style={{ flex: 1 }}`) were being incorrectly parsed as mustache variables, causing widespread syntax errors in mobile templates
|
|
190
|
-
- **Solution**: Implemented sophisticated brace-counting parser that intelligently protects JSX syntax during template processing
|
|
191
|
-
- **Impact**: Mobile template generation now works flawlessly with zero JSX syntax errors
|
|
192
|
-
|
|
193
|
-
- 📦 **Package Version Updates Across All Templates**
|
|
194
|
-
- **UI Package**: `^0.25.2` → `^0.26.0` (React 18.2/19 compatibility)
|
|
195
|
-
- **Auth Package**: `^1.0.1` → `^1.0.2` (Complete profile management)
|
|
196
|
-
- **Payments Package**: `^1.1.0` → `^1.2.0` (Mobile components + missing exports)
|
|
197
|
-
- **AI Package**: `^3.0.0`/`^3.1.1` → `^4.0.1` (RAG fixes + enhanced features)
|
|
198
|
-
- **AI Types Package**: `^3.0.0` → `^4.0.1` (Enhanced RAG interfaces)
|
|
199
|
-
|
|
200
|
-
### Technical Improvements
|
|
201
|
-
|
|
202
|
-
- 🛠 **Enhanced Template Generator**: Added intelligent JSX object literal protection
|
|
203
|
-
- 📱 **Mobile Template Stability**: Resolved 95+ TypeScript compilation errors
|
|
204
|
-
- 🔄 **Cross-Platform Compatibility**: Ensured React 18.2 and 19.0 support
|
|
205
|
-
- 🎯 **Template Processing**: Maintains full mustache variable functionality while protecting JSX
|
|
206
|
-
|
|
207
|
-
### Bug Fixes
|
|
208
|
-
|
|
209
|
-
- Fixed JSX syntax corruption in mobile templates
|
|
210
|
-
- Resolved missing closing div tag in web ui-auth-payments template
|
|
211
|
-
- Updated all package references to latest stable versions
|
|
212
|
-
- **Critical Fix**: Added missing Stripe dependencies (`@stripe/react-stripe-js`, `@stripe/stripe-js`) to all web payment templates
|
|
213
|
-
- **Package Update**: Updated all payment templates to use `@digilogiclabs/saas-factory-payments@^1.2.2` with proper peer dependencies
|
|
214
|
-
|
|
215
|
-
## 1.18.0
|
|
216
|
-
|
|
217
|
-
### Minor Changes
|
|
218
|
-
|
|
219
|
-
- 🚀 **RAG Knowledge System v4.0.0 - Complete AI Templates**
|
|
220
|
-
|
|
221
|
-
#### 🧠 **New RAG-Powered Templates**
|
|
222
|
-
- **Web Template**: `ui-auth-payments-ai-rag` - Full-stack AI knowledge platform
|
|
223
|
-
- **Mobile Template**: `ui-auth-payments-ai-rag` - React Native AI assistant with offline support
|
|
224
|
-
- **Auto-Selection**: CLI automatically chooses RAG templates with `--with-ai=rag` or `--with-ai=knowledge`
|
|
225
|
-
|
|
226
|
-
#### 🎯 **Web RAG Features**
|
|
227
|
-
- **Intelligent Chat Interface**: Streaming responses with source citations and confidence scores
|
|
228
|
-
- **Knowledge Management**: Full CRUD operations, bulk import/export, and advanced search
|
|
229
|
-
- **Analytics Dashboard**: Usage insights, performance metrics, and user satisfaction tracking
|
|
230
|
-
- **Multi-Domain Support**: Pre-configured for plants, e-commerce, education, or generic use
|
|
231
|
-
- **Production-Ready**: Caching, rate limiting, security policies, and SEO optimization
|
|
232
|
-
|
|
233
|
-
#### 📱 **Mobile RAG Features**
|
|
234
|
-
- **Voice-Enabled Chat**: Native speech recognition and text-to-speech
|
|
235
|
-
- **Offline-First Architecture**: Cached responses, queued queries, and smart synchronization
|
|
236
|
-
- **Touch-Optimized UI**: Swipeable knowledge cards, haptic feedback, and native gestures
|
|
237
|
-
- **Camera Integration**: Document scanning and visual knowledge search
|
|
238
|
-
- **Background Sync**: Knowledge updates while app is backgrounded
|
|
239
|
-
|
|
240
|
-
#### 🛠 **Technical Implementation**
|
|
241
|
-
- **AI Packages**: Updated to `@digilogiclabs/saas-factory-ai@4.0.0` and `@digilogiclabs/saas-factory-ai-types@4.0.0`
|
|
242
|
-
- **Database Schema**: PostgreSQL with vector embeddings (pgvector extension)
|
|
243
|
-
- **Search Functions**: Hybrid search combining vector similarity and full-text search
|
|
244
|
-
- **Setup Scripts**: One-command RAG system initialization with `npm run setup:rag`
|
|
245
|
-
- **Comprehensive Documentation**: Complete setup guides, API references, and examples
|
|
246
|
-
|
|
247
|
-
#### 🚀 **Quick Start**
|
|
248
|
-
```bash
|
|
249
|
-
# Create RAG-powered web app
|
|
250
|
-
npx create-saas-app web my-ai-platform --with-ai=rag
|
|
251
|
-
|
|
252
|
-
# Create RAG-powered mobile app
|
|
253
|
-
npx create-saas-app mobile my-ai-assistant --with-ai=rag
|
|
254
|
-
|
|
255
|
-
# Setup and seed knowledge base
|
|
256
|
-
npm run setup:rag && npm run seed:knowledge
|
|
257
|
-
```
|
|
258
|
-
|
|
259
|
-
#### 📊 **Template Capabilities**
|
|
260
|
-
- **Generic AI Assistant**: Configurable for any domain
|
|
261
|
-
- **Plant Care Assistant**: Botanical expertise with seasonal guidance
|
|
262
|
-
- **E-commerce Assistant**: Product search and shopping recommendations
|
|
263
|
-
- **Education Platform**: Tutoring with adaptive explanations
|
|
264
|
-
- **Custom Domains**: Fully configurable for specific use cases
|
|
265
|
-
|
|
266
|
-
## 1.17.1
|
|
267
|
-
|
|
268
|
-
### Patch Changes
|
|
269
|
-
|
|
270
|
-
- 🎉 **Quality of Life Enhancements Across All Templates**
|
|
271
|
-
|
|
272
|
-
#### 🌐 **Web Template Improvements**
|
|
273
|
-
- **Toast Notification System**: Added `Toaster` component to all web app providers for user feedback
|
|
274
|
-
- **Enhanced Loading States**: Upgraded loading screens with `SkeletonCard` and `SkeletonText` components
|
|
275
|
-
- **Search Functionality**: Added `SearchBar` with mobile-responsive design and toast feedback
|
|
276
|
-
- **Command Palette**: Verified and enhanced existing `CommandPalette` integration across dashboards
|
|
277
|
-
- **Theme System**: Maintained existing `ThemeToggle` with light/dark/system support
|
|
278
|
-
- **Fixed**: JSON parsing issue in ui-auth-ai template package.json
|
|
279
|
-
|
|
280
|
-
#### 📱 **Mobile Template Enhancements**
|
|
281
|
-
- **Native Toast System**: Added `NativeToast` component to all mobile app providers
|
|
282
|
-
- **Advanced Skeleton Loading**: Enhanced loading states with realistic content placeholders
|
|
283
|
-
- **Verified Existing Features**: Confirmed all premium mobile QoL features are properly implemented:
|
|
284
|
-
- Pull-to-refresh with haptic feedback ✅
|
|
285
|
-
- Search functionality with `NativeSearchBar` ✅
|
|
286
|
-
- Comprehensive haptic feedback integration ✅
|
|
287
|
-
- Swipe gestures with `SwipeableCard` components ✅
|
|
288
|
-
- Network-aware content and offline support ✅
|
|
289
|
-
- Native tours and progressive image loading ✅
|
|
290
|
-
|
|
291
|
-
#### 🛠 **Technical Improvements**
|
|
292
|
-
- **Build Verification**: All templates compile successfully
|
|
293
|
-
- **Package Integrity**: 2.6MB compressed, 14.8MB unpacked
|
|
294
|
-
- **Backward Compatibility**: All changes are non-destructive
|
|
295
|
-
- **Cross-Platform**: Enhanced both web and mobile template experiences
|
|
296
|
-
|
|
297
|
-
## 1.6.0
|
|
298
|
-
|
|
299
|
-
### Minor Changes
|
|
300
|
-
|
|
301
|
-
- 🎨 Mobile-First UI Library v0.13.0 Integration
|
|
302
|
-
|
|
303
|
-
### ✨ Major Template Enhancements
|
|
304
|
-
|
|
305
|
-
#### 📱 Mobile-First Optimization Complete
|
|
306
|
-
- **Hamburger Navigation**: Animated hamburger menus with smooth transitions and haptic feedback across all templates
|
|
307
|
-
- **Context-Aware Banners**: Animated moving marquee banners that adapt to network conditions and template context
|
|
308
|
-
- **Touch-Optimized Components**: 44px minimum touch targets, gesture controls, and SwipeableCard interactions
|
|
309
|
-
- **Network Intelligence**: Adaptive content based on connection quality (2G, 4G, 5G) with offline support
|
|
310
|
-
|
|
311
|
-
#### 🎭 Template-Specific Features
|
|
312
|
-
- **Audio Templates**: Music streaming quality indicators, playlist navigation, audio-specific banners
|
|
313
|
-
- **Video Templates**: Video quality adaptation, watch later functionality, streaming status banners
|
|
314
|
-
- **Payment Templates**: Mobile-first checkout flows with touch-friendly payment processing
|
|
315
|
-
- **All Templates**: Pull-to-refresh, progressive image loading, skeleton states, haptic feedback
|
|
316
|
-
|
|
317
|
-
#### 🚀 SaaS Factory UI v0.13.0 Components
|
|
318
|
-
- `ResponsiveHeader`, `HamburgerIcon`, `MobileNavigation` with animations
|
|
319
|
-
- `PageTransition`, `MobileHero`, `NetworkAwareContent`, `OfflineWrapper`
|
|
320
|
-
- `SwipeableCard`, `PullToRefresh`, `LazyImage`, `ProgressiveImage`
|
|
321
|
-
- `VirtualScrollList`, `MobileContainer` for optimal mobile experiences
|
|
322
|
-
- Network hooks: `useNetworkInfo`, `useOfflineState`, `useCache`
|
|
323
|
-
|
|
324
|
-
#### 🎨 Enhanced CSS & Animations
|
|
325
|
-
- Marquee banner animations with reduced-motion support
|
|
326
|
-
- Hamburger menu transform animations with cubic-bezier easing
|
|
327
|
-
- Mobile-first responsive design with touch-action optimizations
|
|
328
|
-
- Video-specific aspect ratio containers and progressive loading
|
|
329
|
-
- Haptic feedback animations for enhanced mobile interactions
|
|
330
|
-
|
|
331
|
-
#### 📦 Templates Updated
|
|
332
|
-
- ✅ **ui-auth-payments**: Complete mobile-first SaaS with payments
|
|
333
|
-
- ✅ **ui-auth-payments-audio**: Mobile music streaming app template
|
|
334
|
-
- ✅ **ui-auth-payments-video**: Mobile video streaming app template
|
|
335
|
-
- ✅ **ui-auth**: Cross-device authentication template
|
|
336
|
-
- ✅ **ui-only**: Clean mobile-first UI template
|
|
337
|
-
- ✅ **base**: Foundation template with mobile optimizations
|
|
338
|
-
|
|
339
|
-
### 🔧 Technical Improvements
|
|
340
|
-
- Upgraded all templates to SaaS Factory UI Library v0.13.0
|
|
341
|
-
- Cross-platform compatibility (Web + React Native ready)
|
|
342
|
-
- Network-aware adaptive experiences with intelligent content delivery
|
|
343
|
-
- Enhanced accessibility with proper focus management and screen reader support
|
|
344
|
-
- Performance optimizations with lazy loading and progressive enhancement
|
|
345
|
-
|
|
346
|
-
All templates now provide production-ready, mobile-first user experiences with comprehensive touch optimizations and network intelligence.
|
|
347
|
-
|
|
348
|
-
### Patch Changes
|
|
349
|
-
|
|
350
|
-
- f0c527c: alignment for release
|
|
351
|
-
|
|
352
|
-
## 1.5.0
|
|
353
|
-
|
|
354
|
-
### 🎯 Major Enhancements - Best Practices Implementation
|
|
355
|
-
|
|
356
|
-
#### ✨ New Features
|
|
357
|
-
|
|
358
|
-
- **Testing Infrastructure**: Added Vitest with React Testing Library to all templates
|
|
359
|
-
- **Environment Validation**: Type-safe environment variables with Zod validation
|
|
360
|
-
- **Enhanced Error Handling**: Professional error boundaries and loading states
|
|
361
|
-
- **Development Performance**: Turbopack integration for faster development builds
|
|
362
|
-
- **Enhanced Utilities**: 10+ new utility functions (formatCurrency, debounce, etc.)
|
|
363
|
-
|
|
364
|
-
#### 🔧 Developer Experience
|
|
365
|
-
|
|
366
|
-
- **Test Scripts**: `npm run test`, `npm run test:ui`, `npm run test:run` in all templates
|
|
367
|
-
- **Type Safety**: Enhanced TypeScript configuration and type checking
|
|
368
|
-
- **Performance**: `next dev --turbo` for faster development builds
|
|
369
|
-
- **Code Quality**: Pre-configured test mocks for Next.js, Auth, and Payments
|
|
370
|
-
|
|
371
|
-
#### 📁 Template Enhancements
|
|
7
|
+
**Initial Monorepo Release** - Version reset to 1.0.0 for unified DLL Platform monorepo.
|
|
372
8
|
|
|
373
|
-
|
|
374
|
-
- **Loading States**: Clean loading components with spinners in all templates
|
|
375
|
-
- **Environment Config**: Type-safe environment validation in all templates
|
|
376
|
-
- **Enhanced Utils**: Comprehensive utility functions in all templates
|
|
377
|
-
- **Test Setup**: Complete testing infrastructure with example tests
|
|
9
|
+
This is the first official release as part of the consolidated DLL Platform monorepo. Previous version history preserved below.
|
|
378
10
|
|
|
379
|
-
|
|
11
|
+
### Features
|
|
380
12
|
|
|
381
|
-
-
|
|
382
|
-
-
|
|
383
|
-
-
|
|
384
|
-
-
|
|
385
|
-
-
|
|
386
|
-
-
|
|
13
|
+
- CLI scaffolding tool for creating SaaS applications
|
|
14
|
+
- Next.js 15+ and React Native/Expo templates
|
|
15
|
+
- Supabase and Firebase authentication templates
|
|
16
|
+
- Platform-core integration templates
|
|
17
|
+
- TypeScript-first configuration
|
|
18
|
+
- Interactive project setup wizard
|
|
19
|
+
- RAG-powered AI templates
|
|
20
|
+
- Mobile-first responsive templates
|
|
21
|
+
- Theme system with light/dark/system support
|
|
387
22
|
|
|
388
|
-
|
|
23
|
+
---
|
|
389
24
|
|
|
390
|
-
|
|
25
|
+
## Previous Version History
|
|
391
26
|
|
|
392
|
-
|
|
27
|
+
<details>
|
|
28
|
+
<summary>View previous changelog (1.21.0 and earlier)</summary>
|
|
393
29
|
|
|
394
|
-
|
|
395
|
-
- **Theme Modes**: Light/Dark/System theme support with persistence
|
|
396
|
-
- **CLI Options**: `--theme-color` and `--default-theme` command line options
|
|
397
|
-
- **Version Tracking**: Generator and package version tracking in generated projects
|
|
30
|
+
### 1.21.0 and earlier
|
|
398
31
|
|
|
399
|
-
|
|
32
|
+
All previous versions were released from individual package repositories.
|
|
33
|
+
The version numbering has been reset to 1.0.0 for the unified monorepo release.
|
|
400
34
|
|
|
401
|
-
|
|
35
|
+
Key features from previous versions:
|
|
36
|
+
- Complete template system (web and mobile)
|
|
37
|
+
- Payment and authentication integrations
|
|
38
|
+
- AI and RAG templates
|
|
39
|
+
- Mobile-first optimizations
|
|
40
|
+
- Theme system with color customization
|
|
402
41
|
|
|
403
|
-
|
|
42
|
+
</details>
|