
Brisa 0.2.9
by Aral Roca
π Brisa v0.2.9 is here! π
This update brings new features, bug fixes, and documentation improvements, including CSS Modules support, sitemap compilation in dev mode, and improved security docs. Letβs dive in!
β¨ New Features
CSS Modules Support
Brisa now supports CSS Modules, allowing for scoped styles without global conflicts. You can now import .module.css
files inside your components.
import styles from './Button.module.css';
export function Button() {
return <button class={styles.primary}>Click me</button>;
}
Sitemap Compilation in Dev Mode
The sitemap is now compiled in development mode as well, ensuring that route changes are reflected properly while working locally.
π Bug Fixes
- Fixed CSS collision issues between generated styles and existing public CSS files. β @aralroca in #781
- Fixed render action dependencies when using fragments. β @aralroca in #794
π Documentation Updates
- Added CSRF Token documentation to improve security awareness. β @aralroca in #792
- Improved data fetching documentation for better clarity. β @aralroca in #785
- Fixed minor mistakes in documentation. β @aralroca in #784
π Maintenance
- Upgraded dependencies in
www
, Tailwind, and PandaCSS adapters. β @aralroca in #788 - Upgraded Bun to the latest version for better stability. β @aralroca in #790
Full Changelog
π https://github.com/brisa-build/brisa/compare/0.2.8...0.2.9
ποΈ Listen to Brisa on JS Jabber!
Want to dive deeper into Brisa? Check out the latest episode of JS Jabber Podcast, where we discuss Brisa's philosophy, features, and its vision for the future of web development.