Skip to content

Commit c1edd96

Browse files
xsahil03xclaude
andcommitted
chore(repo): file the floor-raise bullets under a new Upcoming
The rebase onto v10.3.0 renamed each CHANGELOG's 'Upcoming' heading to '10.3.0', which silently moved the floor-raise bullets into an already-released section. Git reported no conflict, because the release edited line 1 while the bullets sit ~35 lines down. Adds a fresh Upcoming section above 10.3.0 in all five packages and moves the bullets into it. stream_chat keeps its 10.3.0 'Changed' section, since the release's own dio bullet still lives there; the other four had sections containing only the floor-raise bullet, so those are removed rather than left empty. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent 1a398e3 commit c1edd96

5 files changed

Lines changed: 27 additions & 17 deletions

File tree

packages/stream_chat/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Upcoming
2+
3+
🔄 Changed
4+
5+
- Raised minimum Dart SDK to `^3.12.0`.
6+
17
## 10.3.0
28

39
✅ Added
@@ -14,7 +20,6 @@
1420
🔄 Changed
1521

1622
- Raised the minimum `dio` version to `^5.11.0`.
17-
- Raised minimum Dart SDK to `^3.12.0`.
1823

1924
🐞 Fixed
2025

packages/stream_chat_flutter/CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Upcoming
2+
3+
🔄 Changed
4+
5+
- Raised minimum Flutter to `>=3.44.0` and Dart SDK to `^3.12.0`.
6+
17
## 10.3.0
28

39
⚠️ Changed
@@ -33,10 +39,6 @@
3339
- Deprecated `height`/`width` of `StreamScrollViewLoadingWidget` in favor of `size`.
3440
- Deprecated `StreamBackButton.showUnreadCount` and `StreamBackButton.channelId` in favor of `unreadIndicator`.
3541

36-
🔄 Changed
37-
38-
- Raised minimum Flutter to `>=3.44.0` and Dart SDK to `^3.12.0`.
39-
4042
🐞 Fixed
4143

4244
- Fixed a failed send surfacing as an unhandled async error when `StreamMessageComposer` has no `onError`; it is now reported through `FlutterError.reportError`.
@@ -1222,7 +1224,6 @@ messages of other users and mark channel as unread from selected message onwards
12221224
* `StreamMessageInput.mediaAttachmentBuilder` to customize the media attachment item shown in
12231225
`MediaAttachmentList`.
12241226

1225-
12261227
- Added `StreamMessageInput.quotedMessageAttachmentThumbnailBuilders` to customize the thumbnail
12271228
builders for quoted
12281229
message attachments.
@@ -2293,7 +2294,6 @@ typedef MessageBuilder = Widget Function(
22932294
> **_NOTE:_** the last parameter is the default `MessageWidget`
22942295
> You can call `.copyWith` to customize just a subset of properties
22952296
2296-
22972297
✅ Added
22982298

22992299
- Added video compress options (frame and quality) to `MessageInput`

packages/stream_chat_flutter_core/CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Upcoming
2+
3+
🔄 Changed
4+
5+
- Raised minimum Flutter to `>=3.44.0` and Dart SDK to `^3.12.0`.
6+
17
## 10.3.0
28

39
✅ Added
@@ -6,10 +12,6 @@
612
- Added `DefaultStreamChannelBuilders`, an inherited widget that supplies default loading and error builders to descendant `StreamChannel`s (resolved via `loadingBuilderOf`/`errorBuilderOf`).
713
- Added `search()`, `searchWithFilter()`, and `clearResults()` to `StreamMessageSearchListController`, `StreamUserListController`, and `StreamMemberListController`. `search()`/`searchWithFilter()` debounce reloads by the search-text length (a filter with no search text reloads immediately) and drop superseded results; `clearResults()` cancels any pending search and clears the results.
814

9-
🔄 Changed
10-
11-
- Raised minimum Flutter to `>=3.44.0` and Dart SDK to `^3.12.0`.
12-
1315
🐞 Fixed
1416

1517
- Fixed `StreamChannel`'s default error state exposing raw error details; it now shows a safe error state (icon, message, and a Try Again button wired to `retry()`) that adapts to the failure type.

packages/stream_chat_localizations/CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1+
## Upcoming
2+
3+
🔄 Changed
4+
5+
- Raised minimum Flutter to `>=3.44.0` and Dart SDK to `^3.12.0`.
6+
17
## 10.3.0
28

39
✅ Added
410

511
- Added connection-error translations (`connectionErrorTitle`/`Description`, `slowConnectionErrorTitle`/`Description`, `genericErrorTitle`/`Description`) for all supported locales.
612

7-
🔄 Changed
8-
9-
- Raised minimum Flutter to `>=3.44.0` and Dart SDK to `^3.12.0`.
10-
1113
## 10.2.0
1214

1315
✅ Added

packages/stream_chat_persistence/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
## 10.3.0
1+
## Upcoming
22

33
🔄 Changed
44

55
- Raised minimum Flutter to `>=3.44.0` and Dart SDK to `^3.12.0`.
66

7+
## 10.3.0
8+
79
🐞 Fixed
810

911
- Fixed truncated channels being the first to fall out of the 250-channel cap returned by `getChannelCids`.
@@ -31,7 +33,6 @@
3133
- Read only the thread replies matching the `PaginationParams` from DB when calling `MessageDao.getThreadMessagesByParentId` instead of reading all replies for the thread and applying pagination in memory.
3234
- Read only the messages matching the `PaginationParams` from DB when calling `PinnedMessageDao.getMessagesByCid` instead of reading all pinned messages for the channel and applying pagination in memory.
3335

34-
3536
🐞 Fixed
3637

3738
- `MessageDao.getThreadMessagesByParentId` now honours all `PaginationParams` cursor variants (`lessThan`/`lessThanOrEqual`/`greaterThan`/`greaterThanOrEqual`) and returns the page of replies closest to the cursor.

0 commit comments

Comments
 (0)