Skip to content

Commit

Permalink
Merge pull request #158 from sendbird/release/3.4.0
Browse files Browse the repository at this point in the history
chore(SDKRLSD-1099): release 3.4.0
  • Loading branch information
bang9 authored Jan 30, 2024
2 parents 19ad74a + fc6ddd2 commit efe57e3
Show file tree
Hide file tree
Showing 17 changed files with 64 additions and 76 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.3.0...v3.4.0) (2024-01-30)

### Features

- implement zoomable image viewer to FileViewer ([06a4f95](https://github.com/sendbird/sendbird-uikit-react-native/commit/06a4f95b8d7d7b6f574f2d3a4ea15aebbad6e55b))

### Bug Fixes

- replace padding horizontal and vertical ([24f49b4](https://github.com/sendbird/sendbird-uikit-react-native/commit/24f49b4c5631f8a2bf940f3570afa5488d94dd12))

## [3.3.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.2.0...v3.3.0) (2023-11-23)

### Features
Expand Down
64 changes: 3 additions & 61 deletions CHANGELOG_DRAFT.md
Original file line number Diff line number Diff line change
@@ -1,62 +1,4 @@
## v3.3.0
## v3.4.0

- Add typing indicator bubble feature.

`TypingIndicatorBubble` is a new typing indicator UI that can be turned on through `typingIndicatorTypes` option.
When turned on, it will be displayed in `GroupChannelMessageList` upon receiving typing event in real time.

```tsx
import { SendbirdUIKitContainer, TypingIndicatorType } from '@sendbird/uikit-react-native';

const App = () => {
return (
<SendbirdUIKitContainer
uikitOptions={{
groupChannel: {
typingIndicatorTypes: new Set([TypingIndicatorType.Bubble]),
},
}}
/>
);
};
```

- Add `bottomSheetItem` to the props of renderMessage.

`bottomSheetItem` is a new prop for `renderMessage` that can be utilized to add a custom item to the bottom sheet of a message.
It can be used to add a custom menu item to the bottom sheet of a message.

```tsx
import { GroupChannelMessageRenderer } from '@sendbird/uikit-react-native';
import { useBottomSheet } from '@sendbird/uikit-react-native-foundation';

const GroupChannelScreen = () => {
const { openSheet } = useBottomSheet();

const onOpenMessageMenu = () => {
if (!props.bottomSheetItem) return;

openSheet({
...props.bottomSheetItem,
sheetItems: [
// Update bottomSheetItem.sheetItems or append your custom menu item
...props.bottomSheetItem.sheetItems,
{ icon: 'search', title: 'Search', onPress: () => console.log('Search') },
],
});
};

return (
<GroupChannelFragment
renderMessage={(props) => {
return (
<GroupChannelMessageRenderer {...props} onLongPress={() => onOpenMessageMenu(props.bottomSheetItem)} />
);
}}
/>
);
};
```

- Fix the not found `Promise.allSettled` error in Hermes.
- Fix the vertical alignment of iOS TextInput.
- Implemented a zoomable image viewer into FileViewer.
- Changed the horizontal and vertical padding of TextInput to padding with directions.
4 changes: 4 additions & 0 deletions docs-validation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.3.0...v3.4.0) (2024-01-30)

**Note:** Version bump only for package @sendbird/docs-validation

## [3.3.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.2.0...v3.3.0) (2023-11-23)

**Note:** Version bump only for package @sendbird/docs-validation
Expand Down
2 changes: 1 addition & 1 deletion docs-validation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sendbird/docs-validation",
"version": "3.3.0",
"version": "3.4.0",
"private": true,
"scripts": {
"test": "tsc --project tsconfig.build.json",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": ["packages/*", "sample", "docs-validation"],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "3.3.0",
"version": "3.4.0",
"command": {
"publish": {
"conventionalCommits": true,
Expand Down
4 changes: 4 additions & 0 deletions packages/uikit-chat-hooks/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.3.0...v3.4.0) (2024-01-30)

**Note:** Version bump only for package @sendbird/uikit-chat-hooks

## [3.3.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.2.0...v3.3.0) (2023-11-23)

**Note:** Version bump only for package @sendbird/uikit-chat-hooks
Expand Down
6 changes: 3 additions & 3 deletions packages/uikit-chat-hooks/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sendbird/uikit-chat-hooks",
"version": "3.3.0",
"version": "3.4.0",
"description": "A set of React hooks for integrating Sendbird chat functionality into your React app.",
"keywords": [
"sendbird",
Expand Down Expand Up @@ -45,10 +45,10 @@
"access": "public"
},
"dependencies": {
"@sendbird/uikit-utils": "3.3.0"
"@sendbird/uikit-utils": "3.4.0"
},
"devDependencies": {
"@sendbird/uikit-testing-tools": "3.3.0",
"@sendbird/uikit-testing-tools": "3.4.0",
"@types/react": "*",
"react": "17.0.2",
"react-native-builder-bob": "^0.18.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/uikit-react-native-foundation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.3.0...v3.4.0) (2024-01-30)

### Bug Fixes

- replace padding horizontal and vertical ([24f49b4](https://github.com/sendbird/sendbird-uikit-react-native/commit/24f49b4c5631f8a2bf940f3570afa5488d94dd12))

## [3.3.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.2.0...v3.3.0) (2023-11-23)

### Features
Expand Down
4 changes: 2 additions & 2 deletions packages/uikit-react-native-foundation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sendbird/uikit-react-native-foundation",
"version": "3.3.0",
"version": "3.4.0",
"description": "A foundational UI kit for building chat-enabled React Native apps.",
"keywords": [
"sendbird",
Expand Down Expand Up @@ -48,7 +48,7 @@
"access": "public"
},
"dependencies": {
"@sendbird/uikit-utils": "3.3.0"
"@sendbird/uikit-utils": "3.4.0"
},
"devDependencies": {
"@types/react": "*",
Expand Down
10 changes: 10 additions & 0 deletions packages/uikit-react-native/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.3.0...v3.4.0) (2024-01-30)

### Features

- implement zoomable image viewer to FileViewer ([06a4f95](https://github.com/sendbird/sendbird-uikit-react-native/commit/06a4f95b8d7d7b6f574f2d3a4ea15aebbad6e55b))

### Bug Fixes

- replace padding horizontal and vertical ([24f49b4](https://github.com/sendbird/sendbird-uikit-react-native/commit/24f49b4c5631f8a2bf940f3570afa5488d94dd12))

## [3.3.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.2.0...v3.3.0) (2023-11-23)

### Features
Expand Down
8 changes: 4 additions & 4 deletions packages/uikit-react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sendbird/uikit-react-native",
"version": "3.3.0",
"version": "3.4.0",
"description": "Sendbird UIKit for React Native: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.",
"keywords": [
"sendbird",
Expand Down Expand Up @@ -60,10 +60,10 @@
},
"dependencies": {
"@openspacelabs/react-native-zoomable-view": "^2.1.5",
"@sendbird/uikit-chat-hooks": "3.3.0",
"@sendbird/uikit-react-native-foundation": "3.3.0",
"@sendbird/uikit-chat-hooks": "3.4.0",
"@sendbird/uikit-react-native-foundation": "3.4.0",
"@sendbird/uikit-tools": "0.0.1-alpha.58",
"@sendbird/uikit-utils": "3.3.0"
"@sendbird/uikit-utils": "3.4.0"
},
"devDependencies": {
"@bam.tech/react-native-image-resizer": "^3.0.4",
Expand Down
4 changes: 4 additions & 0 deletions packages/uikit-testing-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.3.0...v3.4.0) (2024-01-30)

**Note:** Version bump only for package @sendbird/uikit-testing-tools

## [3.3.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.2.0...v3.3.0) (2023-11-23)

**Note:** Version bump only for package @sendbird/uikit-testing-tools
Expand Down
4 changes: 2 additions & 2 deletions packages/uikit-testing-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sendbird/uikit-testing-tools",
"version": "3.3.0",
"version": "3.4.0",
"private": true,
"description": "UIKit testing tools",
"keywords": [
Expand Down Expand Up @@ -40,7 +40,7 @@
},
"devDependencies": {
"@sendbird/chat": "^4.10.7",
"@sendbird/uikit-utils": "3.3.0",
"@sendbird/uikit-utils": "3.4.0",
"@types/jest": "^29.4.0",
"@types/react": "*",
"@types/react-native": "*",
Expand Down
4 changes: 4 additions & 0 deletions packages/uikit-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.3.0...v3.4.0) (2024-01-30)

**Note:** Version bump only for package @sendbird/uikit-utils

## [3.3.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.2.0...v3.3.0) (2023-11-23)

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/uikit-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sendbird/uikit-utils",
"version": "3.3.0",
"version": "3.4.0",
"description": "A collection of utility functions and constants for building chat UI components with Sendbird UIKit.",
"keywords": [
"sendbird",
Expand Down
4 changes: 4 additions & 0 deletions sample/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.3.0...v3.4.0) (2024-01-30)

**Note:** Version bump only for package @sendbird/uikit-sample-cli

## [3.3.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v3.2.0...v3.3.0) (2023-11-23)

### Features
Expand Down
2 changes: 1 addition & 1 deletion sample/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sendbird/uikit-sample-cli",
"version": "3.3.0",
"version": "3.4.0",
"private": true,
"scripts": {
"android": "concurrently 'yarn start' 'react-native run-android'",
Expand Down

0 comments on commit efe57e3

Please sign in to comment.