Merge branch 'master' into develop

This commit is contained in:
Doug
2023-11-28 11:48:04 +00:00
9 changed files with 31 additions and 16 deletions

View File

@@ -1,3 +1,24 @@
## Changes in 1.11.5 (2023-11-28)
🙌 Improvements
- Upgrade MatrixSDK version ([v0.27.4](https://github.com/matrix-org/matrix-ios-sdk/releases/tag/v0.27.4)).
- Upgrade Rich Text Editor version. ([v2.18.0](https://github.com/matrix-org/matrix-rich-text-editor/releases/tag/2.18.0))
🐛 Bugfixes
- Call destroy in dealloc to remove all observers of SettingsViewController ([#7697](https://github.com/vector-im/element-ios/pull/7697))
- Editing a message that ends with an emoji now works as expected. ([#7681](https://github.com/vector-im/element-ios/issues/7681))
- The "Quote" action has been removed from the menu of the selected message. ([#7691](https://github.com/vector-im/element-ios/issues/7691))
- The slide to end call for everyone button for the Jitsi widget now also ends the call for the current user. ([#7704](https://github.com/vector-im/element-ios/issues/7704))
- If a Jitsi call in a room is ongoing when the Jitsi widget is removed from such room the call ends. ([#7706](https://github.com/vector-im/element-ios/issues/7706))
- If a moderator ends a Jitsi call for everyone the call is now dismissed. ([#7709](https://github.com/vector-im/element-ios/issues/7709))
⚠️ API Changes
- Drop support for iOS 14, raising the deployment target to iOS 15 to support the latest Rich Text Editor version. ([#7711](https://github.com/vector-im/element-ios/pull/7711))
## Changes in 1.11.4 (2023-10-04)
🙌 Improvements

View File

@@ -16,7 +16,7 @@ use_frameworks!
# - `{ :specHash => {sdk spec hash}` to depend on specific pod options (:git => …, :podspec => …) for MatrixSDK repo. Used by Fastfile during CI
#
# Warning: our internal tooling depends on the name of this variable name, so be sure not to change it
$matrixSDKVersion = '= 0.27.3'
$matrixSDKVersion = '= 0.27.4'
# $matrixSDKVersion = :local
# $matrixSDKVersion = { :branch => 'develop'}
# $matrixSDKVersion = { :specHash => { git: 'https://git.io/fork123', branch: 'fix' } }

View File

@@ -39,9 +39,9 @@ PODS:
- LoggerAPI (1.9.200):
- Logging (~> 1.1)
- Logging (1.4.0)
- MatrixSDK (0.27.3):
- MatrixSDK/Core (= 0.27.3)
- MatrixSDK/Core (0.27.3):
- MatrixSDK (0.27.4):
- MatrixSDK/Core (= 0.27.4)
- MatrixSDK/Core (0.27.4):
- AFNetworking (~> 4.0.0)
- GZIP (~> 1.3.0)
- libbase58 (~> 0.1.4)
@@ -49,7 +49,7 @@ PODS:
- OLMKit (~> 3.2.5)
- Realm (= 10.27.0)
- SwiftyBeaver (= 1.9.5)
- MatrixSDK/JingleCallStack (0.27.3):
- MatrixSDK/JingleCallStack (0.27.4):
- JitsiMeetSDKLite (= 8.1.2-lite)
- MatrixSDK/Core
- MatrixSDKCrypto (0.3.13)
@@ -102,8 +102,8 @@ DEPENDENCIES:
- KeychainAccess (~> 4.2.2)
- KTCenterFlowLayout (~> 1.3.1)
- libPhoneNumber-iOS (~> 0.9.13)
- MatrixSDK (= 0.27.3)
- MatrixSDK/JingleCallStack (= 0.27.3)
- MatrixSDK (= 0.27.4)
- MatrixSDK/JingleCallStack (= 0.27.4)
- OLMKit
- PostHog (~> 2.0.0)
- ReadMoreTextView (~> 3.0.1)
@@ -187,7 +187,7 @@ SPEC CHECKSUMS:
libPhoneNumber-iOS: 0a32a9525cf8744fe02c5206eb30d571e38f7d75
LoggerAPI: ad9c4a6f1e32f518fdb43a1347ac14d765ab5e3d
Logging: beeb016c9c80cf77042d62e83495816847ef108b
MatrixSDK: 83fd36133b8e9147aa2f770953dc7921dda4e8b5
MatrixSDK: da1df31afa59611ec7251ec419a2ceca6d41c7c4
MatrixSDKCrypto: bf08b72f2cd015d8749420a2b8b92fc0536bedf4
OLMKit: da115f16582e47626616874e20f7bb92222c7a51
PostHog: 660ec6c9d80cec17b685e148f17f6785a88b597d
@@ -208,6 +208,6 @@ SPEC CHECKSUMS:
zxcvbn-ios: fef98b7c80f1512ff0eec47ac1fa399fc00f7e3c
ZXingObjC: fdbb269f25dd2032da343e06f10224d62f537bdb
PODFILE CHECKSUM: 20f5e721c3f48c117b9610409e79661637454aa1
PODFILE CHECKSUM: 3b328f8bb8500a6dd81136ab8a065e7434959805
COCOAPODS: 1.11.3
COCOAPODS: 1.13.0

View File

@@ -1 +0,0 @@
Editing a message that ends with an emoji now works as expected.

View File

@@ -1 +0,0 @@
The "Quote" action has been removed from the menu of the selected message.

View File

@@ -1 +0,0 @@
The slide to end call for everyone button for the Jitsi widget now also ends the call for the current user.

View File

@@ -1 +0,0 @@
If a Jitsi call in a room is ongoing when the Jitsi widget is removed from such room the call ends.

View File

@@ -1 +0,0 @@
If a moderator ends a Jitsi call for everyone the call is now dismissed.

View File

@@ -1 +0,0 @@
Call destroy in dealloc to remove all observers of SettingsViewController