Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
24de871
chore: upgrade SampleApp and do necessary changes for 0.77
isekovanic Feb 20, 2025
2883894
chore: update more libs
isekovanic Feb 20, 2025
8f297a4
chore: upgrade reanimated and rngh
isekovanic Feb 20, 2025
0d30986
chore: upgrade react-navigation
isekovanic Feb 20, 2025
c5393d6
chore: bump other deps
isekovanic Feb 20, 2025
315273b
chore: bump eslint and all other dev deps
isekovanic Feb 21, 2025
a3d1452
chore: migrate AppDelegate to Swift
isekovanic Feb 21, 2025
b9cc1ac
chore: upgrade typescript app to RN 0.77
isekovanic Feb 21, 2025
8c78887
chore: upgrade eslint & friends on typescript app
isekovanic Feb 21, 2025
d5df36f
chore: migrate AppDelegate to Swift in typescript app
isekovanic Feb 21, 2025
18d431f
fix: add tslint rules and fix some
isekovanic Feb 22, 2025
d85338d
chore: upgrade plugins decl a bit and fix all broken eslint issues
isekovanic Feb 22, 2025
6024adc
fix: some more prettier errors
isekovanic Feb 23, 2025
4d3f6dc
chore: improve typescript app config too
isekovanic Feb 23, 2025
45e7abc
chore: upgrade eslint and all plugins, add new config
isekovanic Feb 23, 2025
83b6ced
chore: fix all lint issues with new versions and update rules
isekovanic Feb 23, 2025
817fade
fix: add warns for prettier
isekovanic Feb 23, 2025
a485531
fix: turn no-undef off
isekovanic Feb 23, 2025
6369d9e
chore: bump prettier on root as well
isekovanic Feb 23, 2025
ddfd124
chore: bump node runner to 22.x, upgrade actions and sample apps
isekovanic Feb 23, 2025
2ce4f6d
fix: revert change to actually update cache
isekovanic Feb 23, 2025
ae76365
fix: add eslint command for debugging
isekovanic Feb 23, 2025
05a3092
fix: print versions for debugging
isekovanic Feb 23, 2025
58f8bb2
fix: temporarily remove prettier warn
isekovanic Feb 23, 2025
8464a3a
fix: more changes for debugging
isekovanic Feb 23, 2025
a829c38
chore: add debug log level
isekovanic Feb 23, 2025
98ea758
fix: bump prettier config and fix rule
isekovanic Feb 23, 2025
91e376a
fix: remove rule again
isekovanic Feb 23, 2025
9830d69
fix: try runnint --write
isekovanic Feb 23, 2025
1d239a6
fix: add extra rules and revert fix
isekovanic Feb 23, 2025
5a0f8d6
chore: bump prettier version again
isekovanic Feb 23, 2025
e0a0e17
fix: try to debug what was fixed
isekovanic Feb 23, 2025
ab444b7
Merge branch 'develop' into chore/eslint-sdk-upgrade
isekovanic Feb 23, 2025
4acd2a9
fix: actually fix the lint issue
isekovanic Feb 23, 2025
43bc9e5
chore: revert extra step
isekovanic Feb 23, 2025
d4b95b1
fix: change prettire rule to warn again
isekovanic Feb 23, 2025
2217e6b
chore: update comment
isekovanic Feb 23, 2025
342f42a
Merge branch 'develop' into chore/eslint-sdk-upgrade
isekovanic Feb 24, 2025
1278dfd
chore: remove sorting plugin
isekovanic Feb 24, 2025
a0bd090
fix: remove rogue rule
isekovanic Feb 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/changelog-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# pulls all tags (needed for semantic release to correctly version)
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
node-version: [22.x]
steps:
- uses: actions/checkout@v3
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install && Build - SDK and Sample App
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/next-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
node-version: [22.x]
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -19,7 +19,7 @@ jobs:
# pulls all tags (needed for semantic release to correctly version)
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
node-version: [22.x]
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -20,7 +20,7 @@ jobs:
# pulls all tags (needed for semantic release to correctly version)
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sample-distribution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install && Build - SDK and Sample App
uses: ./.github/actions/install-and-build-sdk
- name: Cache iOS pods
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: examples/SampleApp/ios/Pods
key: ${{ runner.os }}-pods-${{ hashFiles('examples/SampleApp/ios/Podfile.lock') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sdk-size-metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:

- uses: ./.github/actions/ruby-cache

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 22.x
cache: 'yarn'

- name: Run SDK Size Metrics
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20
v22
8 changes: 4 additions & 4 deletions examples/ExpoMessaging/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7358,10 +7358,10 @@ [email protected], stream-buffers@~2.2.0:
version "0.0.0"
uid ""

[email protected].3:
version "6.6.3"
resolved "https://registry.yarnpkg.com/stream-chat-react-native-core/-/stream-chat-react-native-core-6.6.3.tgz#580225cbcd7a9fbfdb3461f76ef6784908b1533e"
integrity sha512-Oe5AYvamlI2qKO+VjcthaIm/J6+pCQRsVVn5EG5fiakya2sJPF2L3hGBPOjo6MNLe9oz7QKP7jp8U61j9vsqLA==
[email protected].4:
version "6.6.4"
resolved "https://registry.yarnpkg.com/stream-chat-react-native-core/-/stream-chat-react-native-core-6.6.4.tgz#f15c518148640efa30975abf4ae5cda648d8b1ed"
integrity sha512-YT3SY/QHwKboEKbvpe7xermyDsvwNAxe7pbV9VZzvayu066/vTk17uYw1RCGFcLQQsnKNJj8ZFt8j0ZLql4exQ==
dependencies:
"@gorhom/bottom-sheet" "^5.0.6"
dayjs "1.10.5"
Expand Down
1 change: 1 addition & 0 deletions examples/SampleApp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"eslint": "eslint .",
"lint-fix": "eslint . --fix",
"extract-changelog": "FILTER_PATH='examples/SampleApp' TAG_FORMAT=$npm_package_name'@v${version}' node ../../release/extract-changelog.js",
"bootstrap": "yarn install",
Expand Down
8 changes: 4 additions & 4 deletions examples/SampleApp/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7560,10 +7560,10 @@ statuses@~1.5.0:
resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==

[email protected].2:
version "6.6.2"
resolved "https://registry.yarnpkg.com/stream-chat-react-native-core/-/stream-chat-react-native-core-6.6.2.tgz#a32bcf56f1675c60ceeef4507ed43120f659d52d"
integrity sha512-JeDMaVGEUCKYmG+qcbCsUPB7HyxYd4pEAMFXG0O180JOMAqemyjXMquKvGCGF8Q4YZAKUPV71VC/vGLpPDnGQg==
[email protected].4:
version "6.6.4"
resolved "https://registry.yarnpkg.com/stream-chat-react-native-core/-/stream-chat-react-native-core-6.6.4.tgz#f15c518148640efa30975abf4ae5cda648d8b1ed"
integrity sha512-YT3SY/QHwKboEKbvpe7xermyDsvwNAxe7pbV9VZzvayu066/vTk17uYw1RCGFcLQQsnKNJj8ZFt8j0ZLql4exQ==
dependencies:
"@gorhom/bottom-sheet" "^5.0.6"
dayjs "1.10.5"
Expand Down
2 changes: 1 addition & 1 deletion examples/TypeScriptMessaging/.node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
22
8 changes: 4 additions & 4 deletions examples/TypeScriptMessaging/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6951,10 +6951,10 @@ statuses@~1.5.0:
resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==

[email protected].2:
version "6.6.2"
resolved "https://registry.yarnpkg.com/stream-chat-react-native-core/-/stream-chat-react-native-core-6.6.2.tgz#a32bcf56f1675c60ceeef4507ed43120f659d52d"
integrity sha512-JeDMaVGEUCKYmG+qcbCsUPB7HyxYd4pEAMFXG0O180JOMAqemyjXMquKvGCGF8Q4YZAKUPV71VC/vGLpPDnGQg==
[email protected].4:
version "6.6.4"
resolved "https://registry.yarnpkg.com/stream-chat-react-native-core/-/stream-chat-react-native-core-6.6.4.tgz#f15c518148640efa30975abf4ae5cda648d8b1ed"
integrity sha512-YT3SY/QHwKboEKbvpe7xermyDsvwNAxe7pbV9VZzvayu066/vTk17uYw1RCGFcLQQsnKNJj8ZFt8j0ZLql4exQ==
dependencies:
"@gorhom/bottom-sheet" "^5.0.6"
dayjs "1.10.5"
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"execa": "^5.1.1",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"prettier": "3.3.3",
"prettier": "^3.5.1",
"semantic-release": "^19.0.5",
"uglify-js": "^3.19.2"
},
Expand All @@ -31,6 +31,7 @@
"release-next": "yarn lerna-workspaces run release-next",
"extract-changelog": "rm -rf NEXT_RELEASE_CHANGELOG.md && yarn lerna-workspaces run extract-changelog",
"bootstrap": "yarn lerna-workspaces run bootstrap",
"eslint": "yarn lerna-workspaces run eslint",
"lint": "yarn lerna-workspaces run lint",
"lint-fix": "yarn lerna-workspaces run lint-fix",
"build": "yarn lerna-workspaces run build",
Expand Down
8 changes: 0 additions & 8 deletions package/.eslintignore

This file was deleted.

212 changes: 0 additions & 212 deletions package/.eslintrc.json

This file was deleted.

Loading