|
1 | 1 | # ObjectUI Development Roadmap |
2 | 2 |
|
3 | | -> **Last Updated:** February 24, 2026 |
| 3 | +> **Last Updated:** February 25, 2026 |
4 | 4 | > **Current Version:** v0.5.x |
5 | | -> **Spec Version:** @objectstack/spec v3.0.9 |
6 | | -> **Client Version:** @objectstack/client v3.0.9 |
| 5 | +> **Spec Version:** @objectstack/spec v3.0.10 |
| 6 | +> **Client Version:** @objectstack/client v3.0.10 |
7 | 7 | > **Target UX Benchmark:** 🎯 Airtable parity |
8 | 8 | > **Current Priority:** AppShell Navigation · Designer Interaction · View Config Live Preview Sync · Dashboard Config Panel · Airtable UX Polish · **Flow Designer ✅** · **App Creation & Editing Flow ✅** · **System Settings & App Management ✅** · **Right-Side Visual Editor Drawer ✅** |
9 | 9 |
|
@@ -49,6 +49,28 @@ ObjectUI is a universal Server-Driven UI (SDUI) engine built on React + Tailwind |
49 | 49 |
|
50 | 50 | --- |
51 | 51 |
|
| 52 | +## 🔄 Spec v3.0.10 Upgrade Summary |
| 53 | + |
| 54 | +> Upgraded from `@objectstack/spec v3.0.9` → `v3.0.10` on February 25, 2026. UI sub-export adds new Zod schemas and `ViewFilterRule` type. Dashboard widgets now require `id` field. View filters must use object format. |
| 55 | +
|
| 56 | +**New Protocol Capabilities (v3.0.10):** |
| 57 | + |
| 58 | +| Area | What's New | Impact on ObjectUI | |
| 59 | +|------|------------|-------------------| |
| 60 | +| **UI Schemas** | `DensityModeSchema`, `ThemeModeSchema`, `WcagContrastLevelSchema` Zod schemas | Re-exported from `@object-ui/types` for runtime validation | |
| 61 | +| **View Filter Rules** | `ViewFilterRule`, `ViewFilterRuleSchema` — structured filter format `{ field, operator, value }` | All view filters migrated from tuple `['field', '=', 'value']` to object format | |
| 62 | +| **Dashboard Widgets** | `id` field now required on `DashboardWidgetSchema` | All example dashboard widgets updated with explicit `id` | |
| 63 | +| **Filter AST** | `isFilterAST`, `parseFilterAST`, `VALID_AST_OPERATORS` in data sub-export | Filter engine utilities (P2.4) | |
| 64 | +| **Multi-Tenant** | `TursoMultiTenantConfig`, `TenantResolverStrategy`, `TenantDatabaseLifecycle` | Cloud multi-tenancy (P2.4) | |
| 65 | +| **Contracts** | `IAppLifecycleService`, `IDeployPipelineService`, `IProvisioningService`, `ITenantRouter`, `ISchemaDiffService` | Cloud deployment & lifecycle (P2.4) | |
| 66 | + |
| 67 | +**Breaking Changes Applied:** |
| 68 | +- All CRM view filters converted from `['field', '=', 'value']` to `[{ field, operator: '=', value }]` |
| 69 | +- All dashboard widgets (kitchen-sink, todo, CRM) given explicit `id` fields |
| 70 | +- Todo active filter converted from `[['status', '!=', 'Done']]` to `[{ field: 'status', operator: '!=', value: 'Done' }]` |
| 71 | + |
| 72 | +--- |
| 73 | + |
52 | 74 | ## 🎯 P0 — Must Ship (v1.0 Blockers) |
53 | 75 |
|
54 | 76 | ### P0.1 AppShell & Navigation Renderer |
|
0 commit comments