Skip to content

Commit 764316a

Browse files
authored
Merge pull request #79 from sendbird/release/2.4.1
[SDKRLSD-736] Release/2.4.1
2 parents 04fa93d + 9ba7a00 commit 764316a

File tree

20 files changed

+186
-108
lines changed

20 files changed

+186
-108
lines changed

.circleci/config.yml

+28-26
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,38 @@
11
### Aliases
22
aliases:
33
- &restore_node_modules_base
4-
key: yarn-base-{{ arch }}-{{ checksum "yarn.lock" }}-v1
4+
key: v{{ .Environment.CACHE_VERSION }}-yarn-base-{{ arch }}-{{ checksum "yarn.lock" }}
55
- &restore_node_modules_packages
6-
key: yarn-packages-{{ arch }}-{{ checksum "yarn.lock" }}-v1
6+
key: v{{ .Environment.CACHE_VERSION }}-yarn-packages-{{ arch }}-{{ checksum "yarn.lock" }}
77
- &install_node_modules
8-
name: Install node_modules
9-
command: yarn install --frozen-lockfiles
8+
name: Install node_modules
9+
command: yarn install --frozen-lockfiles
1010
- &save_node_modules_base
11-
key: yarn-base-{{ arch }}-{{ checksum "yarn.lock" }}-v1
12-
paths:
13-
- ~/.cache/yarn
14-
- node_modules
11+
key: v{{ .Environment.CACHE_VERSION }}-yarn-base-{{ arch }}-{{ checksum "yarn.lock" }}
12+
paths:
13+
- ~/.cache/yarn
14+
- node_modules
1515
- &save_node_modules_packages
16-
key: yarn-packages-{{ arch }}-{{ checksum "yarn.lock" }}-v1
17-
paths:
18-
- sample/node_modules
19-
- packages/uikit-chat-hooks/node_modules
20-
- packages/uikit-react-native/node_modules
21-
- packages/uikit-react-native-foundation/node_modules
22-
- packages/uikit-utils/node_modules
16+
key: v{{ .Environment.CACHE_VERSION }}-yarn-packages-{{ arch }}-{{ checksum "yarn.lock" }}
17+
paths:
18+
- sample/node_modules
19+
- packages/uikit-chat-hooks/node_modules
20+
- packages/uikit-react-native/node_modules
21+
- packages/uikit-react-native-foundation/node_modules
22+
- packages/uikit-utils/node_modules
2323
- &create_app_env
24-
name: Create env.ts
25-
command: echo "export const APP_ID = '${SENDBIRD_APP_ID}';" >> sample/src/env.ts
24+
name: Create env.ts
25+
command: echo "export const APP_ID = '${SENDBIRD_APP_ID}';" >> sample/src/env.ts
2626

2727
### Circle CI
28-
# https://circleci.com/docs/2.0/env-vars/#built-in-environment-variables
29-
# https://circleci.com/docs/2.0/testing-ios/#supported-xcode-versions
28+
# Built-in env vars - https://circleci.com/docs/2.0/env-vars/#built-in-environment-variables
29+
# Xcode versions - https://circleci.com/docs/2.0/testing-ios/#supported-xcode-versions
30+
# Cache key template - https://circleci.com/docs/caching/#using-keys-and-templates
3031
version: 2.1
3132
orbs:
3233
ruby: circleci/[email protected]
3334
macos: circleci/macos@2
35+
3436
parameters:
3537
platform:
3638
type: enum
@@ -40,28 +42,28 @@ parameters:
4042
jobs:
4143
deploy-ios:
4244
macos:
43-
xcode: 13.3.0
44-
resource_class: large
45+
xcode: 14.1.0
46+
resource_class: macos.x86.medium.gen2
4547
steps:
4648
- checkout
4749
- macos/switch-ruby:
48-
version: '2.7.5'
50+
version: '2.7.6'
4951
- ruby/install-deps:
50-
key: gems-ios
52+
key: v{{ .Environment.CACHE_VERSION }}-gems-ios
5153
app-dir: ./sample/ios
5254
- restore_cache: *restore_node_modules_base
5355
- restore_cache: *restore_node_modules_packages
5456
- run: *install_node_modules
5557
- save_cache: *save_node_modules_base
5658
- save_cache: *save_node_modules_packages
5759
- restore_cache:
58-
key: pods-{{ arch }}-{{ checksum "sample/ios/Podfile.lock" }}
60+
key: v{{ .Environment.CACHE_VERSION }}-pods-{{ arch }}-{{ checksum "sample/ios/Podfile.lock" }}
5961
- run:
6062
name: Install pods
6163
working_directory: sample/ios
6264
command: bundle exec pod install
6365
- save_cache:
64-
key: pods-{{ arch }}-{{ checksum "sample/ios/Podfile.lock" }}
66+
key: v{{ .Environment.CACHE_VERSION }}-pods-{{ arch }}-{{ checksum "sample/ios/Podfile.lock" }}
6567
paths:
6668
- sample/ios/Pods
6769
- run: *create_app_env
@@ -87,7 +89,7 @@ jobs:
8789
steps:
8890
- checkout
8991
- ruby/install:
90-
version: '2.7.5'
92+
version: '2.7.6'
9193
- ruby/install-deps:
9294
key: gems-android
9395
app-dir: ./sample/android

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.0...v2.4.1) (2023-03-24)
7+
8+
9+
### Bug Fixes
10+
11+
* **uikit:** fixed connection failure due to duplicate network listener invocation on v4.6.0+ session token connection. ([ff761f3](https://github.com/sendbird/sendbird-uikit-react-native/commit/ff761f3414bb6018813561c0014ff95388827097))
12+
* **utils:** properly retrieve file extensions from URLs that contain query parameters ([7401d55](https://github.com/sendbird/sendbird-uikit-react-native/commit/7401d55d43e1fd0094ea459c554ea85ee48c9f2c))
13+
14+
15+
### Improvements
16+
17+
* refactored createFileService functions and utils structure ([5e44d4f](https://github.com/sendbird/sendbird-uikit-react-native/commit/5e44d4f7a989df54f103efc67f7d18c28405426c))
18+
19+
20+
621
## [2.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.3.0...v2.4.0) (2023-03-15)
722

823

docs-validation/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.0...v2.4.1) (2023-03-24)
7+
8+
**Note:** Version bump only for package @sendbird/docs-validation
9+
10+
11+
12+
13+
614
## [2.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.3.0...v2.4.0) (2023-03-15)
715

816

docs-validation/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/docs-validation",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"private": true,
55
"scripts": {
66
"test": "tsc --project tsconfig.build.json",

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
],
77
"npmClient": "yarn",
88
"useWorkspaces": true,
9-
"version": "2.4.0",
9+
"version": "2.4.1",
1010
"command": {
1111
"publish": {
1212
"conventionalCommits": true,

packages/uikit-chat-hooks/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.0...v2.4.1) (2023-03-24)
7+
8+
**Note:** Version bump only for package @sendbird/uikit-chat-hooks
9+
10+
11+
12+
13+
614
## [2.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.3.0...v2.4.0) (2023-03-15)
715

816

packages/uikit-chat-hooks/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-chat-hooks",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"description": "React hooks that built with SendbirdChat SDK",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",
@@ -38,7 +38,7 @@
3838
"access": "public"
3939
},
4040
"dependencies": {
41-
"@sendbird/uikit-utils": "2.4.0"
41+
"@sendbird/uikit-utils": "2.4.1"
4242
},
4343
"devDependencies": {
4444
"@types/react": "*",

packages/uikit-react-native-foundation/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.0...v2.4.1) (2023-03-24)
7+
8+
**Note:** Version bump only for package @sendbird/uikit-react-native-foundation
9+
10+
11+
12+
13+
614
## [2.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.3.0...v2.4.0) (2023-03-15)
715

816

packages/uikit-react-native-foundation/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-react-native-foundation",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"description": "react-native-uikit",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",
@@ -39,7 +39,7 @@
3939
"access": "public"
4040
},
4141
"dependencies": {
42-
"@sendbird/uikit-utils": "2.4.0"
42+
"@sendbird/uikit-utils": "2.4.1"
4343
},
4444
"devDependencies": {
4545
"@types/react": "*",

packages/uikit-react-native/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.0...v2.4.1) (2023-03-24)
7+
8+
9+
### Bug Fixes
10+
11+
* **uikit:** fixed connection failure due to duplicate network listener invocation on v4.6.0+ session token connection. ([ff761f3](https://github.com/sendbird/sendbird-uikit-react-native/commit/ff761f3414bb6018813561c0014ff95388827097))
12+
13+
14+
### Improvements
15+
16+
* refactored createFileService functions and utils structure ([5e44d4f](https://github.com/sendbird/sendbird-uikit-react-native/commit/5e44d4f7a989df54f103efc67f7d18c28405426c))
17+
18+
19+
620
## [2.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.3.0...v2.4.0) (2023-03-15)
721

822

packages/uikit-react-native/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-react-native",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"description": "react-native-uikit",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",
@@ -42,9 +42,9 @@
4242
"access": "public"
4343
},
4444
"dependencies": {
45-
"@sendbird/uikit-chat-hooks": "2.4.0",
46-
"@sendbird/uikit-react-native-foundation": "2.4.0",
47-
"@sendbird/uikit-utils": "2.4.0"
45+
"@sendbird/uikit-chat-hooks": "2.4.1",
46+
"@sendbird/uikit-react-native-foundation": "2.4.1",
47+
"@sendbird/uikit-utils": "2.4.1"
4848
},
4949
"devDependencies": {
5050
"@bam.tech/react-native-image-resizer": "^3.0.4",

packages/uikit-utils/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.0...v2.4.1) (2023-03-24)
7+
8+
9+
### Bug Fixes
10+
11+
* **utils:** properly retrieve file extensions from URLs that contain query parameters ([7401d55](https://github.com/sendbird/sendbird-uikit-react-native/commit/7401d55d43e1fd0094ea459c554ea85ee48c9f2c))
12+
13+
14+
### Improvements
15+
16+
* refactored createFileService functions and utils structure ([5e44d4f](https://github.com/sendbird/sendbird-uikit-react-native/commit/5e44d4f7a989df54f103efc67f7d18c28405426c))
17+
18+
19+
620
## [2.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.3.0...v2.4.0) (2023-03-15)
721

822

packages/uikit-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-utils",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"description": "UIKit utilities",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

sample/.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.5
1+
2.7.6

sample/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.4.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.4.0...v2.4.1) (2023-03-24)
7+
8+
9+
### Bug Fixes
10+
11+
* **uikit:** fixed connection failure due to duplicate network listener invocation on v4.6.0+ session token connection. ([ff761f3](https://github.com/sendbird/sendbird-uikit-react-native/commit/ff761f3414bb6018813561c0014ff95388827097))
12+
13+
14+
615
## [2.4.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v2.3.0...v2.4.0) (2023-03-15)
716

817

0 commit comments

Comments
 (0)