From 93ad9f2e4a660744d003f0e44c670e4f98dda205 Mon Sep 17 00:00:00 2001 From: piotr-suwala <112620304+piotr-suwala@users.noreply.github.com> Date: Fri, 15 Nov 2024 13:37:24 +0100 Subject: [PATCH] feat(lib): add statusField for channel members (#189) * feat(lib): add statusField for channel memvers * PubNub SDK v0.8.3 release. --------- Co-authored-by: PubNub Release Bot <120067856+pubnub-release-bot@users.noreply.github.com> --- .pubnub.yml | 7 ++++++- lib/package.json | 2 +- .../react-native-group-chat/screens/ordinary/chat/Chat.tsx | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.pubnub.yml b/.pubnub.yml index 1b9f6f9..8c996fd 100644 --- a/.pubnub.yml +++ b/.pubnub.yml @@ -1,11 +1,16 @@ --- name: pubnub-js-chat -version: v0.8.2 +version: v0.8.3 scm: github.com/pubnub/js-chat schema: 1 files: - lib/dist/index.js changelog: + - date: 2024-11-15 + version: v0.8.3 + changes: + - type: feature + text: "Add statusField for channel members." - date: 2024-08-27 version: v0.8.2 changes: diff --git a/lib/package.json b/lib/package.json index e17101a..c77b5ba 100644 --- a/lib/package.json +++ b/lib/package.json @@ -1,6 +1,6 @@ { "name": "@pubnub/chat", - "version": "0.8.2", + "version": "0.8.3", "description": "PubNub JavaScript Chat SDK", "author": "PubNub ", "license": "SEE LICENSE IN LICENSE", diff --git a/samples/react-native-group-chat/screens/ordinary/chat/Chat.tsx b/samples/react-native-group-chat/screens/ordinary/chat/Chat.tsx index 3b2e079..0ee1c11 100644 --- a/samples/react-native-group-chat/screens/ordinary/chat/Chat.tsx +++ b/samples/react-native-group-chat/screens/ordinary/chat/Chat.tsx @@ -9,8 +9,8 @@ import { Platform, Alert, } from "react-native" -import { StackScreenProps } from "@react-navigation/stack" import { GiftedChat, Bubble } from "react-native-gifted-chat" +import { StackScreenProps } from "@react-navigation/stack" import { User, MessageDraft, Message, Channel } from "@pubnub/chat" import { EnhancedIMessage, mapPNMessageToGChatMessage } from "../../../utils"