Skip to content

Commit 431e48d

Browse files
committed
Merge branch 'release/1.9.7/master'
2 parents e487886 + 362b03c commit 431e48d

File tree

20 files changed

+127
-36
lines changed

20 files changed

+127
-36
lines changed

CHANGES.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## Changes in 1.9.7 (2022-09-28)
2+
3+
🙌 Improvements
4+
5+
- Upgrade MatrixSDK version ([v0.23.19](https://github.com/matrix-org/matrix-ios-sdk/releases/tag/v0.23.19)).
6+
7+
🐛 Bugfixes
8+
9+
- Missing decoration for events decrypted with untrusted Megolm sessions ([Security advisory](https://github.com/vector-im/element-ios/security/advisories/GHSA-fm8m-99j7-323g))
10+
- Fix crash when scrolling chat list ([#6749](https://github.com/vector-im/element-ios/issues/6749))
11+
12+
113
## Changes in 1.9.6 (2022-09-20)
214

315
🙌 Improvements

Config/AppVersion.xcconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
//
1616

1717
// Version
18-
MARKETING_VERSION = 1.9.6
19-
CURRENT_PROJECT_VERSION = 1.9.6
18+
MARKETING_VERSION = 1.9.7
19+
CURRENT_PROJECT_VERSION = 1.9.7

Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use_frameworks!
1616
# - `{ :specHash => {sdk spec hash}` to depend on specific pod options (:git => …, :podspec => …) for MatrixSDK repo. Used by Fastfile during CI
1717
#
1818
# Warning: our internal tooling depends on the name of this variable name, so be sure not to change it
19-
$matrixSDKVersion = '= 0.23.18'
19+
$matrixSDKVersion = '= 0.23.19'
2020
# $matrixSDKVersion = :local
2121
# $matrixSDKVersion = { :branch => 'develop'}
2222
# $matrixSDKVersion = { :specHash => { git: 'https://git.io/fork123', branch: 'fix' } }

Podfile.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -56,19 +56,19 @@ PODS:
5656
- LoggerAPI (1.9.200):
5757
- Logging (~> 1.1)
5858
- Logging (1.4.0)
59-
- MatrixSDK (0.23.18):
60-
- MatrixSDK/Core (= 0.23.18)
61-
- MatrixSDK/Core (0.23.18):
59+
- MatrixSDK (0.23.19):
60+
- MatrixSDK/Core (= 0.23.19)
61+
- MatrixSDK/Core (0.23.19):
6262
- AFNetworking (~> 4.0.0)
6363
- GZIP (~> 1.3.0)
6464
- libbase58 (~> 0.1.4)
6565
- MatrixSDK/CryptoSDK
6666
- OLMKit (~> 3.2.5)
6767
- Realm (= 10.27.0)
6868
- SwiftyBeaver (= 1.9.5)
69-
- MatrixSDK/CryptoSDK (0.23.18):
69+
- MatrixSDK/CryptoSDK (0.23.19):
7070
- MatrixSDKCrypto (= 0.1.0)
71-
- MatrixSDK/JingleCallStack (0.23.18):
71+
- MatrixSDK/JingleCallStack (0.23.19):
7272
- JitsiMeetSDK (= 5.0.2)
7373
- MatrixSDK/Core
7474
- MatrixSDKCrypto (0.1.0)
@@ -123,8 +123,8 @@ DEPENDENCIES:
123123
- KeychainAccess (~> 4.2.2)
124124
- KTCenterFlowLayout (~> 1.3.1)
125125
- libPhoneNumber-iOS (~> 0.9.13)
126-
- MatrixSDK (= 0.23.18)
127-
- MatrixSDK/JingleCallStack (= 0.23.18)
126+
- MatrixSDK (= 0.23.19)
127+
- MatrixSDK/JingleCallStack (= 0.23.19)
128128
- OLMKit
129129
- PostHog (~> 1.4.4)
130130
- ReadMoreTextView (~> 3.0.1)
@@ -221,7 +221,7 @@ SPEC CHECKSUMS:
221221
libPhoneNumber-iOS: 0a32a9525cf8744fe02c5206eb30d571e38f7d75
222222
LoggerAPI: ad9c4a6f1e32f518fdb43a1347ac14d765ab5e3d
223223
Logging: beeb016c9c80cf77042d62e83495816847ef108b
224-
MatrixSDK: 26da2e3a9f3b02fc6ea67f5bc311d30f06f9ffba
224+
MatrixSDK: a60a00635006c539dce654253e8f0544ea996111
225225
MatrixSDKCrypto: 4b9146d5ef484550341be056a164c6930038028e
226226
OLMKit: da115f16582e47626616874e20f7bb92222c7a51
227227
PostHog: 4b6321b521569092d4ef3a02238d9435dbaeb99f
@@ -241,6 +241,6 @@ SPEC CHECKSUMS:
241241
zxcvbn-ios: fef98b7c80f1512ff0eec47ac1fa399fc00f7e3c
242242
ZXingObjC: fdbb269f25dd2032da343e06f10224d62f537bdb
243243

244-
PODFILE CHECKSUM: 45176df406c18b0c23321a308f58535fbe425a93
244+
PODFILE CHECKSUM: 400334cf1580361b831a632dcc025f2029e56b6e
245245

246246
COCOAPODS: 1.11.2
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"info" : {
3-
"version" : 1,
4-
"author" : "xcode"
3+
"author" : "xcode",
4+
"version" : 1
55
}
6-
}
6+
}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"images" : [
3+
{
4+
"filename" : "encryption_untrusted.png",
5+
"idiom" : "universal",
6+
"scale" : "1x"
7+
},
8+
{
9+
"filename" : "[email protected]",
10+
"idiom" : "universal",
11+
"scale" : "2x"
12+
},
13+
{
14+
"filename" : "[email protected]",
15+
"idiom" : "universal",
16+
"scale" : "3x"
17+
}
18+
],
19+
"info" : {
20+
"author" : "xcode",
21+
"version" : 1
22+
}
23+
}
Loading
Loading
Loading

Riot/Assets/en.lproj/Vector.strings

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2573,6 +2573,7 @@ To enable access, tap Settings> Location and select Always";
25732573
"room_event_encryption_info_unverify" = "Unverify";
25742574
"room_event_encryption_info_block" = "Blacklist";
25752575
"room_event_encryption_info_unblock" = "Unblacklist";
2576+
"room_event_encryption_info_key_authenticity_not_guaranteed" = "The authenticity of this encrypted message can't be guaranteed on this device.";
25762577
"room_event_encryption_verify_title" = "Verify session\n\n";
25772578
"room_event_encryption_verify_message" = "To verify that this session can be trusted, please contact its owner using some other means (e.g. in person or a phone call) and ask them whether the key they see in their User Settings for this session matches the key below:\n\n\tSession name: %@\n\tSession ID: %@\n\tSession key: %@\n\nIf it matches, press the verify button below. If it doesnt, then someone else is intercepting this session and you probably want to press the blacklist button instead.\n\nIn future this verification process will be more sophisticated.";
25782579
"room_event_encryption_verify_ok" = "Verify";

0 commit comments

Comments
 (0)