diff --git a/CHANGELOG.md b/CHANGELOG.md index aeb6de9d0..3a28b45ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog - v3 +## [v3.3.7] (Feb 24 2023) + +Features: +* Add props `activeChannelUrl` to ChannelList to give an option to pragmatically set a channel from a parent component router + ```javascript + const MyChannelList = () => { + const [myActiveChannel] = useState() + return () + } + ``` + +Fixes: +* Fix not showing newly recived messages in channel which has less messages +* Use a real `channel.invitedAt` value when trying to fetch MessageSearchQuery +* Disable the checkbox of the joined users on the InviteUsersModal +* Set the default value of CheckBox component: `@sendbird/uikit-react/ui/CheckBox` as false + ## [v3.3.6] (Feb 13 2023) Fixes: diff --git a/package-lock.json b/package-lock.json index da8c3c467..aa89fd291 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@sendbird/uikit-react", - "version": "3.3.6", + "version": "3.3.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@sendbird/uikit-react", - "version": "3.3.6", + "version": "3.3.7", "license": "SEE LICENSE IN LICENSE.md", "dependencies": { "@sendbird/chat": "^4.2.3", diff --git a/package.json b/package.json index 769da2bac..85bbb8ad0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sendbird/uikit-react", - "version": "3.3.6", + "version": "3.3.7", "description": "React based UI kit for sendbird", "main": "dist/index.js", "style": "dist/index.css",