diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fcb5578d..a9dcb020 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,6 +21,7 @@ jobs: needs: [publish] runs-on: ubuntu-latest steps: + - uses: actions/checkout@v4 - name: Create release run: | version=$(echo ${{ github.ref_name }} | sed 's/^v//') diff --git a/CHANGELOG.md b/CHANGELOG.md index 95cf85c2..a89633c1 100644 --- a/CHANGELOG.md +++ b/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 - chore: add api lite readme diff --git a/pubspec.yaml b/pubspec.yaml index c5c295d9..f7a57f88 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: matrix description: Matrix Dart SDK -version: 0.27.0 +version: 0.28.0 homepage: https://famedly.com repository: https://github.com/famedly/matrix-dart-sdk.git issue_tracker: https://github.com/famedly/matrix-dart-sdk/issues diff --git a/scripts/integration-server-conduit.sh b/scripts/integration-server-conduit.sh index 3a22a957..0de7783e 100755 --- a/scripts/integration-server-conduit.sh +++ b/scripts/integration-server-conduit.sh @@ -1,5 +1,6 @@ #!/usr/bin/env bash docker run -d \ + -e CONDUIT_CONFIG="" \ -e CONDUIT_SERVER_NAME="famedlysdk.test" \ -e CONDUIT_PORT="80" \ -e CONDUIT_DATABASE_BACKEND="rocksdb" \ @@ -10,4 +11,4 @@ -e CONDUIT_MAX_CONCURRENT_REQUESTS="100" \ -e CONDUIT_LOG="info,rocket=off,_=off,sled=off" \ $NETWORK \ - --name conduit -p 80:80 matrixconduit/matrix-conduit:latest + --name conduit -p 80:80 matrixconduit/matrix-conduit:v0.6.0