v0.1.50
Current Release
19. Sep 2026
Alpha patch release: enhanced detail navigation in generated CRUD views, fixed CSRF token validation on permission revocation, and aligned test suite with localized interface.
- [CRUD] Generated CRUD lists now link the first displayed field to the record detail page when the technical
id column is hidden (for both table and card layouts).
- [AUTH] Fixed the authentication-admin permission revocation form so it transmits the valid CSRF token and reliably removes selected permissions.
- [TESTS] Updated end-to-end integration test assertions for default German interface and humanized tableview column headers.
- [CI/RELEASE] Added non-publishing release rehearsals in GitHub Actions to build and validate Linux and Windows release artifacts.
v0.1.45
Sep 2026
Hardened MariaDB setup, automatic port selection on conflicts, and platform-specific Docker guidance.
- [MARIADB] Dynamic port selection for web and MariaDB services when default ports are already occupied.
- [CLI] Setup assistant with web UI (
zelyra setup --web) and doctor provide platform-specific Docker/Compose installation guidance.
- [SLOTS] Nested component slots inside component invocations no longer require page view layouts.
- [VERIFY] Loop invariants with
invariant { condition } and verification status via zelyra verify.
v0.1.40
Aug 2026
Nominal domain typing barriers, Option/Result pattern matching, and complete CRUD resource mapping.
- [TYPES] Nominal domain typing with
type UserId = Id prevents accidental identifier mixing.
- [SAFETY] Full compiler exhaustiveness checking for
match on Some/None and Ok/Err.
- [CRUD] Declarative CRUD resource generation connecting tables to web forms.
v0.1.30
Jul 2026
Single-source table schema definitions, database plan migrations, and built-in HTTP server.
- [SCHEMA] Declarative
table syntax defining types, primary keys, and field validation rules.
- [WEB] Native
page routes with auto-escaped HTML parameters.
- [DB] Schema migration planner via
zelyra db plan.
v0.1.00
Mai 2026
Initial language compiler release in Rust. Pure immutability by default, static typing, and clear syntax.
- [CORE] First public compiler implementation in Rust.
- [LANG] Immutable values by default, explicit
mutable.