Releases: tuono-labs/tuono
Releases · tuono-labs/tuono
v0.19.7
What's Changed
- fix(crates/tuono): Fix HTTP method handling for mixed-case input by @aig787 in #780
- feat: parse manifest on server start by @Valerioageno in #783
- feat: improve manifest data collection by @Valerioageno in #785
New Contributors
Full Changelog: v0.19.6...v0.19.7
v0.19.6
What's Changed
- chore: bump ssr_rs (0.8.3) - Add support to Intl API by @Valerioageno in #769
- fix: improve critical css generation by @Valerioageno in #770
Full Changelog: v0.19.5...v0.19.6
v0.19.5
What's Changed
- fix: tailwindcss template by @Valerioageno in #767
- feat: load critical CSS on development by @Valerioageno in #765
Full Changelog: v0.19.4...v0.19.5
v0.19.4
What's Changed
- feat: add automatic types generation by @Valerioageno in #703
Full Changelog: v0.19.3...v0.19.4
v0.19.3
What's Changed
- refactor: refine ServerPayload type using a union with mode as discriminant by @marcalexiei in #701
- feat: init new git repo for new projects by @jacobhq in #558
- fix: prevent multiple server address print by @Valerioageno in #713
- fix: old data kept on new route during transition by @Valerioageno & @marcalexiei in #730
Full Changelog: v0.19.2...v0.19.3
v0.19.2
What's Changed
- refactor: create more types to simplify
TuonoConfig
management by @marcalexiei in #699 - feat: add
TuonoLayoutProps
interface by @marcalexiei in #702 - feat: add form_data method into request by @kulapoo in #651
New Contributors
Full Changelog: v0.19.1...v0.19.2
v0.19.1
What's Changed
- fix: body parsing function by @Valerioageno in #670
Full Changelog: v0.19.0...v0.19.1
v0.19.0
What's Changed
- fix: prevent returning the previous route data on route transition by @Valerioageno in #646
- fix: allow 'index' keyword in routes name by @Valerioageno in #647
- feat(packages/tuono): improve
TuonoRouteProps
type by @marcalexiei in #648 - feat: remove
global.css
import to enable global CSS file customizations by @Valerioageno in #650
Breaking changes
global.css
needs to be imported
// src/routes/__layout.tsx
++ import '../styles/global.css'
export default function Layout(): JSX.Element {
...
}
TuonoProps
is TuonoRouteProps
// src/routes/my-route.tsx
-- export default function MyRoute(props: TuonoProps<T>): JSX.Element {}
++ export default function MyRoute(props: TuonoRouteProps<T>): JSX.Element {}
Full Changelog: v0.18.0...v0.19.0
v0.18.0
What's Changed
- feat(examples/tuono-tutorial): improve styles of
PokemonView
component by @nicolasgasco in #628 - feat: display error overlay by @Valerioageno and @marcalexiei in #607
- feat: add
__layout
wrapper to default 404 page by @Valerioageno in #633 - feat: Implement .env file support by @jacobhq in #618
New Contributors
- @nicolasgasco made their first contribution in #628
Full Changelog: v0.17.10...v0.18.0
v0.17.10
What's Changed
- feat: add
origin
config option by @pveierland in #582 - fix: build script for creation of parent directories by @Valerioageno in #614
New Contributors
- @pveierland made their first contribution in #582
Full Changelog: v0.17.9...v0.17.10