<!-- Release notes generated using configuration in .github/release.yml at main -->
- [refactor: Modify caching mechanism for source file and content parsing](https://github.com/cj/weba/commit/1744c57dbd664b80928fb2f5d6f4656d06b2759b)
WEB_LRU_CACHE_SIZE change, it's now off by default:
- `WEBA_LRU_CACHE_SIZE`: Controls caching of parsed HTML templates and file contents:
- When set: Enables LRU caching with the specified maximum size
- When not set: Disables caching, templates and files are re-read on every access
Example:
bash
export WEBA_LRU_CACHE_SIZE=256 Enable caching with max 256 entries
unset WEBA_LRU_CACHE_SIZE Disable caching completely
- [refactor: moved errors to their own file](https://github.com/cj/weba/commit/152cfc9e71a3a9279dabb8734f059854c7856412)
**Full Changelog**: https://github.com/cj/weba/compare/v0.2.25...v0.2.26