Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .github/workflows/changelog-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v2
with:
ref: develop
ref: V8-release
# pulls all commits (needed for semantic release to correctly version)
fetch-depth: '0'
# pulls all tags (needed for semantic release to correctly version)
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Generate Changelog
id: generate_changelog
run: |
GITHUB_REF='refs/heads/develop' yarn extract-changelog
GITHUB_REF='refs/heads/V8-release' yarn extract-changelog
echo "Changelog script finished! Checking if there are changes..."
CHANGELOG_PREVIEW=$(cat NEXT_RELEASE_CHANGELOG.md || true)

Expand Down
2 changes: 1 addition & 1 deletion package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"path": "0.12.7",
"react-native-markdown-package": "1.8.2",
"react-native-url-polyfill": "^2.0.0",
"stream-chat": "^9.36.1",
"stream-chat": "^9.41.1",
"use-sync-external-store": "^1.5.0"
},
"peerDependencies": {
Expand Down
9 changes: 8 additions & 1 deletion package/src/store/OfflineDB.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AbstractOfflineDB, StreamChat } from 'stream-chat';
import { AbstractOfflineDB, ExecuteBatchDBQueriesType, StreamChat } from 'stream-chat';
import type {
DBGetAppSettingsType,
DBGetChannelsForQueryType,
Expand Down Expand Up @@ -67,6 +67,13 @@ export class OfflineDB extends AbstractOfflineDB {

addPendingTask = api.addPendingTask;

// This is needed as compatibility for a V9 only feature.
updatePendingTask = (): Promise<ExecuteBatchDBQueriesType> => {
return new Promise((resolve) => {
resolve([]);
});
};

deletePendingTask = api.deletePendingTask;

deleteReaction = api.deleteReaction;
Expand Down
8 changes: 4 additions & 4 deletions package/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8335,10 +8335,10 @@ stdin-discarder@^0.2.2:
resolved "https://registry.yarnpkg.com/stdin-discarder/-/stdin-discarder-0.2.2.tgz#390037f44c4ae1a1ae535c5fe38dc3aba8d997be"
integrity sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==

stream-chat@^9.36.1:
version "9.36.1"
resolved "https://registry.yarnpkg.com/stream-chat/-/stream-chat-9.36.1.tgz#b452369fa933c156fa57f52a8c3a276c36fc5de7"
integrity sha512-bui8a9kjqd80LXXMbvIzrdg2FL7GIgU/Z/reliPgdstIe3HgLfECS8wIAJSySULemWoMNTGjAy8+o9oOYH2Plg==
stream-chat@^9.41.1:
version "9.41.1"
resolved "https://registry.yarnpkg.com/stream-chat/-/stream-chat-9.41.1.tgz#a877c8aa800d78b497eec2fad636345d4422309c"
integrity sha512-W8zjfINYol2UtdRMz2t/NN2GyjDrvb4pJgKmhtuRYzCY1u0Cjezcsu5OCNgyAM0QsenlY6tRqnvAU8Qam5R49Q==
dependencies:
"@types/jsonwebtoken" "^9.0.8"
"@types/ws" "^8.5.14"
Expand Down
Loading