Skip to content

Commit db4a1b1

Browse files
committed
v3.0.23 release
1 parent bf07e03 commit db4a1b1

File tree

6 files changed

+20
-10
lines changed

6 files changed

+20
-10
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
Changelog
22
=========
3+
## v3.0.23
4+
### update
5+
* Fixed a file uploading bug in React Native.
6+
* Fixed minor bugs related to null check.
7+
38
## v3.0.22
49
### update
510
* Fixed a bug in calling markAsRead().

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@ SendBird-SDK-JavaScript
2727
# [Documentation](https://docs.sendbird.com/javascript)
2828

2929

30-
## Upgrading to v3.0.22
30+
## Upgrading to v3.0.23
3131
If you want to check the record of other version, go to [Change Log](https://github.com/smilefam/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md).
32-
* Fixed a bug in calling markAsRead().
33-
* Added supports for video/image thumbnail generations and file encryptio
3432
n/access control.
33+
* Fixed a file uploading bug in React Native.
34+
* Fixed minor bugs related to null check.
35+
3536

3637

3738
## [Change Log](https://github.com/smilefam/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md)

SendBird.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ interface SendBird_Instance {
6666
setBackgroundState(): void;
6767
setForegroundState(): void;
6868

69+
// State change should be disabled when image picker is loaded in Android.
70+
disableStateChange(): void;
71+
enableStateChange(): void;
72+
6973
currentUser: User;
7074
GroupChannel: GroupChannel;
7175
OpenChannel: OpenChannel;

SendBird.min.js

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird",
3-
"version": "3.0.22",
3+
"version": "3.0.23",
44
"authors": [
55
"SendBird <[email protected]>"
66
],

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird",
3-
"version": "3.0.22",
3+
"version": "3.0.23",
44
"description": "SendBird JavaScript SDK",
55
"main": "SendBird.min.js",
66
"dependencies": {

0 commit comments

Comments
 (0)