Skip to content

Commit 0bdf998

Browse files
Update dependency org.matrix.rustcomponents:sdk-android to v25.9.19 (#5377)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 5c893e7 commit 0bdf998

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ test_detekt_test = { module = "io.gitlab.arturbosch.detekt:detekt-test", version
166166
# https://github.com/matrix-org/matrix-rust-components-kotlin/commits/main/sdk/sdk-android/src/main/kotlin/org/matrix/rustcomponents/sdk/matrix_sdk_ffi.kt
167167
# All new features should not be implemented in the pull request that upgrades the version, developers should
168168
# only fix API breaks and may add some TODOs.
169-
matrix_sdk = "org.matrix.rustcomponents:sdk-android:25.9.18"
169+
matrix_sdk = "org.matrix.rustcomponents:sdk-android:25.9.19"
170170

171171
# Others
172172
coil = { module = "io.coil-kt.coil3:coil", version.ref = "coil" }

libraries/matrix/impl/src/test/kotlin/io/element/android/libraries/matrix/impl/fixtures/factories/SpaceRoom.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import org.matrix.rustcomponents.sdk.SpaceRoom
1717

1818
fun aRustSpaceRoom(
1919
roomId: RoomId = A_ROOM_ID,
20+
isDirect: Boolean = false,
2021
canonicalAlias: String? = null,
2122
name: String? = null,
2223
topic: String? = null,
@@ -31,6 +32,7 @@ fun aRustSpaceRoom(
3132
heroes: List<RoomHero> = emptyList(),
3233
) = SpaceRoom(
3334
roomId = roomId.value,
35+
isDirect = isDirect,
3436
canonicalAlias = canonicalAlias,
3537
name = name,
3638
topic = topic,

0 commit comments

Comments
 (0)