Skip to content

Commit ef2d927

Browse files
committed
Merge branch 'release/1.11.35/master'
2 parents 88778c1 + e89e8e7 commit ef2d927

24 files changed

Lines changed: 440 additions & 91 deletions

.github/workflows/ci-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
jobs:
1616
build:
1717
name: Build
18-
runs-on: macos-15
18+
runs-on: macos-26
1919

2020
# Concurrency group not needed as this workflow only runs on develop which we always want to test.
2121

.github/workflows/ci-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
jobs:
1717
tests:
1818
name: Tests
19-
runs-on: macos-15
19+
runs-on: macos-26
2020

2121
concurrency:
2222
# When running on develop, use the sha to allow all runs of this workflow to run concurrently.

.github/workflows/ci-ui-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
tests:
1414
name: UI Tests
15-
runs-on: macos-15
15+
runs-on: macos-26
1616

1717
concurrency:
1818
# Only allow a single run of this workflow on each branch, automatically cancelling older runs.

.github/workflows/release-alpha.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
if: contains(github.event.pull_request.labels.*.name, 'Trigger-PR-Build')
1818

1919
name: Release
20-
runs-on: macos-15
20+
runs-on: macos-26
2121

2222
concurrency:
2323
# Only allow a single run of this workflow on each branch, automatically cancelling older runs.

CHANGES.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## Changes in 1.11.35 (2026-03-03)
2+
3+
✨ Features
4+
5+
- Show a permanent disclaimer banner when unverified. ([#8004](https://github.com/element-hq/element-ios/pull/8004))
6+
7+
🙌 Improvements
8+
9+
- Jitsi doesn't allow name change now. ([#8003](https://github.com/element-hq/element-ios/pull/8003))
10+
11+
🧱 Build
12+
13+
- Support for building with Xcode 26 ([#8000](https://github.com/element-hq/element-ios/issues/8000))
14+
115
## Changes in 1.11.34 (2026-01-06)
216

317
🙌 Improvements

Config/AppVersion.xcconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
//
1616

1717
// Version
18-
MARKETING_VERSION = 1.11.34
19-
CURRENT_PROJECT_VERSION = 1.11.34
18+
MARKETING_VERSION = 1.11.35
19+
CURRENT_PROJECT_VERSION = 1.11.35

Config/BuildSettings.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -462,4 +462,8 @@ final class BuildSettings: NSObject {
462462
/// when it is detected that the homeserver is running Matrix 2.0. Set this to `nil` until you
463463
/// are ready to migrate your users.
464464
static let replacementApp: ReplacementApp? = .init()
465+
466+
// MARK: - Verification Required Banner
467+
468+
static let verificationRequiredBannerLearnMoreURL = URL(string: "https://docs.element.io/latest/element-support/device-verification/how-to-verify-devices")!
465469
}

0 commit comments

Comments
 (0)