Skip to content

6.x.x rc #696

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 20 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
2bc40d4
chore: setup release for v6 rc
szuperaz Mar 3, 2025
a224563
feat: drop generics for custom typing
szuperaz Mar 3, 2025
3814fd8
Merge pull request #692 from GetStream/drop-generics
szuperaz Mar 5, 2025
1b745fe
chore: use image_url instead of img_url in tests (as img_url is depre…
szuperaz Mar 5, 2025
17bc676
feat: add support for @ngx-translate/core@16
szuperaz Mar 5, 2025
1eeb655
Merge pull request #693 from GetStream/use-ngx-translate-16
szuperaz Mar 5, 2025
bdc7890
fix: remove stream-chat module augmentation from stream-chat-angular
szuperaz Mar 7, 2025
ca48896
Merge pull request #694 from GetStream/drop-generics-fixes
szuperaz Mar 7, 2025
4b4642d
chore: turn off dry run
szuperaz Mar 7, 2025
f260fbe
chore(release): 6.0.0-rc.1 [skip ci]
semantic-release-bot Mar 7, 2025
7e62ad6
refactor: move SDK custom fields to separate file
szuperaz Mar 7, 2025
87880f2
docs: update docs links
szuperaz Mar 10, 2025
658cca3
fix: remove x-stream-client compatibility code
szuperaz Mar 10, 2025
0c4ded4
chore(release): 6.0.0-rc.2 [skip ci]
semantic-release-bot Mar 10, 2025
f192929
Merge branch 'master' into 6.x.x-rc
szuperaz Mar 20, 2025
3999ce7
chore(release): 6.0.0-rc.3 [skip ci]
semantic-release-bot Mar 20, 2025
903d37b
Merge branch 'master' into 6.x.x-rc
szuperaz Apr 23, 2025
3e79600
chore(release): 6.0.0-rc.4 [skip ci]
semantic-release-bot Apr 23, 2025
c6dfd6c
feat: integrate stream-chat@rc13
szuperaz Apr 29, 2025
17d6918
chore(release): 6.0.0-rc.5 [skip ci]
semantic-release-bot Apr 29, 2025
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
6 changes: 2 additions & 4 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@ on:
push:
branches:
- master
- angular-19
- test-update
- fix-voice-recording
- 6.x.x-rc
pull_request:
branches:
- master
- 5.x.x-beta
- 6.x.x-rc
jobs:
workflow:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

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

## Docs

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

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.

Expand Down
7 changes: 5 additions & 2 deletions copy-generated-service-docs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,18 @@ fs.readdir(sourcePath, (err: any, files: string[]) => {
`\n` +
`title: ${file.replace('.md', '')}` +
`\n` +
`slug: /chat/docs/sdk/angular/services/${file.replace('.md', '')}/` +
`slug: /chat/docs/sdk/angular/v6-rc/services/${file.replace(
'.md',
''
)}/` +
`\n` +
`---` +
'\n\n' +
data
.replace(`# Class: ${file.replace('.md', '')}`, '')
.replace(
/\b(?!README)(\w+)\.md\b/g,
'/chat/docs/sdk/angular/services/$1'
'/chat/docs/sdk/angular/v6-rc/services/$1'
)
.replace(/•\s/g, '')
.replace(/▸\s/g, '')
Expand Down
Loading