Skip to content

Commit 3758f0b

Browse files
committed
Merge branch '6.x.x-rc' into 7.x.x-beta
2 parents 2705784 + 658cca3 commit 3758f0b

File tree

77 files changed

+1515
-1098
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+1515
-1098
lines changed

.github/workflows/workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ on:
33
push:
44
branches:
55
- master
6-
- 6.x.x-beta
6+
- 6.x.x-rc
77
pull_request:
88
branches:
99
- master
10-
- 6.x.x-beta
10+
- 6.x.x-rc
1111
jobs:
1212
workflow:
1313
runs-on: ubuntu-latest
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
fetch-depth: 0
2222
- name: Cache node modules
23-
uses: actions/cache@v1
23+
uses: actions/cache@v4
2424
with:
2525
path: ~/.npm
2626
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
- [Register](https://getstream.io/chat/trial/) to get an API key for Stream Chat
1212
- [Angular Chat Tutorial](https://getstream.io/chat/angular/tutorial/)
13-
- [Docs](https://getstream.io/chat/docs/sdk/angular/)
13+
- [Docs](https://getstream.io/chat/docs/sdk/angular/v6-rc/)
1414
- [Chat UI Kit](https://getstream.io/chat/ui-kit/)
1515
- [Demo application](https://angular-chat-demo-getstreamio.vercel.app/)
1616
- [Codesandbox](https://codesandbox.io/p/devbox/stream-chat-angular-sample-app-rc3hyw)
@@ -33,7 +33,7 @@ For complete pricing and details visit our [Chat Pricing Page](https://getstream
3333

3434
## Docs
3535

36-
The [docs](https://getstream.io/chat/docs/sdk/angular/) provide a brief description about the components and services in the library.
36+
The [docs](https://getstream.io/chat/docs/sdk/angular/v6-rc/) provide a brief description about the components and services in the library.
3737

3838
The Angular library is created using the [stream-chat-js](https://github.com/getstream/stream-chat-js) library. For the most common use cases our services should give a nice abstraction over this library, however you might need it for more advanced customization, the [documentation](https://getstream.io/chat/docs/js/) is on our website.
3939

copy-generated-service-docs.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ fs.readdir(sourcePath, (err: any, files: string[]) => {
3636
`\n` +
3737
`title: ${file.replace('.md', '')}` +
3838
`\n` +
39-
`slug: /chat/docs/sdk/angular/v6-rc/services/${file.replace('.md', '')}/` +
39+
`slug: /chat/docs/sdk/angular/v6-rc/services/${file.replace(
40+
'.md',
41+
'',
42+
)}/` +
4043
`\n` +
4144
`---` +
4245
'\n\n' +
@@ -45,7 +48,7 @@ fs.readdir(sourcePath, (err: any, files: string[]) => {
4548
.replace(`# Class: \`abstract\` ${file.replace('.md', '')}`, '')
4649
.replace(
4750
/\b(?!README)(\w+)\.md\b/g,
48-
'/chat/docs/sdk/angular/services/$1',
51+
'/chat/docs/sdk/angular/v6-rc/services/$1',
4952
)
5053
.replace(/\s/g, '')
5154
.replace(/\s/g, '')

0 commit comments

Comments
 (0)