Skip to content

Releases: tuono-labs/tuono

v0.17.6

28 Jan 18:09
fdc87ed
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.17.5...v0.17.6

v0.17.5

26 Jan 10:13
d33c211
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.17.4...v0.17.5

v0.17.4

23 Jan 17:58
3cb150b
Compare
Choose a tag to compare

What's Changed

New configuration

import type { TuonoConfig } from 'tuono/config'

const config: TuonoConfig = {
  server: {
    host: 'localhost',
    port: 3000,
  },
}

export default config

New Contributors

Full Changelog: v0.17.3...v0.17.4

v0.17.3

19 Jan 15:27
6be12b4
Compare
Choose a tag to compare

What's Changed

  • fix: propagate build error and check if js files exist by @LeNei in #297
  • fix: create a component tree that matches between client and server to avoid useId output mismatch by @Valerioageno in #371

Breaking change

Now the root __layout.tsx component requires to import <TuonoScript /> in the html body

import type { ReactNode, JSX } from 'react'
import { TuonoScripts } from 'tuono'

interface RootLayoutProps {
  children: ReactNode
}

export default function RootLayout({ children }: RootLayoutProps): JSX.Element {
  return (
    <html>
      <head>
      </head>
      <body>
        {children}
        <TuonoScripts />
      </body>
    </html>
  )
}

New Contributors

Full Changelog: v0.17.2...v0.17.3

v0.17.2

18 Jan 19:52
17b61a5
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.17.1...v0.17.2

v0.17.1

16 Jan 11:38
11c6fc8
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.17.0...v0.17.1

v0.17.0

03 Jan 16:09
0ef1252
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.16.9...v0.17.0

v0.16.9

24 Dec 15:22
Compare
Choose a tag to compare

What's Changed

  • feat(crates/tuono): tuono new - download template by cli version and git tag by @gravitypowerful in #261

New Contributors

Full Changelog: v0.16.8...v0.16.9

v0.16.8

24 Dec 10:58
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.16.7...v0.16.8

v0.16.7

23 Dec 17:30
Compare
Choose a tag to compare

What's Changed

  • chore(examples): Remove tsconfig.node.js file from examples by @m-jovan in #245
  • Add message event polyfill by @Valerioageno in #250
  • refactor(packages/*): use @vitejs/plugin-react-swc and make all package dependencies explicit by @marcalexiei in #254
  • refactor(packages/*): add tuono- prefix to all relevant folders by @marcalexiei in #255

New Contributors

Full Changelog: v0.16.6...v0.16.7