Skip to content

Commit 8a2789c

Browse files
Merge branch 'develop' into textfield_clear_race_condition
2 parents faac6ab + 7dd9fbf commit 8a2789c

File tree

25 files changed

+300
-176
lines changed

25 files changed

+300
-176
lines changed

.github/actions/bootstrap/action.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,6 @@ runs:
55
steps:
66
- run: echo "IMAGE=${ImageOS}" >> $GITHUB_ENV
77
shell: bash
8-
- run: echo "$HOME/.mint/bin" >> $GITHUB_PATH
9-
shell: bash
10-
- name: Cache Mint
11-
uses: actions/cache@v4
12-
id: mint-cache
13-
with:
14-
path: ~/.mint
15-
key: ${{ env.IMAGE }}-mint-${{ hashFiles('**/Mintfile') }}
16-
restore-keys: ${{ env.IMAGE }}-mint-
178
- uses: ./.github/actions/ruby-cache
189
- uses: ./.github/actions/xcode-cache
1910
- run: ./Scripts/bootstrap.sh

.github/actions/xcode-cache/action.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ runs:
55
steps:
66
- run: echo "IMAGE=${ImageOS}-${ImageVersion}" >> $GITHUB_ENV
77
shell: bash
8-
- run: echo "$HOME/.mint/bin" >> $GITHUB_PATH
9-
shell: bash
108
- uses: mikehardy/buildcache-action@v2
119
with:
1210
cache_key: ${{ env.IMAGE }}-buildcache-

.github/workflows/cron-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
INSTALL_ALLURE: true
5050
INSTALL_YEETD: true
5151
INSTALL_IPSW: true
52-
SKIP_MINT_BOOTSTRAP: true
52+
SKIP_SWIFT_BOOTSTRAP: true
5353
- uses: ./.github/actions/setup-ios-runtime
5454
if: ${{ matrix.setup_runtime }}
5555
timeout-minutes: 60

.github/workflows/smoke-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
env:
172172
INSTALL_ALLURE: true
173173
INSTALL_YEETD: true
174-
SKIP_MINT_BOOTSTRAP: true
174+
SKIP_SWIFT_BOOTSTRAP: true
175175
- name: Run UI Tests (Debug)
176176
run: bundle exec fastlane test_e2e_mock device:"${{ env.IOS_SIMULATOR_DEVICE }}" batch:'${{ matrix.batch }}' test_without_building:true
177177
timeout-minutes: 100

.github/workflows/sonar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: ./.github/actions/bootstrap
2222
env:
2323
INSTALL_SONAR: true
24-
SKIP_MINT_BOOTSTRAP: true
24+
SKIP_SWIFT_BOOTSTRAP: true
2525

2626
- uses: actions/github-script@v6
2727
id: get_pr_number

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Agents should optimize for API stability, backwards compatibility, accessibility
1212
• Xcode: 15.x or newer (Apple Silicon supported)
1313
• Platforms / deployment targets: Use the values set in Package.swift/podspecs; do not lower targets without approval
1414
• CI: GitHub Actions (assume PR validation for build + tests + lint)
15-
• Linters & docs: SwiftLint via Mint
15+
• Linters & docs: SwiftLint and SwiftFormat
1616

1717
### Project layout (high level)
1818

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

66
### ✅ Added
77
- Add `toolbarThemed(content:)` for creating custom views with themed navigation bar [#953](https://github.com/GetStream/stream-chat-swiftui/pull/953)
8+
- Add support for downloading file attachments [#952](https://github.com/GetStream/stream-chat-swiftui/pull/952)
89
### 🐞 Fixed
910
- Fix updating back button tint with `ColorPalette.navigationBarTintColor` [#953](https://github.com/GetStream/stream-chat-swiftui/pull/953)
10-
- Add support for downloading file attachments [#952](https://github.com/GetStream/stream-chat-swiftui/pull/952)
11+
- Fix swipe to reply enabled when quoting a message is disabled [#977](https://github.com/GetStream/stream-chat-swiftui/pull/957)
12+
- Fix composer not showing images in the composer when editing signed attachments [#956](https://github.com/GetStream/stream-chat-swiftui/pull/956)
13+
- Fix replacing an image while editing a message not showing the new image in the message list [#956](https://github.com/GetStream/stream-chat-swiftui/pull/956)
14+
- Improve precision when scrolling to the newest message with long text #958
1115

1216
# [4.88.0](https://github.com/GetStream/stream-chat-swiftui/releases/tag/4.88.0)
1317
_September 10, 2025_

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ GEM
335335
trailblazer-option (>= 0.1.1, < 0.2.0)
336336
uber (< 0.2.0)
337337
retriable (3.1.2)
338-
rexml (3.4.1)
338+
rexml (3.4.2)
339339
rouge (3.28.0)
340340
rubocop (1.38.0)
341341
json (~> 2.3)

Githubfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
export ALLURECTL_VERSION='2.16.0'
44
export XCRESULTS_VERSION='1.19.1'
55
export YEETD_VERSION='1.0'
6-
export MINT_VERSION='0.17.5'
76
export SONAR_VERSION='6.2.1.4610'
87
export IPSW_VERSION='3.1.592'
98
export INTERFACE_ANALYZER_VERSION='1.0.7'
9+
export SWIFT_LINT_VERSION='0.55.1'
10+
export SWIFT_FORMAT_VERSION='0.47.12'
11+
export SWIFT_GEN_VERSION='6.5.1'

Mintfile

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)