Releases: bottledcode/swytch-framework
Releases · bottledcode/swytch-framework
v0.3.0 — A better router component
Upgrade nodes:
Massive changes were made to how things render to support children by maintaining a component stack and render stack. Now the router
component accepts children instead of a 'render' attribute. Unlike before, children are only rendered when there is a children
tag in a component.
Thus this:
<router method="GET" path="/" render="<MyComponent></MyComponent>"></router>
now becomes:
<router method="GET" path="/">
<MyComponent></MyComponent>
</router>
Known issues
- custom self-closing tags is technically a violation of html5 and trying to render them is an issue at the moment. You will see notices when trying to use them.
What's Changed
- Fix tests by @withinboredom in #27
- Refactor router component by @withinboredom in #28
- check shouldRender() at last second by @withinboredom in #29
Full Changelog: v0.2.1...v0.3.0
Refactoring splines
V0.1.5 — bugfixes
What's Changed
- Fix container config to use the correct value in factories by @withinboredom in #21
- clean up the router a bit by @withinboredom in #22
- Replace ends back in escaper by @withinboredom in #23
Full Changelog: v0.1.4...v0.1.5
V0.1.4 -- Yuzu
What's Changed
- Add children support by @withinboredom in #17
- Allow boolean attributes by @withinboredom in #19
Full Changelog: v0.1.3...v0.1.4
Pumpkin
v0.1.2 — Juniper Berry
What's Changed
- Require serializer by @withinboredom in #12
- update readme by @withinboredom in #13
Full Changelog: v0.1.1...v0.1.2
New App
A new App object to make things easier
First Stable-ish release
The first release with a readme! 🍾
There's so much more todo, but now this framework can be discovered. No marketing material yet...