update change log

cleaning
This commit is contained in:
Valere 2020-04-03 18:47:14 +02:00
parent dc61ee61f5
commit 1a436f962f
5 changed files with 3 additions and 7 deletions

View file

@ -10,6 +10,8 @@ Improvements 🙌:
- Verification DM / Handle concurrent .start after .ready (#794)
- Cross-Signing | Update Shield Logic for DM (#963)
- Cross-Signing | Complete security new session design update (#1135)
- Cross-Signing | Setup key backup as part of SSSS bootstrapping (#1201)
- Cross-Signing | Gossip key backup recovery key (#1200)
Bugfix 🐛:
- Missing avatar/displayname after verification request message (#841)

View file

@ -173,7 +173,6 @@ interface KeysBackupService {
password: String,
callback: MatrixCallback<Unit>)
fun onSecretKeyGossip(secret: String)
/**
@ -215,7 +214,6 @@ interface KeysBackupService {
val isStucked: Boolean
val state: KeysBackupState
// For gossiping
fun saveBackupRecoveryKey(recoveryKey: String?, version: String?)
fun getKeyBackupRecoveryKeyInfo() : SavedKeyBackupKeyInfo?

View file

@ -16,7 +16,7 @@
package im.vector.matrix.android.internal.crypto.store
data class SavedKeyBackupKeyInfo (
data class SavedKeyBackupKeyInfo(
val recoveryKey : String,
val version: String
)

View file

@ -187,7 +187,6 @@ internal object RealmCryptoStoreMigration : RealmMigration {
.addField(OutgoingGossipingRequestEntityFields.REQUEST_STATE_STR, String::class.java)
}
private fun migrateTo3(realm: DynamicRealm) {
Timber.d("Updating CryptoMetadataEntity table")
realm.schema.get("CryptoMetadataEntity")

View file

@ -39,7 +39,6 @@ import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.async
import kotlinx.coroutines.launch
import timber.log.Timber
import java.util.Timer
import java.util.UUID
import javax.inject.Inject
@ -209,12 +208,10 @@ class BootstrapCrossSigningTask @Inject constructor(
}
// Save it for gossiping
session.cryptoService().keysBackupService().saveBackupRecoveryKey(creationInfo.recoveryKey, version = version.version)
} catch (failure: Throwable) {
Timber.e("## BootstrapCrossSigningTask: Failed to init keybackup")
}
return BootstrapResult.Success(keyInfo)
}