-
Notifications
You must be signed in to change notification settings - Fork 99
4.79.0 Release #844
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
4.79.0 Release #844
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Fix swipe to reply possible when quoting a message is disabled * Update CHANGELOG.md
* Fix user mentions not working when commands are disabled * Update CHANGELOG.md * Revert "Fix user mentions not working when commands are disabled" This reverts commit f01b010. * Do the implementation in the view model only instead
…t message action (#835) Co-authored-by: Nuno Vieira <[email protected]>
* Introduction of ChatMessageViewModel * Add ChatChannelViewModel and ChatMessageViewModel as environment objects * Extract the Message View Model to a separate file * Fix show original text not working properly * Extract some properties from the view to the MessageViewModel * Fix MessageContainerView_Tests * Fix MessageListView_Tests * Fix MessageListViewAvatars_Tests * Use EnvironmentObject for the main container and EnvironmentValue for the child views * Fix existing unit tests * Add Stream's show original translation button + make it configurable * Add test coverage to show original text feature * Fix reaction overlay tests * Fix message container tests * Refactor code to avoid environment objects in MessageContainerView * Provide view model by default * Add warning about thread-safeness in the singletone store * Example of performing translations from message actions * Revert "Example of performing translations from message actions" This reverts commit afd7e0e. * Fix reactions overlay view not shown correct translated or original text * Open `ChatChannelViewModel.messageActionExecuted` so that it can be observed from channel view model * Rename originalTextTranslationsStore to originalTranslationsStore * Make the LinkDetectionTextView change wheneve the translations store changes * Clear the original translations when opening the channel * Add TODO v5 comments * PR Feedback * Refactor using utils * Reapply "Example of performing translations from message actions" This reverts commit 4584aa7. * Revert "Reapply "Example of performing translations from message actions"" This reverts commit 33520f9. * Update CHANGELOG.md * Fix editing message not working * Revert "Fix MessageListView_Tests" This reverts commit b3b00ef. * Revert "Fix MessageListViewAvatars_Tests" This reverts commit 43df718. * Revert "Fix MessageContainerView_Tests" This reverts commit ab0e511. # Conflicts: # Sources/StreamChatSwiftUI/ChatChannel/MessageList/MessageContainerView.swift # StreamChatSwiftUITests/Tests/ChatChannel/MessageContainerView_Tests.swift * Revert "Fix existing unit tests" This reverts commit bd695bf. # Conflicts: # Sources/StreamChatSwiftUI/ChatChannel/MessageList/MessageListView.swift * Revert "Fix message container tests" This reverts commit ab8f758. # Conflicts: # StreamChatSwiftUITests/Tests/ChatChannel/MessageContainerView_Tests.swift * Fix message container tests * Allow providing custom view models to reactions view
* Fix failed edited message not showing the error indicator * Fix failed edited message shown read indicator * Fix editing local message not showing update instantly
laevandus
approved these changes
May 29, 2025
Generated by 🚫 Danger |
martinmitrevski
approved these changes
May 29, 2025
SDK Size
|
Build for regression testing №100 has been uploaded to TestFlight 🎁 |
|
/merge release |
Publication of the release has been launched 👍 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
✅ Added
ChannelListConfig.messageRelativeDateFormatEnabled
to true for enabling itMessageViewModel
toMessageContainerView
to make it easier to customise presentation logic #815MessageListConfig.messaeDisplayOptions.showOriginalTranslatedButton
to enable showing original text in translated message #815Utils.originalTranslationsStore
to keep track of messages that should show the original text #815ViewFactory.makeGalleryHeaderView
for customising header view inGalleryView
#837ViewFactory.makeVideoPlayerHeaderView
for customising header view inVideoPlayerView
#837Utils.messagePreviewFormatter
for customising message previews in lists #839🐞 Fixed