Skip to content

Releases: hfhbd/routing-compose

0.2.14

28 Feb 11:42
ac0d953
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.13...v0.2.14

0.2.14-1.6.0-beta01

04 Feb 10:43
35db943
Compare
Choose a tag to compare

Summary

  • Bump Compose to 1.6.0-beta01

What's Changed

Full Changelog: v0.2.13...v0.2.14-1.6.0-beta01

0.2.13

30 Jan 20:26
46bc130
Compare
Choose a tag to compare

Summary

  • Bump Compose to 1.5.12
  • Bump Kotlin to 1.9.22

What's Changed

Full Changelog: v0.2.12...v0.2.13

0.2.12

07 Apr 14:04
f7ed4ec
Compare
Choose a tag to compare

Summary

Compatibility release for Kotlin 1.8.20/Compose 1.4.0-rc03

What's Changed

  • Bump org.jetbrains.compose from 1.3.0-rc02 to 1.3.0-rc03 by @dependabot in #259
  • Bump actions/configure-pages from 2 to 3 by @dependabot in #261
  • Bump org.jetbrains.compose from 1.3.0-rc03 to 1.3.0-rc04 by @dependabot in #260
  • Bump org.jetbrains.compose from 1.3.0-rc04 to 1.3.0-rc05 by @dependabot in #262
  • Bump org.jetbrains.compose from 1.3.0-rc05 to 1.3.0 by @dependabot in #264
  • Bump io.github.gradle-nexus.publish-plugin from 1.1.0 to 1.2.0 by @dependabot in #267
  • Bump multiplatform from 1.8.0 to 1.8.10 by @dependabot in #265
  • Bump io.github.gradle-nexus.publish-plugin from 1.2.0 to 1.3.0 by @dependabot in #270
  • Bump org.jetbrains.compose from 1.3.1-rc01 to 1.3.1 by @dependabot in #271
  • Bump app.softwork:kotlinx-uuid-core from 0.0.17 to 0.0.18 by @dependabot in #273
  • Bump multiplatform from 1.8.10 to 1.8.20 by @dependabot in #272

Full Changelog: v0.2.11...v0.2.12

v0.2.11

16 Jan 22:39
83be995
Compare
Choose a tag to compare

What's Changed

This is a technical release using Kotlin 1.8.0 and Compose for Web 1.3.0-rc02.

PRs

New Contributors

Full Changelog: v0.2.10...v0.2.11

v0.2.10

08 Nov 11:51
651d6d5
Compare
Choose a tag to compare

Summary

Just updating Compose to 1.2.1 and Kotlin to 1.7.20

What's Changed

Full Changelog: v0.2.9...v0.2.10

Support Compose Web 1.2.0

12 Oct 09:51
20cfad9
Compare
Choose a tag to compare

What's Changed

  • Bump org.jetbrains.compose from 1.2.0-alpha01-dev770 to 1.2.0-alpha01-dev774 by @dependabot in #230
  • Bump kotlinx-uuid-core from 0.0.16 to 0.0.17 by @dependabot in #232
  • Bump org.jetbrains.compose from 1.2.0-alpha01-dev774 to 1.2.0-alpha01-dev778 by @dependabot in #233
  • Bump org.jetbrains.compose from 1.2.0-alpha01-dev778 to 1.2.0-beta01 by @dependabot in #237
  • Bump org.jetbrains.compose from 1.2.0-beta01 to 1.2.0-beta02-dev795 by @dependabot in #238
  • Bump org.jetbrains.compose from 1.2.0-beta02-dev795 to 1.2.0-beta02-dev798 by @dependabot in #239
  • Bump org.jetbrains.compose from 1.2.0-beta02-dev798 to 1.2.0-beta02 by @dependabot in #241
  • Bump org.jetbrains.compose from 1.2.0-beta02 to 1.2.0-rc01 by @dependabot in #243
  • Bump org.jetbrains.compose from 1.2.0-rc01 to 1.2.0 by @dependabot in #244

Full Changelog: v0.2.8...v0.2.9

Fix DesktopRouter when navigating back

26 Aug 07:36
6296486
Compare
Choose a tag to compare

Breaking Changes

DesktopRouter, HashRouter, and BrowserRouter are now internal classes. Use the Composable functions instead. The reason is to prevent creating a new Router instance, which results in wrong navigation. Please create an issue with your use case if you need to instantiate a Router without actually adding it to the Composable hierarchy.

What's Changed

Full Changelog: v0.2.7...v0.2.8

v0.2.7 Remove wrong leading ? when using Parameters.fromMap

19 Jul 09:16
0920ca7
Compare
Choose a tag to compare

What's Changed

  • Update Docs.yml by @hfhbd in #199
  • Bump multiplatform from 1.7.0 to 1.7.10 by @dependabot in #202
  • Bump org.jetbrains.compose from 1.2.0-alpha01-dev741 to 1.2.0-alpha01-dev745 by @dependabot in #203
  • Bump kotlinx-coroutines-swing from 1.6.3 to 1.6.4 by @dependabot in #205
  • Bump detekt-formatting from 1.20.0 to 1.21.0 by @dependabot in #208
  • Bump io.gitlab.arturbosch.detekt from 1.20.0 to 1.21.0 by @dependabot in #207
  • fix: path contains more than 1 '?' delimiter with using parameters by @xtexChooser in #209

New Contributors

Full Changelog: v0.2.6...v0.2.7

Add Boolean parameter to attrs scope of NavLink

07 Jul 12:32
35a7e57
Compare
Choose a tag to compare

Add Boolean parameter to attrs scope of NavLink

Instead hardcoding active, it now possible to use the boolean lambda parameter for customization when the current path starts with to.

NavLink(to = "/users", { isActive ->
  if (isActive) {
    classes("active")
  }
}) {
  Text("Users")
}

What's Changed

Full Changelog: v0.2.5...v0.2.6