Skip to content
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
207a5b5
feat(llc): add support for sharing live and static locations
xsahil03x Jul 14, 2025
bf1cd72
chore: minor improvements
xsahil03x Jul 14, 2025
7c53f16
chore: run formatter
xsahil03x Jul 14, 2025
b7c8550
chore: minor improvement
xsahil03x Jul 14, 2025
0d29e17
chore: improve location attachment option
xsahil03x Jul 14, 2025
79bca6c
chore: apply review suggestion
xsahil03x Jul 14, 2025
c1dd0ef
chore: remove dead code
xsahil03x Jul 14, 2025
c0faec4
chore: add client.dart tests
xsahil03x Jul 14, 2025
bdd5b2a
chore: add channel.dart tests
xsahil03x Jul 14, 2025
0de479e
test: fix failing tests
xsahil03x Jul 14, 2025
3eb8ada
chore: add user_api_test.dart
xsahil03x Jul 14, 2025
9690aa7
chore: update CHANGELOG.md
xsahil03x Jul 14, 2025
192cc35
chore: add event_resolvers and event_controller test
xsahil03x Jul 14, 2025
1d21e9b
chore: fix analysis
xsahil03x Jul 14, 2025
849900a
chore: add location_test.dart
xsahil03x Jul 14, 2025
5d64700
chore: cleanup and minor fixes
xsahil03x Jul 15, 2025
a6965cb
chore: fix test
xsahil03x Jul 15, 2025
2017556
Merge remote-tracking branch 'origin/v10.0.0' into feat/location-atta…
xsahil03x Jul 21, 2025
7016d00
refactor(llc): group event listeners using `region` comments
xsahil03x Jul 21, 2025
4e9141c
chore: format
xsahil03x Jul 21, 2025
c91ca64
feat(persistence): add support for location persistence
xsahil03x Jul 21, 2025
e1a6469
refactor: remove draftMessageId from message entities
xsahil03x Jul 21, 2025
9e9d2dc
Merge remote-tracking branch 'origin/v10.0.0' into feat/shared-locati…
xsahil03x Jul 23, 2025
ebb5b43
refactor: make `createdByDeviceId` nullable
xsahil03x Jul 23, 2025
69f4a3e
chore: bump schema version to 23
xsahil03x Jul 23, 2025
3ce0681
chore: fix lint
xsahil03x Jul 23, 2025
1075d8c
fix: use correct DAO for pinned message reactions
xsahil03x Jul 23, 2025
9d8ef58
Update packages/stream_chat_persistence/lib/src/db/drift_chat_databas…
xsahil03x Jul 24, 2025
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
5 changes: 5 additions & 0 deletions melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ command:
# List of all the dependencies used in the project.
dependencies:
async: ^2.11.0
avatar_glow: ^3.0.0
cached_network_image: ^3.3.1
chewie: ^1.8.1
collection: ^1.17.2
Expand All @@ -44,13 +45,16 @@ command:
file_selector: ^1.0.3
flutter_app_badger: ^1.5.0
flutter_local_notifications: ^18.0.1
flutter_map: ^8.1.1
flutter_map_animations: ^0.9.0
flutter_markdown: ^0.7.2+1
flutter_portal: ^1.1.4
flutter_secure_storage: ^9.2.2
flutter_slidable: ^3.1.1
flutter_svg: ^2.0.10+1
freezed_annotation: ">=2.4.1 <4.0.0"
gal: ^2.3.1
geolocator: ^13.0.0
get_thumbnail_video: ^0.7.3
go_router: ^14.6.2
http_parser: ^4.0.2
Expand All @@ -60,6 +64,7 @@ command:
jose: ^0.3.4
json_annotation: ^4.9.0
just_audio: ">=0.9.38 <0.11.0"
latlong2: ^0.9.1
logging: ^1.2.0
lottie: ^3.1.2
media_kit: ^1.1.10+1
Expand Down
11 changes: 11 additions & 0 deletions packages/stream_chat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## Upcoming Beta

✅ Added

- Added comprehensive location sharing support with static and live location features:
- `Channel.sendStaticLocation()` - Send a static location message to the channel
- `Channel.startLiveLocationSharing()` - Start sharing live location with automatic updates
- `Channel.activeLiveLocations` - Track members active live location shares in the channel
- `Client.activeLiveLocations` - Access current user active live location shares across channels
- Location event listeners for `locationShared`, `locationUpdated`, and `locationExpired` events

## Upcoming

🐞 Fixed
Expand Down
Loading
Loading