Skip to content

Commit 5027a0a

Browse files
authored
Merge pull request #701 from GetStream/next
Support for Angular 20
2 parents 51540c7 + e8ac331 commit 5027a0a

File tree

6 files changed

+37
-23
lines changed

6 files changed

+37
-23
lines changed

.github/workflows/workflow.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ on:
33
push:
44
branches:
55
- master
6-
- 6.x.x-rc
6+
- next
77
pull_request:
88
branches:
99
- master
10-
- 6.x.x-rc
1110
jobs:
1211
workflow:
1312
runs-on: ubuntu-latest

README.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,30 +52,37 @@ Check out our current openings and apply via [Stream's website](https://getstrea
5252

5353
### Install with NPM
5454

55-
Run this command if you are using **Angular 19**:
55+
Supported Angular versions: **Angular 15-20**
56+
57+
Run this command if you are using **Angular 20**:
5658

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

61-
Supported Angular versions: **Angular 15-18**
64+
Run this command if you are using **Angular 19**:
65+
66+
```shell
67+
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@19
68+
```
6269

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

6572
```shell
66-
npm install stream-chat-angular stream-chat ngx-float-ui@18
73+
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@18
6774
```
6875

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

7178
```shell
72-
npm install stream-chat-angular stream-chat ngx-float-ui@17
79+
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@17
7380
```
7481

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

7784
```shell
78-
npm install stream-chat-angular stream-chat ngx-float-ui@16
85+
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@16
7986
```
8087

8188
Run this command if you are using **Angular 15**:

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
"branches": [
5151
"master",
5252
{
53-
"name": "6.x.x-rc",
54-
"prerelease": "rc",
55-
"channel": "rc"
53+
"name": "next",
54+
"prerelease": "next",
55+
"channel": "next"
5656
}
5757
],
5858
"dryRun": false,

projects/stream-chat-angular/README.md

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,30 +51,37 @@ Check out our current openings and apply via [Stream's website](https://getstrea
5151

5252
### Install with NPM
5353

54-
Run this command if you are using **Angular 19**:
54+
Supported Angular versions: **Angular 15-20**
55+
56+
Run this command if you are using **Angular 20**:
5557

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

60-
Supported Angular versions: **Angular 15-18**
63+
Run this command if you are using **Angular 19**:
64+
65+
```shell
66+
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@19
67+
```
6168

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

6471
```shell
65-
npm install stream-chat-angular stream-chat ngx-float-ui@18
72+
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@18
6673
```
6774

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

7077
```shell
71-
npm install stream-chat-angular stream-chat ngx-float-ui@17
78+
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@17
7279
```
7380

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

7683
```shell
77-
npm install stream-chat-angular stream-chat ngx-float-ui@16
84+
npm install stream-chat-angular stream-chat @ngx-translate/core@16 ngx-float-ui@16
7885
```
7986

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

8693
Supported node verisons: 18+
8794

88-
```
89-
9095
## Sample App
9196

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

128133
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.
134+
135+
```
136+
129137
```

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": "6.0.0",
3+
"version": "6.1.0-next.2",
44
"description": "Angular components to create chat conversations or livestream style chat",
55
"author": "GetStream",
66
"homepage": "https://getstream.io/chat/",
@@ -17,8 +17,8 @@
1717
}
1818
},
1919
"peerDependencies": {
20-
"@angular/common": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
21-
"@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
20+
"@angular/common": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0",
21+
"@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0",
2222
"@breezystack/lamejs": "^1.2.7",
2323
"@ngx-translate/core": "^14.0.0 || ^15.0.0 || ^16.0.0",
2424
"rxjs": "^7.4.0",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '6.0.0';
1+
export const version = '6.1.0-next.2';

0 commit comments

Comments
 (0)