Skip to content

Commit 9627ff7

Browse files
authored
Merge pull request #33 from sendbird/release/v1.0.1
[SDKRLSD-456] Release packages v1.0.1
2 parents c95ed8b + 931af81 commit 9627ff7

File tree

109 files changed

+1609
-1584
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+1609
-1584
lines changed

.eslintrc.js

+7
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,12 @@ module.exports = {
2424
'@typescript-eslint/ban-types': 'off',
2525
'@typescript-eslint/ban-ts-comment': 'off',
2626
'@typescript-eslint/no-var-requires': 'off',
27+
'@typescript-eslint/no-unused-vars': [
28+
'error',
29+
{
30+
'argsIgnorePattern': '^_',
31+
'varsIgnorePattern': '^_',
32+
},
33+
],
2734
},
2835
};

CHANGELOG.md

+13-18
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,52 @@
11
# Changelog
22

3-
# [1.0.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.4...v1.0.0) (2022-07-26)
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
45

5-
**Note:** Version bump only for package sendbird-uikit-react-native
6+
## [1.0.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0...v1.0.1) (2022-08-09)
67

78

9+
### Bug Fixes
810

11+
* **uikit:** fixed createFileService.expo to work as expected ([876d72c](https://github.com/sendbird/sendbird-uikit-react-native/commit/876d72c2a4f13079e44d55032460a94d04d7c5b3))
912

1013

11-
# Changelog
14+
### Improvements
1215

13-
# [1.0.0-rc.4](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.3...v1.0.0-rc.4) (2022-07-26)
16+
* remove React.FC ([303f80b](https://github.com/sendbird/sendbird-uikit-react-native/commit/303f80be04cc4631a6103dad61c4540d9ad7596a))
1417

15-
**Note:** Version bump only for package sendbird-uikit-react-native
1618

1719

20+
# [1.0.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.4...v1.0.0) (2022-07-26)
1821

22+
**Note:** Version bump only for package sendbird-uikit-react-native
1923

2024

21-
# Changelog
2225

23-
# [1.0.0-rc.3](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.2...v1.0.0-rc.3) (2022-07-26)
26+
# [1.0.0-rc.4](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.3...v1.0.0-rc.4) (2022-07-26)
2427

2528
**Note:** Version bump only for package sendbird-uikit-react-native
2629

2730

2831

32+
# [1.0.0-rc.3](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.2...v1.0.0-rc.3) (2022-07-26)
33+
34+
**Note:** Version bump only for package sendbird-uikit-react-native
2935

3036

31-
# Changelog
3237

3338
# [1.0.0-rc.2](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.1...v1.0.0-rc.2) (2022-07-26)
3439

3540
**Note:** Version bump only for package sendbird-uikit-react-native
3641

3742

3843

39-
40-
41-
# Changelog
42-
4344
# [1.0.0-rc.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.0...v1.0.0-rc.1) (2022-07-26)
4445

4546
**Note:** Version bump only for package sendbird-uikit-react-native
4647

4748

4849

49-
50-
51-
# Changelog
52-
5350
# [1.0.0-rc.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v0.1.2...v1.0.0-rc.0) (2022-07-26)
5451

5552

@@ -96,8 +93,6 @@
9693

9794

9895

99-
100-
10196
## 0.1.2 (2022-04-26)
10297

10398

lerna.json

+71-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"npmClient": "yarn",
77
"useWorkspaces": true,
8-
"version": "1.0.0",
8+
"version": "1.0.1",
99
"command": {
1010
"publish": {
1111
"conventionalCommits": true,
@@ -14,6 +14,76 @@
1414
},
1515
"version": {
1616
"conventionalCommits": true,
17+
"changelogPreset": {
18+
"name": "conventional-changelog-conventionalcommits",
19+
"types": [
20+
{
21+
"type": "feat",
22+
"section": "Features"
23+
},
24+
{
25+
"type": "feature",
26+
"section": "Features"
27+
},
28+
{
29+
"type": "fix",
30+
"section": "Bug Fixes"
31+
},
32+
{
33+
"type": "refactor",
34+
"section": "Improvements"
35+
},
36+
{
37+
"type": "enhancement",
38+
"section": "Improvements"
39+
},
40+
{
41+
"type": "perf",
42+
"section": "Improvements"
43+
},
44+
{
45+
"type": "docs",
46+
"section": "Documentation"
47+
},
48+
{
49+
"type": "revert",
50+
"section": "Reverts",
51+
"hidden": true
52+
},
53+
{
54+
"type": "style",
55+
"section": "Styles",
56+
"hidden": true
57+
},
58+
{
59+
"type": "chore",
60+
"section": "Miscellaneous Chores",
61+
"hidden": true
62+
},
63+
{
64+
"type": "test",
65+
"section": "Tests",
66+
"hidden": true
67+
},
68+
{
69+
"type": "build",
70+
"section": "Build System",
71+
"hidden": true
72+
},
73+
{
74+
"type": "ci",
75+
"section": "Continuous Integration",
76+
"hidden": true
77+
}
78+
],
79+
"issuePrefixes": [
80+
"#"
81+
],
82+
"issueUrlFormat": "{{host}}/{{owner}}/{{repository}}/issues/{{id}}",
83+
"commitUrlFormat": "{{host}}/{{owner}}/{{repository}}/commit/{{hash}}",
84+
"compareUrlFormat": "{{host}}/{{owner}}/{{repository}}/compare/{{previousTag}}...{{currentTag}}",
85+
"userUrlFormat": "{{host}}/{{user}}"
86+
},
1787
"exact": true,
1888
"gitRemote": "origin",
1989
"message": "chore(release): release packages %s"

package.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"@typescript-eslint/parser": "^5.9.1",
4949
"babel-jest": "^27.4.6",
5050
"chalk": "^4",
51+
"conventional-changelog-conventionalcommits": "^5.0.0",
5152
"del-cli": "^4.0.1",
5253
"eslint": "^8.6.0",
5354
"eslint-config-prettier": "^8.5.0",
@@ -65,9 +66,6 @@
6566
"typedoc": "^0.23.7",
6667
"typescript": "^4.5.4"
6768
},
68-
"resolutions": {
69-
"@types/react": "^17"
70-
},
7169
"jest": {
7270
"testEnvironment": "node",
7371
"moduleFileExtensions": [

packages/uikit-chat-hooks/CHANGELOG.md

+9-19
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,47 @@
11
# Changelog
22

3-
# [1.0.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.4...v1.0.0) (2022-07-26)
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
45

5-
**Note:** Version bump only for package @sendbird/uikit-chat-hooks
6+
## [1.0.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0...v1.0.1) (2022-08-09)
67

78

9+
### Improvements
810

11+
* remove React.FC ([303f80b](https://github.com/sendbird/sendbird-uikit-react-native/commit/303f80be04cc4631a6103dad61c4540d9ad7596a))
912

1013

11-
# Changelog
1214

13-
# [1.0.0-rc.4](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.3...v1.0.0-rc.4) (2022-07-26)
15+
# [1.0.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.4...v1.0.0) (2022-07-26)
1416

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

1719

1820

21+
# [1.0.0-rc.4](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.3...v1.0.0-rc.4) (2022-07-26)
22+
23+
**Note:** Version bump only for package @sendbird/uikit-chat-hooks
1924

2025

21-
# Changelog
2226

2327
# [1.0.0-rc.3](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.2...v1.0.0-rc.3) (2022-07-26)
2428

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

2731

2832

29-
30-
31-
# Changelog
32-
3333
# [1.0.0-rc.2](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.1...v1.0.0-rc.2) (2022-07-26)
3434

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

3737

3838

39-
40-
41-
# Changelog
42-
4339
# [1.0.0-rc.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.0...v1.0.0-rc.1) (2022-07-26)
4440

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

4743

4844

49-
50-
51-
# Changelog
52-
5345
# [1.0.0-rc.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v0.1.2...v1.0.0-rc.0) (2022-07-26)
5446

5547

@@ -63,8 +55,6 @@
6355

6456

6557

66-
67-
6858
## 0.1.2 (2022-04-26)
6959

7060

packages/uikit-chat-hooks/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-chat-hooks",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "React hooks that built with SendbirdChat SDK",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",
@@ -38,10 +38,10 @@
3838
"access": "public"
3939
},
4040
"dependencies": {
41-
"@sendbird/uikit-utils": "1.0.0"
41+
"@sendbird/uikit-utils": "1.0.1"
4242
},
4343
"devDependencies": {
44-
"@types/react": "17.0.2",
44+
"@types/react": "*",
4545
"react": "^16.13.1",
4646
"react-native-builder-bob": "^0.18.0",
4747
"typescript": "^4.1.3"

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

+9-19
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,47 @@
11
# Changelog
22

3-
# [1.0.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.4...v1.0.0) (2022-07-26)
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
45

5-
**Note:** Version bump only for package @sendbird/uikit-react-native-foundation
6+
## [1.0.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0...v1.0.1) (2022-08-09)
67

78

9+
### Improvements
810

11+
* remove React.FC ([303f80b](https://github.com/sendbird/sendbird-uikit-react-native/commit/303f80be04cc4631a6103dad61c4540d9ad7596a))
912

1013

11-
# Changelog
1214

13-
# [1.0.0-rc.4](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.3...v1.0.0-rc.4) (2022-07-26)
15+
# [1.0.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.4...v1.0.0) (2022-07-26)
1416

1517
**Note:** Version bump only for package @sendbird/uikit-react-native-foundation
1618

1719

1820

21+
# [1.0.0-rc.4](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.3...v1.0.0-rc.4) (2022-07-26)
22+
23+
**Note:** Version bump only for package @sendbird/uikit-react-native-foundation
1924

2025

21-
# Changelog
2226

2327
# [1.0.0-rc.3](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.2...v1.0.0-rc.3) (2022-07-26)
2428

2529
**Note:** Version bump only for package @sendbird/uikit-react-native-foundation
2630

2731

2832

29-
30-
31-
# Changelog
32-
3333
# [1.0.0-rc.2](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.1...v1.0.0-rc.2) (2022-07-26)
3434

3535
**Note:** Version bump only for package @sendbird/uikit-react-native-foundation
3636

3737

3838

39-
40-
41-
# Changelog
42-
4339
# [1.0.0-rc.1](https://github.com/sendbird/sendbird-uikit-react-native/compare/v1.0.0-rc.0...v1.0.0-rc.1) (2022-07-26)
4440

4541
**Note:** Version bump only for package @sendbird/uikit-react-native-foundation
4642

4743

4844

49-
50-
51-
# Changelog
52-
5345
# [1.0.0-rc.0](https://github.com/sendbird/sendbird-uikit-react-native/compare/v0.1.2...v1.0.0-rc.0) (2022-07-26)
5446

5547

@@ -68,8 +60,6 @@
6860

6961

7062

71-
72-
7363
## 0.1.2 (2022-04-26)
7464

7565

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-react-native-foundation",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "react-native-uikit",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",
@@ -38,11 +38,11 @@
3838
"access": "public"
3939
},
4040
"dependencies": {
41-
"@sendbird/uikit-utils": "1.0.0"
41+
"@sendbird/uikit-utils": "1.0.1"
4242
},
4343
"devDependencies": {
44-
"@types/react": "17.0.2",
45-
"@types/react-native": "^0.66.15",
44+
"@types/react": "*",
45+
"@types/react-native": "*",
4646
"react": "17.0.2",
4747
"react-native": "0.66.4",
4848
"react-native-builder-bob": "^0.18.0",

0 commit comments

Comments
 (0)