dreamstack/compiler/ds-parser/CHANGELOG.md

14 lines
658 B
Markdown
Raw Normal View History

# Changelog
compiler: v0.8–v1.0 milestones — generics, traits, async/effects, production hardening v0.8.0: Generics, Trait System, LSP Foundation (322 tests) - ds-parser: GenericParam, TraitDecl, ImplBlock, WhereClause, DefaultParam, Destructure - ds-types: GenericType, TraitRegistry, TypeExpander - ds-analyzer: AdvancedAnalyzer (unused imports, memo, dep depth, hot paths) - ds-codegen: CodeGenV2 (generic erasure, for-in/yield, tree shaking, minify) - ds-layout: FlexLayout (gap, padding, margin, border, position, alignment) - ds-diagnostic: LspDiagnostic, DiagnosticBatch (LSP format, suppression, dedup) - ds-incremental: IncrementalV2 (content hash, compile queue, error cache) v0.9.0: Async/Await, Effect System, Production Hardening (385 tests) - ds-parser: AsyncFn, EffectDeclV2, TryCatch, PipelineExpr, Decorator - ds-types: AsyncType (Promise/Future/Effect/Result), AdvancedType (intersection/mapped/conditional/branded) - ds-analyzer: ProductionAnalyzer (async boundaries, purity, complexity, coverage) - ds-codegen: CodeGenV3 (async/await, try/catch, pipeline, chunks, CSS, HMR) - ds-layout: AdvancedLayout (scroll, sticky, flex grow/shrink, shadow, transition) - ds-diagnostic: DiagnosticPipeline, DiagTag (file index, lint rules, escalation) - ds-incremental: BuildPipeline (profiles, workers, artifacts, source maps) v1.0.0: Production-Ready Compiler with Stable API (511 tests) - ds-parser: ParseError1, PartialAst, VisibilityV2, Namespace, DocComment, Pragma, NumericLit, ParseStats - ds-types: TypeInference (HM unification), SubtypeChecker, TypeSystemExt (opaque/existential/HKT) - ds-analyzer: FullAnalyzer (call graph, dead code, tail call, borrow check, vectorize) - ds-codegen: CodeGenFull (WASM, SSR, hydration, CSS modules, import maps, SIMD) - ds-layout: Animation, TextLayout, MediaQuery, ColorSpace, Gradient, Filter, LayoutStats - ds-diagnostic: DiagnosticSuite (SARIF, code frames, budgets, baselines, trending) - ds-incremental: BuildSystem (remote cache, build graph, plugins, hermetic, signing)
2026-03-11 16:16:42 -07:00
## [1.0.0] - 2026-03-11 🎉
### Added — Production-Ready Parser
- **ParseError1** — Error recovery with recoverable/fatal classification
- **PartialAst** — Partial AST output on failure, error collection
- **VisibilityV2** — Public/Private/Internal modifiers
- **Namespace** — Module-scoped namespaces
- **DocComment** — `///` doc comments attached to declarations
- **Pragma** — `#[inline]`, `#[deprecated]` annotations
- **SourceLoc** — File/line/col metadata per node
- **NumericLit** — Decimal, binary, hex, suffixed numeric literals
- **ParseStats** — Token/node/error counts with success rate
- 18 new tests (94 total)