Merge pull request #1777 from famedly/release/v0.28.0
chore: release v0.28.0
This commit is contained in:
commit
df0a67e3b1
|
|
@ -21,6 +21,7 @@ jobs:
|
||||||
needs: [publish]
|
needs: [publish]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
- name: Create release
|
- name: Create release
|
||||||
run: |
|
run: |
|
||||||
version=$(echo ${{ github.ref_name }} | sed 's/^v//')
|
version=$(echo ${{ github.ref_name }} | sed 's/^v//')
|
||||||
|
|
|
||||||
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -1,3 +1,15 @@
|
||||||
|
## [0.28.0] 23rd April 2024
|
||||||
|
This release introduces the new famedly calls, it brings 1:1, mesh and livekit calls support to the matrix dart sdk, read more at: [voip docs](lib/src/voip/README.md)
|
||||||
|
|
||||||
|
|
||||||
|
- feat: famedly calls (td)
|
||||||
|
- chore: create_gh_release job (td)
|
||||||
|
- feat: lcov and tag olm tests (td)
|
||||||
|
- fix: Make room.setPower more type safe and avoid change powerlevel in RAM before sending request to server (krille-chan)
|
||||||
|
- refactor: Use prevBatch from server for pagination in event search (krille-chan)
|
||||||
|
- fix: canChangePowerLevel should return true for own user (krille-chan)
|
||||||
|
|
||||||
|
|
||||||
## [0.27.0] 16th April 2024
|
## [0.27.0] 16th April 2024
|
||||||
|
|
||||||
- chore: add api lite readme
|
- chore: add api lite readme
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
name: matrix
|
name: matrix
|
||||||
description: Matrix Dart SDK
|
description: Matrix Dart SDK
|
||||||
version: 0.27.0
|
version: 0.28.0
|
||||||
homepage: https://famedly.com
|
homepage: https://famedly.com
|
||||||
repository: https://github.com/famedly/matrix-dart-sdk.git
|
repository: https://github.com/famedly/matrix-dart-sdk.git
|
||||||
issue_tracker: https://github.com/famedly/matrix-dart-sdk/issues
|
issue_tracker: https://github.com/famedly/matrix-dart-sdk/issues
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
docker run -d \
|
docker run -d \
|
||||||
|
-e CONDUIT_CONFIG="" \
|
||||||
-e CONDUIT_SERVER_NAME="famedlysdk.test" \
|
-e CONDUIT_SERVER_NAME="famedlysdk.test" \
|
||||||
-e CONDUIT_PORT="80" \
|
-e CONDUIT_PORT="80" \
|
||||||
-e CONDUIT_DATABASE_BACKEND="rocksdb" \
|
-e CONDUIT_DATABASE_BACKEND="rocksdb" \
|
||||||
|
|
@ -10,4 +11,4 @@
|
||||||
-e CONDUIT_MAX_CONCURRENT_REQUESTS="100" \
|
-e CONDUIT_MAX_CONCURRENT_REQUESTS="100" \
|
||||||
-e CONDUIT_LOG="info,rocket=off,_=off,sled=off" \
|
-e CONDUIT_LOG="info,rocket=off,_=off,sled=off" \
|
||||||
$NETWORK \
|
$NETWORK \
|
||||||
--name conduit -p 80:80 matrixconduit/matrix-conduit:latest
|
--name conduit -p 80:80 matrixconduit/matrix-conduit:v0.6.0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue