Skip to content

Commit bcfda2e

Browse files
committed
Merge branch 'develop' into feature/fga/pinned_event_feature_flag
2 parents c9a89c7 + b9942cc commit bcfda2e

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ constraintlayout = "2.1.4"
2020
constraintlayout_compose = "1.0.1"
2121
lifecycle = "2.7.0"
2222
activity = "1.9.1"
23-
media3 = "1.3.1"
23+
media3 = "1.4.0"
2424
camera = "1.3.4"
2525

2626
# Compose
@@ -39,7 +39,7 @@ test_core = "1.6.1"
3939
#other
4040
coil = "2.7.0"
4141
datetime = "0.6.0"
42-
dependencyAnalysis = "1.32.0"
42+
dependencyAnalysis = "1.33.0"
4343
serialization_json = "1.6.3"
4444
showkase = "1.0.3"
4545
appyx = "1.4.0"
@@ -75,7 +75,7 @@ oss_licenses_plugin = "com.google.android.gms:oss-licenses-plugin:0.10.6"
7575
# AndroidX
7676
androidx_core = { module = "androidx.core:core", version.ref = "core" }
7777
androidx_corektx = { module = "androidx.core:core-ktx", version.ref = "core" }
78-
androidx_annotationjvm = "androidx.annotation:annotation-jvm:1.8.0"
78+
androidx_annotationjvm = "androidx.annotation:annotation-jvm:1.8.1"
7979
androidx_datastore_preferences = { module = "androidx.datastore:datastore-preferences", version.ref = "datastore" }
8080
androidx_datastore_datastore = { module = "androidx.datastore:datastore", version.ref = "datastore" }
8181
androidx_exifinterface = "androidx.exifinterface:exifinterface:1.3.7"
@@ -163,7 +163,7 @@ jsoup = "org.jsoup:jsoup:1.18.1"
163163
appyx_core = { module = "com.bumble.appyx:core", version.ref = "appyx" }
164164
molecule-runtime = "app.cash.molecule:molecule-runtime:2.0.0"
165165
timber = "com.jakewharton.timber:timber:5.0.1"
166-
matrix_sdk = "org.matrix.rustcomponents:sdk-android:0.2.34"
166+
matrix_sdk = "org.matrix.rustcomponents:sdk-android:0.2.35"
167167
matrix_richtexteditor = { module = "io.element.android:wysiwyg", version.ref = "wysiwyg" }
168168
matrix_richtexteditor_compose = { module = "io.element.android:wysiwyg-compose", version.ref = "wysiwyg" }
169169
sqldelight-driver-android = { module = "app.cash.sqldelight:android-driver", version.ref = "sqldelight" }

libraries/matrix/impl/src/test/kotlin/io/element/android/libraries/matrix/impl/roomlist/RoomSummaryListProcessorTest.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ private fun aRustRoomInfo(
221221
numUnreadMessages: ULong = 0uL,
222222
numUnreadNotifications: ULong = 0uL,
223223
numUnreadMentions: ULong = 0uL,
224+
pinnedEventIds: List<String> = listOf(),
224225
) = RoomInfo(
225226
id = id,
226227
displayName = displayName,
@@ -249,7 +250,8 @@ private fun aRustRoomInfo(
249250
isMarkedUnread = isMarkedUnread,
250251
numUnreadMessages = numUnreadMessages,
251252
numUnreadNotifications = numUnreadNotifications,
252-
numUnreadMentions = numUnreadMentions
253+
numUnreadMentions = numUnreadMentions,
254+
pinnedEventIds = pinnedEventIds,
253255
)
254256

255257
class FakeRoomListItem(

0 commit comments

Comments
 (0)