Skip to content

Conversation

xsahil03x
Copy link
Member

@xsahil03x xsahil03x commented Jun 17, 2025

What's Changed

Full Changelog: v9.11.0...v9.12.0

Summary by CodeRabbit

  • New Features
    • Introduced the MessageReminder feature, allowing users to bookmark or set reminders for specific messages within a channel.
  • Chores
    • Updated package versions across all related packages to 9.12.0 for consistency and compatibility.
    • Updated changelogs and example app dependencies to reflect the new version.

Copy link
Contributor

coderabbitai bot commented Jun 17, 2025

Walkthrough

This update synchronizes all relevant packages and example projects to version 9.12.0, updating dependency constraints and changelogs accordingly. A new MessageReminder feature is documented for stream_chat_flutter. No changes to public APIs or code logic were made aside from version bumps and changelog updates.

Changes

Files/Groups Change Summary
melos.yaml, sample_app/pubspec.yaml, .../example/pubspec.yaml (all packages) Updated dependency versions for all relevant Stream Chat packages from 9.11.0 to 9.12.0.
packages/stream_chat/pubspec.yaml, .../pubspec.yaml (all core packages) Incremented package versions to 9.12.0 and updated inter-package dependency constraints to 9.12.0.
packages/stream_chat/CHANGELOG.md, .../CHANGELOG.md (all packages) Added or updated changelog entries for version 9.12.0, documenting dependency updates and new features.
packages/stream_chat/lib/version.dart Updated PACKAGE_VERSION constant from '9.11.0' to '9.12.0'.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant StreamChatFlutter
    participant MessageReminder

    User->>StreamChatFlutter: Selects a message
    StreamChatFlutter->>MessageReminder: Offers reminder/bookmark option
    User->>MessageReminder: Sets reminder/bookmark
    MessageReminder-->>StreamChatFlutter: Stores reminder for message
Loading

Suggested reviewers

  • Brazol

Poem

🐇
Version numbers hop ahead,
From eleven to twelve, well-fed!
Changelogs bloom with what’s anew,
Message reminders join the crew.
Dependencies all in a row,
This rabbit’s glad to see them grow!
Onward, Stream Chat, let’s go!


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 50a2427 and 3c5b39e.

📒 Files selected for processing (18)
  • melos.yaml (1 hunks)
  • packages/stream_chat/CHANGELOG.md (1 hunks)
  • packages/stream_chat/example/pubspec.yaml (1 hunks)
  • packages/stream_chat/lib/version.dart (1 hunks)
  • packages/stream_chat/pubspec.yaml (1 hunks)
  • packages/stream_chat_flutter/CHANGELOG.md (1 hunks)
  • packages/stream_chat_flutter/example/pubspec.yaml (1 hunks)
  • packages/stream_chat_flutter/pubspec.yaml (2 hunks)
  • packages/stream_chat_flutter_core/CHANGELOG.md (1 hunks)
  • packages/stream_chat_flutter_core/example/pubspec.yaml (1 hunks)
  • packages/stream_chat_flutter_core/pubspec.yaml (2 hunks)
  • packages/stream_chat_localizations/CHANGELOG.md (1 hunks)
  • packages/stream_chat_localizations/example/pubspec.yaml (1 hunks)
  • packages/stream_chat_localizations/pubspec.yaml (2 hunks)
  • packages/stream_chat_persistence/CHANGELOG.md (1 hunks)
  • packages/stream_chat_persistence/example/pubspec.yaml (1 hunks)
  • packages/stream_chat_persistence/pubspec.yaml (2 hunks)
  • sample_app/pubspec.yaml (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (10)
  • GitHub Check: analyze_legacy_versions
  • GitHub Check: build (ios)
  • GitHub Check: build (android)
  • GitHub Check: test
  • GitHub Check: stream_chat_localizations
  • GitHub Check: analyze
  • GitHub Check: stream_chat_flutter_core
  • GitHub Check: stream_chat
  • GitHub Check: stream_chat_persistence
  • GitHub Check: stream_chat_flutter
🔇 Additional comments (24)
melos.yaml (2)

83-87: Dependencies bumped to 9.12.0

Aligned stream_chat* package versions with the new release.


1-122: ```shell
#!/bin/bash

Locate any version.dart files in the stream_chat package

echo "Finding version.dart files:"
find packages/stream_chat -type f -name "version.dart"

echo

If found, print their contents for the first 50 lines

for file in $(find packages/stream_chat -type f -name "version.dart"); do
echo "---- $file ----"
head -n 50 "$file"
echo
done

Search for any occurrence of the 9.12.x series in stream_chat

echo "Searching for '9.12.' in stream_chat package:"
grep -R "9.12." -n packages/stream_chat


</details>
<details>
<summary>packages/stream_chat/CHANGELOG.md (1)</summary>

`1-6`: **Changelog header updated for 9.12.0**

Version header and release notes for `MessageReminder` feature are correctly added.

</details>
<details>
<summary>packages/stream_chat_flutter_core/CHANGELOG.md (1)</summary>

`1-5`: **Changelog entry added for StreamMessageReminderListController**

Changelog header updated to 9.12.0 with the new controller entry.

</details>
<details>
<summary>packages/stream_chat_flutter_core/example/pubspec.yaml (1)</summary>

`26-26`: **Example dependency updated to ^9.12.0**

Example app now depends on `stream_chat_flutter_core` v9.12.0.

</details>
<details>
<summary>packages/stream_chat/example/pubspec.yaml (1)</summary>

`27-27`: **Example dependency updated to ^9.12.0**

Example app now depends on `stream_chat` v9.12.0.

</details>
<details>
<summary>packages/stream_chat/lib/version.dart (1)</summary>

`12-12`: **Approve version bump.**

The `PACKAGE_VERSION` constant has been updated to `9.12.0` to align with the release. Ensure this file was generated via `dart tools/generate_version.dart` rather than edited manually.

</details>
<details>
<summary>packages/stream_chat_persistence/example/pubspec.yaml (1)</summary>

`26-27`: **Align example dependencies with release version.**

Updated `stream_chat` and `stream_chat_persistence` to `^9.12.0` in the example’s `pubspec.yaml` to match the new release.

</details>
<details>
<summary>packages/stream_chat/pubspec.yaml (1)</summary>

`4-4`: **Bump package version.**

The package `version` has been set to `9.12.0` to reflect the coordinated release.

</details>
<details>
<summary>packages/stream_chat_localizations/CHANGELOG.md (1)</summary>

`1-3`: **Document new release in changelog.**

Added the `## 9.12.0` entry and updated the `stream_chat_flutter` dependency link to point at version `9.12.0`.

</details>
<details>
<summary>sample_app/pubspec.yaml (1)</summary>

`37-39`: **Update sample app dependencies.**

Bumped `stream_chat_flutter`, `stream_chat_localizations`, and `stream_chat_persistence` dependencies to `^9.12.0` in the sample application.

</details>
<details>
<summary>packages/stream_chat_persistence/CHANGELOG.md (1)</summary>

`1-4`: **Approve changelog entry for 9.12.0**
The new version header and the updated `stream_chat` dependency link follow the existing format and correctly record the bump to 9.12.0.

</details>
<details>
<summary>packages/stream_chat_flutter/example/pubspec.yaml (1)</summary>

`28-30`: **Verify example dependencies updated via Melos**
Example `pubspec.yaml` entries are managed by Melos. Please confirm that `melos.yaml` was bumped to 9.12.0 and `melos bootstrap` was run so these manual edits aren’t out of sync.

</details>
<details>
<summary>packages/stream_chat_persistence/pubspec.yaml (2)</summary>

`4-4`: **Approve package version bump to 9.12.0**
The `version` field has been correctly updated to 9.12.0 for the `stream_chat_persistence` package.

---

`33-33`: **Approve `stream_chat` dependency bump to ^9.12.0**
The peer dependency on `stream_chat` has been aligned to ^9.12.0, matching the core package version.

</details>
<details>
<summary>packages/stream_chat_localizations/example/pubspec.yaml (1)</summary>

`27-28`: **Verify example dependencies updated via Melos**
The example’s `stream_chat_flutter` and `stream_chat_localizations` versions were manually bumped. Ensure `melos.yaml` reflects these changes and `melos bootstrap` was applied.

</details>
<details>
<summary>packages/stream_chat_flutter_core/pubspec.yaml (2)</summary>

`4-4`: **Approve package version bump to 9.12.0**
The `stream_chat_flutter_core` package version has been correctly updated to 9.12.0.

---

`34-34`: **Approve `stream_chat` dependency bump to ^9.12.0**
The core dependency on `stream_chat` now matches the 9.12.0 release across the SDK.

</details>
<details>
<summary>packages/stream_chat_flutter/pubspec.yaml (2)</summary>

`4-4`: **Bump package version to 9.12.0**  
Version updated correctly to reflect the new release.

---

`59-59`: **Update `stream_chat_flutter_core` dependency to ^9.12.0**  
Dependency aligned with the package version bump.

</details>
<details>
<summary>packages/stream_chat_localizations/pubspec.yaml (2)</summary>

`3-3`: **Bump localization package version to 9.12.0**  
Version increment is consistent with the release cycle.

---

`29-29`: **Align `stream_chat_flutter` dependency to ^9.12.0**  
Dependency constraint updated as expected for compatibility.

</details>
<details>
<summary>packages/stream_chat_flutter/CHANGELOG.md (2)</summary>

`1-1`: **Add new changelog entry for version 9.12.0**  
Changelog header correctly reflects the new release version.

---

`3-6`: **Document `MessageReminder` feature in changelog**  
New feature entry is clear, concise, and follows existing formatting.

</details>

</blockquote></details>

</details>
<!-- internal state start -->


<!-- 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= -->

<!-- internal state end -->
<!-- tips_start -->

---

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

<details>
<summary>❤️ Share</summary>

- [X](https://twitter.com/intent/tweet?text=I%20just%20used%20%40coderabbitai%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20the%20proprietary%20code.%20Check%20it%20out%3A&url=https%3A//coderabbit.ai)
- [Mastodon](https://mastodon.social/share?text=I%20just%20used%20%40coderabbitai%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20the%20proprietary%20code.%20Check%20it%20out%3A%20https%3A%2F%2Fcoderabbit.ai)
- [Reddit](https://www.reddit.com/submit?title=Great%20tool%20for%20code%20review%20-%20CodeRabbit&text=I%20just%20used%20CodeRabbit%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20proprietary%20code.%20Check%20it%20out%3A%20https%3A//coderabbit.ai)
- [LinkedIn](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fcoderabbit.ai&mini=true&title=Great%20tool%20for%20code%20review%20-%20CodeRabbit&summary=I%20just%20used%20CodeRabbit%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20proprietary%20code)

</details>

<details>
<summary>🪧 Tips</summary>

### Chat

There are 3 ways to chat with [CodeRabbit](https://coderabbit.ai?utm_source=oss&utm_medium=github&utm_campaign=GetStream/stream-chat-flutter&utm_content=2282):

- Review comments: Directly reply to a review comment made by CodeRabbit. Example:
  - `I pushed a fix in commit <commit_id>, please review it.`
  - `Explain this complex logic.`
  - `Open a follow-up GitHub issue for this discussion.`
- Files and specific lines of code (under the "Files changed" tab): Tag `@coderabbitai` in a new review comment at the desired location with your query. Examples:
  - `@coderabbitai explain this code block.`
  -	`@coderabbitai modularize this function.`
- PR comments: Tag `@coderabbitai` in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
  - `@coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.`
  - `@coderabbitai read src/utils.ts and explain its main purpose.`
  - `@coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.`
  - `@coderabbitai help me debug CodeRabbit configuration file.`

### Support

Need help? Create a ticket on our [support page](https://www.coderabbit.ai/contact-us/support) for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

### CodeRabbit Commands (Invoked using PR comments)

- `@coderabbitai pause` to pause the reviews on a PR.
- `@coderabbitai resume` to resume the paused reviews.
- `@coderabbitai review` to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
- `@coderabbitai full review` to do a full review from scratch and review all the files again.
- `@coderabbitai summary` to regenerate the summary of the PR.
- `@coderabbitai generate docstrings` to [generate docstrings](https://docs.coderabbit.ai/finishing-touches/docstrings) for this PR.
- `@coderabbitai generate sequence diagram` to generate a sequence diagram of the changes in this PR.
- `@coderabbitai resolve` resolve all the CodeRabbit review comments.
- `@coderabbitai configuration` to show the current CodeRabbit configuration for the repository.
- `@coderabbitai help` to get help.

### Other keywords and placeholders

- Add `@coderabbitai ignore` anywhere in the PR description to prevent this PR from being reviewed.
- Add `@coderabbitai summary` to generate the high-level summary at a specific location in the PR description.
- Add `@coderabbitai` anywhere in the PR title to generate the title automatically.

### CodeRabbit Configuration File (`.coderabbit.yaml`)

- You can programmatically configure CodeRabbit by adding a `.coderabbit.yaml` file to the root of your repository.
- Please see the [configuration documentation](https://docs.coderabbit.ai/guides/configure-coderabbit) for more information.
- If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: `# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json`

### Documentation and Community

- Visit our [Documentation](https://docs.coderabbit.ai) for detailed information on how to use CodeRabbit.
- Join our [Discord Community](http://discord.gg/coderabbit) to get help, request features, and share feedback.
- Follow us on [X/Twitter](https://twitter.com/coderabbitai) for updates and announcements.

</details>

<!-- tips_end -->

@xsahil03x xsahil03x requested a review from renefloor June 17, 2025 15:14
@xsahil03x xsahil03x merged commit 344a10d into master Jun 17, 2025
20 checks passed
@xsahil03x xsahil03x deleted the release/v9.12.0 branch June 17, 2025 15:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants