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
3 changes: 1 addition & 2 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ on:
push:
branches:
- master
- 6.x.x-rc
- next
pull_request:
branches:
- master
- 6.x.x-rc
jobs:
workflow:
runs-on: ubuntu-latest
Expand Down
19 changes: 13 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,30 +52,37 @@ Check out our current openings and apply via [Stream's website](https://getstrea

### Install with NPM

Run this command if you are using **Angular 19**:
Supported Angular versions: **Angular 15-20**

Run this command if you are using **Angular 20**:

```shell
npm install stream-chat-angular stream-chat @ngx-translate/core@15 ngx-float-ui@19
# Not all dependencies support Anglar 20 yet, so --force is required
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@19 --force
```

Supported Angular versions: **Angular 15-18**
Run this command if you are using **Angular 19**:

```shell
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@19
```

Run this command if you are using **Angular 18**:

```shell
npm install stream-chat-angular stream-chat ngx-float-ui@18
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@18
```

Run this command if you are using **Angular 17**:

```shell
npm install stream-chat-angular stream-chat ngx-float-ui@17
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@17
```

Run this command if you are using **Angular 16**:

```shell
npm install stream-chat-angular stream-chat ngx-float-ui@16
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@16
```

Run this command if you are using **Angular 15**:
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
"branches": [
"master",
{
"name": "6.x.x-rc",
"prerelease": "rc",
"channel": "rc"
"name": "next",
"prerelease": "next",
"channel": "next"
}
],
"dryRun": false,
Expand Down
24 changes: 16 additions & 8 deletions projects/stream-chat-angular/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,30 +51,37 @@ Check out our current openings and apply via [Stream's website](https://getstrea

### Install with NPM

Run this command if you are using **Angular 19**:
Supported Angular versions: **Angular 15-20**

Run this command if you are using **Angular 20**:

```shell
npm install stream-chat-angular stream-chat @ngx-translate/core@15 ngx-float-ui@19
# Not all dependencies support Anglar 20 yet, so --force is required
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@19 --force
```

Supported Angular versions: **Angular 15-18**
Run this command if you are using **Angular 19**:

```shell
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@19
```

Run this command if you are using **Angular 18**:

```shell
npm install stream-chat-angular stream-chat ngx-float-ui@18
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@18
```

Run this command if you are using **Angular 17**:

```shell
npm install stream-chat-angular stream-chat ngx-float-ui@17
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@17
```

Run this command if you are using **Angular 16**:

```shell
npm install stream-chat-angular stream-chat ngx-float-ui@16
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@16
```

Run this command if you are using **Angular 15**:
Expand All @@ -85,8 +92,6 @@ npm install stream-chat-angular stream-chat @ngx-translate/core@14 ngx-float-ui@

Supported node verisons: 18+

```

## Sample App

This repository includes a sample app to test our library.
Expand Down Expand Up @@ -126,4 +131,7 @@ Run `npm start:customizations-example` and navigate to `http://localhost:4200/`.
## Local development

Run `npm install` in the root of the project. You can use the `npm run start:dev` command to start the SampleApp with automatic reloading.

```

```
6 changes: 3 additions & 3 deletions 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": "6.0.0",
"version": "6.1.0-next.2",
"description": "Angular components to create chat conversations or livestream style chat",
"author": "GetStream",
"homepage": "https://getstream.io/chat/",
Expand All @@ -17,8 +17,8 @@
}
},
"peerDependencies": {
"@angular/common": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"@angular/common": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0",
"@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0",
"@breezystack/lamejs": "^1.2.7",
"@ngx-translate/core": "^14.0.0 || ^15.0.0 || ^16.0.0",
"rxjs": "^7.4.0",
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 = '6.0.0';
export const version = '6.1.0-next.2';