Is it expected that calling a composable function ...
# compose-web
c
Is it expected that calling a composable function compiled with JB Compose 1.5.12 from a composable function compiled with JB Compose 1.6.0 would result in an IrLinkageError? My understanding was that compose outputs were forward binary compatible, but maybe that's not the case for the JS targets?
i
1.6.0 contains a breaking change for JS targets: https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.6.0 > Libraries which depend on earlier Compose Multiplatform version are not compatible with 1.6.0 anymore
c
Thanks for the confirmation! I missed it earlier.