fritz2 v0.5 Release Notes

Release Date: 2020-06-11 // almost 4 years ago
  • ๐Ÿ’ฅ breaking changes

    ๐Ÿš€ This release contains changes, that break code written with earlier versions:

    • We moved all artifacts and packages to match our domain: dev.fritz2. You will have to adjust your inputs and dependencies accordingly.
    • The default project-type for fritz2 now is multiplatform (to make it easy to share models and validation between client and server). Use the new fritz2-gradle-plugin to setup your project:

    ๐Ÿ— build.gradle.kts

    plugins { id("dev.fritz2.fritz2-gradle") version "0.5"}repositories { jcenter() }kotlin { kotlin { jvm() js().browser() sourceSets { val commonMain by getting { dependencies { implementation(kotlin("stdlib")) } } val jvmMain by getting { dependencies { } } val jsMain by getting { dependencies { } } } } }
    

    ๐Ÿ›  fixed bugs

    • ๐Ÿ›  fixed dom-update problem with checked attribute at HTMLInputElement