Skip to content

Commit

Permalink
chore(release): 5.0.0-v5.20 [skip ci]
Browse files Browse the repository at this point in the history
# [5.0.0-v5.20](v5.0.0-v5.19...v5.0.0-v5.20) (2024-06-17)

### Features

* Keeping track of channel invite now requires opt-in ([85a44fe](85a44fe))

### BREAKING CHANGES

* Keeping track of pending channel invites is no longer automatic. If you want to enable this behavior you need to initialize the [`ChatClientService`](../services/ChatClientService.mdx) with the following flag:

```typescript
this.chatService.init("<API key>", "<user>", "<token provider>", {
  trackPendingChannelInvites: true,
});
```
  • Loading branch information
semantic-release-bot committed Jun 17, 2024
1 parent e1e81b4 commit 4dc5f09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion projects/stream-chat-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stream-chat-angular",
"version": "5.0.0-v5.19",
"version": "5.0.0-v5.20",
"description": "Angular components to create chat conversations or livestream style chat",
"author": "GetStream",
"homepage": "https://getstream.io/chat/",
Expand Down
2 changes: 1 addition & 1 deletion projects/stream-chat-angular/src/assets/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '5.0.0-v5.19';
export const version = '5.0.0-v5.20';

0 comments on commit 4dc5f09

Please sign in to comment.