Revision history for Yote-Spiderpup
0.03 2026-02-22
- Slot scoping: slot content now resolves variables from the parent scope
where the component is used, not the slot-owning component's scope
- Compiler generates regular functions instead of arrow functions, enabling
proper scope rebinding via .call()
- Fixed SSR rendering of slot content with correct parent variable scoping
- Fixed hydrate() to support scope parameter, matching render() behavior
- Fixed component parentModule to walk past RecipeConditional/RecipeLoop
helpers, preventing TypeError when slot content is inside conditionals
- Added store._notifyAll() for reactive update propagation
- Added _containerEl to RecipeLoop and RecipeConditional
- Cleanup of updatableElements/updatableRecipes in RecipeConditional.refresh()
0.02 2026-02-20
- Single-file component (.pup) format support
- New module Yote::Spiderpup::SFC with parse_sfc() parser
- Pages and recipes can be authored as .pup files alongside .yaml
- .pup uses <script>, <style>, and <template> blocks
- Server, compiler, and watcher all handle .pup files transparently
0.01 2026-02-20
- Initial CPAN release
- YAML-to-JavaScript/HTML recipe compiler
- Reactive component system with state management
- Built-in development server (pupserver)
- Watch mode for automatic recompilation
- CSS/LESS support in recipes