Common changes for all artifacts
🐞 Fixed
- Upgrade StreamPush dependency to V1.3.1 to avoid proguard issues.
✅ Added
- Add
DraftMessage
entity to represent a draft message. #5682
stream-chat-android-client
🐞 Fixed
- Ensure
HeadersInterceptor
doesn't use any special character that can come from the customer integration. #5708
✅ Added
- Add
ChatClient.createDraftMessage()
method to create a draft message. #5682 - Add
ChatClient.deleteDraftMessages()
method to delete a draft message. #5682 - Add
ChatClient.queryDraftMessages()
method to query draft messages. #5682
stream-chat-android-state
✅ Added
- Add
GlobalState.channelDraftMessages
andGlobalState.threadDraftMessages
properties providing access to the draft messages. #5682 - Add
ChatClient.globalStateFlow
flow holding theGlobalState
object, which emits values only if the user is connected. #5702
stream-chat-android-ui-common
✅ Added
- Introduce
MentionListController
responsible for managing the state of the mention list. #5692
stream-chat-android-ui-components
🐞 Fixed
- Fix audio recording attachments not paused when the app goes to the background or the screen is covered with another one. #5685
- Fix crash happening after process death when accessing
GlobalState
from the UI components. #5702
⬆️ Improved
- Enable pagination in
MentionListView
. #5692
✅ Added
- Add
ChatUI.draftMessagesEnabled
property to enable/disable Draft Messages. #5687
⚠️ Changed
- 🚨Breaking change: Move
MentionListViewModel
logic and its state to a shared component so they can be reused in Compose. #5692 - 🚨Breaking change:
ChannelListViewModel
now accepts aFlow<GlobalState>
instead ofGlobalState
for theglobalState
constructor parameter. #5702
stream-chat-android-compose
🐞 Fixed
- Fix audio recording attachments not paused when the app goes to the background or the screen is covered with another one. #5685
- Not show deleted poll messages. #5689
- Fix "Thread reply" item shown in the message options menu for messages in a Thread. #5683
- Fix crash happening after process death when accessing
GlobalState
from the UI components. #5702
✅ Added
- Add
MessagesViewModelFactory.isComposerDraftMessageEnabled
property to enable/disable Draft Messages withinMessageComposer
. #5687 - Add
ChannelViewModelFactory.isDraftMessageEnabled
property to enable/disable Draft Messages withinChannelList
. #5687 - Add
MessageBubble
andMessageFailedIcon
toChatComponentFactory
to allow customization of the message bubbles and the failed message icon. #5688 - Add
errorTextStyle
anderrorBackgroundColor
toMessageTheme
to allow customization of the error message bubbles and error message text style. #5688 - ⚠️Add
Message
as an argument of thetextStyle
lambda parameter of theMessageTextFormatter.defaultFormatter
method to allow customizing the text style based on theMessage
. #5688 - Create
ChatTheme.dimens.messageComposerShadowElevation
to customize the message composer shadow elevation. #5697
⚠️ Changed
defaultMessageOptionsState()
now accepts anisInThread
flag to show/hide the "Thread reply" option. #5683