mirror of https://github.com/vector-im/riot-web
Merge branch 'develop' into t3chguy/remove-legacy-header
commit
07ce53ce99
|
@ -65,7 +65,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
id: build-and-push
|
id: build-and-push
|
||||||
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6
|
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
push: true
|
push: true
|
||||||
|
|
|
@ -70,11 +70,27 @@ jobs:
|
||||||
fetch-tags: true
|
fetch-tags: true
|
||||||
token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
||||||
|
|
||||||
- name: Merge develop
|
- name: Prepare Git
|
||||||
run: |
|
run: |
|
||||||
git config --global user.email "releases@riot.im"
|
git config --global user.email "releases@riot.im"
|
||||||
git config --global user.name "RiotRobot"
|
git config --global user.name "RiotRobot"
|
||||||
for REPO in $REPOS; do [ -d "$REPO" ] && git -C "$REPO" merge origin/develop; done
|
|
||||||
|
- name: Merge Element Desktop
|
||||||
|
if: inputs.element-desktop
|
||||||
|
run: |
|
||||||
|
git -C "element-desktop" merge origin/develop
|
||||||
|
- name: Merge Element Web
|
||||||
|
if: inputs.element-web
|
||||||
|
run: |
|
||||||
|
git -C "element-web" merge origin/develop
|
||||||
|
- name: Merge React SDK
|
||||||
|
if: inputs.matrix-react-sdk
|
||||||
|
run: |
|
||||||
|
git -C "matrix-react-sdk" merge origin/develop
|
||||||
|
- name: Merge JS SDK
|
||||||
|
if: inputs.matrix-js-sdk
|
||||||
|
run: |
|
||||||
|
git -C "matrix-js-sdk" merge origin/develop
|
||||||
|
|
||||||
- name: Push staging
|
- name: Push staging
|
||||||
run: for REPO in $REPOS; do [ -d "$REPO" ] && git -C "$REPO" push origin staging; done
|
run: for REPO in $REPOS; do [ -d "$REPO" ] && git -C "$REPO" push origin staging; done
|
||||||
|
|
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,3 +1,13 @@
|
||||||
|
Changes in [1.11.79](https://github.com/element-hq/element-web/releases/tag/v1.11.79) (2024-10-01)
|
||||||
|
==================================================================================================
|
||||||
|
* No changes
|
||||||
|
|
||||||
|
## ✨ Features
|
||||||
|
|
||||||
|
* [Backport staging] Allow joining calls and video rooms without enabling the labs flags ([#106](https://github.com/element-hq/matrix-react-sdk/pull/106)). Contributed by @RiotRobot.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Changes in [1.11.78](https://github.com/element-hq/element-web/releases/tag/v1.11.78) (2024-09-24)
|
Changes in [1.11.78](https://github.com/element-hq/element-web/releases/tag/v1.11.78) (2024-09-24)
|
||||||
==================================================================================================
|
==================================================================================================
|
||||||
## ✨ Features
|
## ✨ Features
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "element-web",
|
"name": "element-web",
|
||||||
"version": "1.11.78",
|
"version": "1.11.79",
|
||||||
"description": "A feature-rich client for Matrix.org",
|
"description": "A feature-rich client for Matrix.org",
|
||||||
"author": "New Vector Ltd.",
|
"author": "New Vector Ltd.",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
Loading…
Reference in New Issue