Skip to content

Commit 04c34a4

Browse files
authored
Merge pull request #58 from sendbird/fix/internal-security
[CLNP-7153] fix/internal-security
2 parents 17da299 + 672c1d4 commit 04c34a4

File tree

4 files changed

+5315
-5599
lines changed

4 files changed

+5315
-5599
lines changed

.prettierrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"plugins": ["@trivago/prettier-plugin-sort-imports"],
23
"printWidth": 120,
34
"tabWidth": 2,
45
"useTabs": false,

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -80,30 +80,30 @@
8080
"devDependencies": {
8181
"@babel/helper-string-parser": "7.25.9",
8282
"@commitlint/config-conventional": "^11.0.0",
83-
"@react-native-community/eslint-config": "^2.0.0",
83+
"@react-native-community/eslint-config": "^3.2.0",
8484
"@release-it/conventional-changelog": "^2.0.0",
85-
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
85+
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
8686
"@types/jest": "^26.0.0",
8787
"@types/react": "^18.0.12",
88-
"@types/react-native": "^0.67.8",
88+
"@types/react-native": "^0.73.0",
8989
"@typescript-eslint/eslint-plugin": "^5.19.0",
9090
"@typescript-eslint/parser": "^5.19.0",
9191
"chalk": "4",
9292
"commitlint": "^11.0.0",
9393
"del-cli": "^4.0.1",
94-
"eslint": "^7.2.0",
94+
"eslint": "^8.57.1",
9595
"eslint-config-prettier": "^7.0.0",
9696
"eslint-plugin-prettier": "^3.1.3",
97-
"jest": "^26.0.1",
98-
"metro-react-native-babel-preset": "^0.67.0",
97+
"jest": "^29.7.0",
98+
"metro-react-native-babel-preset": "^0.76.9",
9999
"pod-install": "^0.1.0",
100-
"prettier": "^2.6.2",
101-
"react": "17.0.2",
102-
"react-native": "0.68.2",
100+
"prettier": "^3.2.5",
101+
"react": "18.3.1",
102+
"react-native": "0.76.9",
103103
"react-native-builder-bob": "^0.18.2",
104-
"release-it": "^14.2.2",
104+
"release-it": "^16.3.0",
105105
"typedoc": "^0.22.16",
106-
"typescript": "4.6.3"
106+
"typescript": "5.4.5"
107107
},
108108
"peerDependencies": {
109109
"react": "*",

src/libs/BridgedQuery.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ export class BridgedQuery<T extends NativeQueryType> implements Query {
1111
return this._hasNext;
1212
}
1313

14-
constructor(protected queryKey: NativeQueryKey, protected type: T, protected binder: NativeBinder) {}
14+
constructor(
15+
protected queryKey: NativeQueryKey,
16+
protected type: T,
17+
protected binder: NativeBinder,
18+
) {}
1519

1620
async next() {
1721
this._isLoading = true;

0 commit comments

Comments
 (0)