-
Notifications
You must be signed in to change notification settings - Fork 2
refactor: align dev workflow config and docs with plugin-query/plugin-optimizations decomposition #375
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: align dev workflow config and docs with plugin-query/plugin-optimizations decomposition #375
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -364,17 +364,17 @@ Each rule should be re-enabled incrementally after fixing violations: | |
|
|
||
| ### 7A. Core performance | ||
|
|
||
| The `packages/foundation/core/src/optimizations/` directory contains advanced optimization modules that are already implemented: | ||
|
|
||
| | Module | Status | Action | | ||
| |--------|--------|--------| | ||
| | `GlobalConnectionPool.ts` | ✅ Implemented | Benchmark and tune pool sizes | | ||
| | `QueryCompiler.ts` | ✅ Implemented | Add cache hit/miss metrics | | ||
| | `LazyMetadataLoader.ts` | ✅ Implemented | Verify lazy loading in production | | ||
| | `OptimizedValidationEngine.ts` | ✅ Implemented | Benchmark vs. base validator | | ||
| | `CompiledHookManager.ts` | ✅ Implemented | Profile hook chain overhead | | ||
| | `SQLQueryOptimizer.ts` | ✅ Implemented | Add query plan analysis | | ||
| | `DependencyGraph.ts` | ✅ Implemented | Ensure circular dependency detection | | ||
| The optimization modules have been extracted into `@objectql/plugin-optimizations` (see [PR #373](https://github.com/objectstack-ai/objectql/pull/373)): | ||
|
|
||
| | Module | Package | Status | Action | | ||
| |--------|---------|--------|--------| | ||
| | `GlobalConnectionPool.ts` | `@objectql/plugin-optimizations` | ✅ Implemented | Benchmark and tune pool sizes | | ||
| | `QueryCompiler.ts` | `@objectql/plugin-optimizations` | ✅ Implemented | Add cache hit/miss metrics | | ||
| | `LazyMetadataLoader.ts` | `@objectql/plugin-optimizations` | ✅ Implemented | Verify lazy loading in production | | ||
|
Comment on lines
+369
to
+373
|
||
| | `OptimizedValidationEngine.ts` | `@objectql/plugin-optimizations` | ✅ Implemented | Benchmark vs. base validator | | ||
| | `CompiledHookManager.ts` | `@objectql/plugin-optimizations` | ✅ Implemented | Profile hook chain overhead | | ||
| | `SQLQueryOptimizer.ts` | `@objectql/plugin-optimizations` | ✅ Implemented | Add query plan analysis | | ||
| | `DependencyGraph.ts` | `@objectql/plugin-optimizations` | ✅ Implemented | Ensure circular dependency detection | | ||
|
|
||
| ### 7B. Browser bundle optimization | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,9 +1,9 @@ | ||||||
| # ObjectQL Work Plan — 2026 Roadmap | ||||||
|
|
||||||
| > Created: 2026-02-08 | Last Updated: 2026-02-09 | Status: **Active** | ||||||
| > Created: 2026-02-08 | Last Updated: 2026-02-11 | Status: **Active** | ||||||
| > Current Version: **4.2.0** (all packages aligned, except `vscode-objectql` at 4.1.0) | ||||||
|
||||||
| > Current Version: **4.2.0** (all packages aligned, except `vscode-objectql` at 4.1.0) | |
| > Current Version: **4.2.0** (all packages aligned, including `vscode-objectql`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
objectstack.config.tsexample is presented as a copy/pasteable config, but it referencesloadObjects(projectTrackerDir)without defining/importingloadObjectsorprojectTrackerDir(and it omits required imports for the plugin classes). Either include a complete minimal example (with imports + helper definitions) or explicitly mark the snippet as abbreviated and link readers to the real./objectstack.config.tsfile for a working version.