Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/stream_chat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Unreleased

🐞 Fixed

- Fixed a deprecation warning from `equatable` causing CI analysis to fail.

## 9.26.0

✅ Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ import 'package:stream_chat/stream_chat.dart';
import 'package:web_socket_channel/web_socket_channel.dart';

///
// `EquatableMixin` is deprecated in equatable ≥2.1.0 in favour of
// `with Equatable`, but switching would change the mixin type in the class
// hierarchy (e.g. `error is EquatableMixin` → false), which is a breaking
// change under semver. Migrate this when the next major version is cut.
// ignore: deprecated_member_use
class StreamChatError with EquatableMixin implements Exception {
///
const StreamChatError(this.message);
Expand Down
Loading