Skip to content

Commit c952b29

Browse files
Updated changelog and small fix for content order map
1 parent abad892 commit c952b29

File tree

2 files changed

+29
-6
lines changed

2 files changed

+29
-6
lines changed

CHANGELOG.md

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,32 @@
11
# Changelog
22

3-
## [3.5.0]
4-
5-
### Bug fixes
6-
- Mute status updates on every message
3+
## [3.5.0] (unpublished)
74

85
### **🛑 BREAKING**
9-
- `reply`, `handleReply`, and `handleReplyMessage` have now all been shifted to `quotedReply`, `handleQuotedReply`, and `handleQuotedReplyMessage` respectively.
6+
7+
Following props have been renamed:
8+
9+
- `reply` -> `quotedReply`
10+
- `handleReply` -> `handleQuotedReply`
11+
- `handleReplyMessage` -> `handleQuotedReplyMessage`
12+
### Features
13+
14+
- Added new props to Channel component [219b307](https://github.com/GetStream/stream-chat-react-native/commit/219b307e3d2db36a6974e4870dc0eb00213bcca2)
15+
16+
- maxMessageLength (number)
17+
- reactionsEnabled (boolean)
18+
- readEventsEnabled (boolean)
19+
- repliesEnabled (boolean)
20+
- typingEventsEnabled (boolean)
21+
- uploadsEnabled (boolean)
22+
- quoteRepliesEnabled (boolean)
23+
- threadRepliesEnabled (boolean)
24+
25+
### Bug fixes
26+
- Update messages when mute status updates [885f8c2](https://github.com/GetStream/stream-chat-react-native/commit/885f8c20306ef46eb6ad20cd2942618acf967741)
27+
- Fixed broken "Resend message" functionality for failed messages [359c192](https://github.com/GetStream/stream-chat-react-native/commit/359c192903b3e34836ffadcca55f2a4e0a7fc509)
28+
- Fixed read receipts [f7510e8](https://github.com/GetStream/stream-chat-react-native/commit/f7510e8134ad14fbfa1d920e68267d3080d2b1ba)
29+
- Fixed images as attachment from File Picker [5ca1a25](https://github.com/GetStream/stream-chat-react-native/commit/5ca1a250a9d1c75c86e9c89dda1c116dd77bb1b3)
1030

1131
## [3.4.0] (2021-05-14)
1232

src/components/Message/MessageSimple/MessageContent.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,10 @@ const MessageContentWithContext = <
344344
return (
345345
message.quoted_message &&
346346
quotedRepliesEnabled && (
347-
<View style={[styles.replyContainer, replyContainer]}>
347+
<View
348+
key={`quoted_reply_${messageContentOrderIndex}`}
349+
style={[styles.replyContainer, replyContainer]}
350+
>
348351
<Reply
349352
styles={{ messageContainer: { maxWidth: vw(60) } }}
350353
/>

0 commit comments

Comments
 (0)