Skip to content

Commit 10eeb6d

Browse files
authored
Merge pull request #401 from GetStream/beta
Beta
2 parents 5557455 + 257e898 commit 10eeb6d

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
"ngx-popperjs": "^12.2.1",
127127
"pretty-bytes": "^5.6.0",
128128
"rxjs": "~6.6.0",
129-
"stream-chat": "^6.4.0",
129+
"stream-chat": "^8.0.0",
130130
"ts-node": "^10.2.1",
131131
"tslib": "^2.3.0",
132132
"uuidv4": "^6.2.12",

projects/stream-chat-angular/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stream-chat-angular",
3-
"version": "4.11.0",
3+
"version": "4.12.0-beta.1",
44
"description": "Angular components to create chat conversations or livestream style chat",
55
"author": "GetStream",
66
"homepage": "https://getstream.io/chat/",
@@ -12,15 +12,15 @@
1212
"@angular/common": "^12.2.0 || ^13.0.0 || ^14.0.0",
1313
"@angular/core": "^12.2.0 || ^13.0.0 || ^14.0.0",
1414
"@ngx-translate/core": "^13.0.0 || ^14.0.0",
15-
"stream-chat": "^6.4.0"
15+
"stream-chat": "^8.0.0"
1616
},
1717
"dependencies": {
1818
"angular-mentions": "^1.4.0",
1919
"@stream-io/transliterate": "^1.5.2",
2020
"@popperjs/core": "^2.11.5",
2121
"dayjs": "^1.10.7",
2222
"emoji-regex": "^10.0.0",
23-
"ngx-popperjs": "^12.2.1",
23+
"ngx-popperjs": "^12.2.1 || ^13.0.0 || ^14.0.0",
2424
"pretty-bytes": "^5.6.0",
2525
"tslib": "^2.3.0",
2626
"uuidv4": "^6.2.12"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '4.11.0';
1+
export const version = '4.12.0-beta.1';

projects/stream-chat-angular/src/lib/chat-client.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ export class ChatClientService<
171171
return;
172172
}
173173
const settings = await this.chatClient.getAppSettings();
174-
this.appSettingsSubject.next(settings.app || {});
174+
this.appSettingsSubject.next((settings.app as AppSettings) || {});
175175
}
176176

177177
/**

0 commit comments

Comments
 (0)