Skip to content

Commit 5a4619b

Browse files
committed
chore: bump dependencies
1 parent c9bd7c7 commit 5a4619b

File tree

23 files changed

+96
-25
lines changed

23 files changed

+96
-25
lines changed

examples/flyer_chat/pubspec.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,20 @@ environment:
3030
dependencies:
3131
# The following adds the Cupertino Icons font to your application.
3232
# Use with the CupertinoIcons class for iOS style icons.
33-
cross_cache: ^0.0.11
33+
cross_cache: ^0.0.12
3434
cupertino_icons: ^1.0.8
3535
dio: ^5.8.0+1
3636
file_picker: ^10.0.0
3737
flutter:
3838
sdk: flutter
39-
flutter_chat_core: ^0.0.11
40-
flutter_chat_ui: ^2.0.0-dev.10
39+
flutter_chat_core: ^0.0.12
40+
flutter_chat_ui: ^2.0.0-dev.11
4141
flutter_dotenv: ^5.2.1
4242
flutter_lorem: ^2.0.0
43-
flyer_chat_file_message: ^0.0.11
44-
flyer_chat_image_message: ^0.0.11
45-
flyer_chat_system_message: ^0.0.11
46-
flyer_chat_text_message: ^0.0.11
43+
flyer_chat_file_message: ^0.0.12
44+
flyer_chat_image_message: ^0.0.12
45+
flyer_chat_system_message: ^0.0.12
46+
flyer_chat_text_message: ^0.0.12
4747
google_generative_ai: ^0.4.6
4848
hive: ^4.0.0-dev.2
4949
http: ^1.3.0

packages/cross_cache/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.12
2+
3+
- Version bump to match other packages
4+
15
## 0.0.11
26

37
- Version bump to match other packages

packages/cross_cache/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: cross_cache
2-
version: 0.0.11
2+
version: 0.0.12
33
description: >
44
Cross-platform cache manager for Flutter using IndexedDB for web, file system
55
for mobile and desktop, and Dio for network requests. #cache #indexeddb #dio

packages/flutter_chat_core/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 0.0.12
2+
3+
**⚠️ Breaking changes ⚠️**
4+
5+
- Updated the `Message` model to rename `parentId` to `replyToId`
6+
- The `createdAt` field is now optional in the message model
7+
- The `sending` field has been removed from the message model; instead, you can set `sending: true` in the metadata of the Message model to achieve the same functionality.
8+
- The `isOnlyEmoji` property has been removed from the text message model; to indicate that a message contains only emojis, use `isOnlyEmoji: true` in the metadata of the text message.
9+
- The `firstName` and `lastName` fields in the `User` model have been consolidated into a single `name` field for improved simplicity.
10+
11+
**Other changes**
12+
13+
- Introduced `MessageID` and `UserID` typedefs to provide clearer context, while maintaining their underlying type as `String`s
14+
115
## 0.0.11
216

317
**⚠️ Breaking changes ⚠️**

packages/flutter_chat_core/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flutter_chat_core
2-
version: 0.0.11
2+
version: 0.0.12
33
description: >
44
Core package for Flutter chat apps, complementing flutter_chat_ui.
55
Contains models and core functionality. #chat #ui

packages/flutter_chat_ui/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## 2.0.0-dev.11
2+
3+
**⚠️ Breaking Changes ⚠️**
4+
5+
- Enhanced pagination functionality for the `ChatAnimatedList` widget. If you utilize the `paginationThreshold` parameter, please refer to the comments in the `ChatAnimatedList` widget implementation for detailed guidance.
6+
- Updated the `Message` model to rename `parentId` to `replyToId`
7+
- The `createdAt` field is now optional in the message model
8+
- The `sending` field has been removed from the message model; instead, you can set `sending: true` in the metadata of the Message model to achieve the same functionality.
9+
- The `isOnlyEmoji` property has been removed from the text message model; to indicate that a message contains only emojis, use `isOnlyEmoji: true` in the metadata of the text message.
10+
- The `firstName` and `lastName` fields in the `User` model have been consolidated into a single `name` field for improved simplicity.
11+
12+
**⚠️ New Features ⚠️**
13+
14+
- Added a `headerWidget` to the `ChatMessage` widget, enabling the display of a custom header for each message. You have the flexibility to control the header's position; wrap it with a `Center` widget for centering.
15+
- Introduced new parameters: `sentMessageColumnAlignment`, `receivedMessageColumnAlignment`, `sentMessageRowAlignment`, and `receivedMessageRowAlignment` for the `ChatMessage` widget. These allow for precise control over the positioning of `leadingWidget`, `trailingWidget`, `topWidget`, and `bottomWidget`. Ensure correct defaults are set for proper alignment, especially when using the `topWidget`.
16+
17+
**Other changes**
18+
19+
- Introduced `MessageID` and `UserID` typedefs to provide clearer context, while maintaining their underlying type as `String`s
20+
- Do not show status for received messages
21+
122
## 2.0.0-dev.10
223

324
**⚠️ Breaking Changes ⚠️**

packages/flutter_chat_ui/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flutter_chat_ui
2-
version: 2.0.0-dev.10
2+
version: 2.0.0-dev.11
33
description: >
44
Community-driven, animated chat UI for Flutter with top-tier performance and
55
customization for chat apps and generative AI agents. #firebase #gemini #chatgpt
@@ -11,11 +11,11 @@ environment:
1111
flutter: ">=3.29.0"
1212

1313
dependencies:
14-
cross_cache: ^0.0.11
14+
cross_cache: ^0.0.12
1515
diffutil_dart: ^4.0.1
1616
flutter:
1717
sdk: flutter
18-
flutter_chat_core: ^0.0.11
18+
flutter_chat_core: ^0.0.12
1919
provider: ^6.1.4
2020
scrollview_observer: ^1.26.0
2121

packages/flyer_chat_audio_message/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.12
2+
3+
- Version bump to match other packages
4+
15
## 0.0.11
26

37
- Version bump to match other packages

packages/flyer_chat_audio_message/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flyer_chat_audio_message
2-
version: 0.0.11
2+
version: 0.0.12
33
description: >
44
Audio message package for Flutter chat apps, complementing flutter_chat_ui. #chat #ui
55
homepage: https://flyer.chat

packages/flyer_chat_custom_message/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.12
2+
3+
- Version bump to match other packages
4+
15
## 0.0.11
26

37
- Version bump to match other packages

packages/flyer_chat_custom_message/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flyer_chat_custom_message
2-
version: 0.0.11
2+
version: 0.0.12
33
description: >
44
Custom message package for Flutter chat apps, complementing flutter_chat_ui. #chat #ui
55
homepage: https://flyer.chat

packages/flyer_chat_file_message/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.12
2+
3+
- Do not show status for received messages
4+
15
## 0.0.11
26

37
- Version bump to match other packages

packages/flyer_chat_file_message/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flyer_chat_file_message
2-
version: 0.0.11
2+
version: 0.0.12
33
description: >
44
File message package for Flutter chat apps, complementing flutter_chat_ui. #chat #ui
55
homepage: https://flyer.chat
@@ -12,7 +12,7 @@ environment:
1212
dependencies:
1313
flutter:
1414
sdk: flutter
15-
flutter_chat_core: ^0.0.11
15+
flutter_chat_core: ^0.0.12
1616
intl: '>=0.19.0 <1.0.0'
1717
provider: ^6.1.4
1818

packages/flyer_chat_image_message/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.12
2+
3+
- Do not show status for received messages
4+
15
## 0.0.11
26

37
- Version bump to match other packages

packages/flyer_chat_image_message/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flyer_chat_image_message
2-
version: 0.0.11
2+
version: 0.0.12
33
description: >
44
Image message package for Flutter chat apps, complementing flutter_chat_ui.
55
Supports caching, ThumbHash and BlurHash. #chat #ui
@@ -12,10 +12,10 @@ environment:
1212

1313
dependencies:
1414
blurhash_dart: ^1.2.1
15-
cross_cache: ^0.0.11
15+
cross_cache: ^0.0.12
1616
flutter:
1717
sdk: flutter
18-
flutter_chat_core: ^0.0.11
18+
flutter_chat_core: ^0.0.12
1919
image: ^4.5.4
2020
provider: ^6.1.4
2121
thumbhash: ^0.1.0+1

packages/flyer_chat_location_message/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.12
2+
3+
- Version bump to match other packages
4+
15
## 0.0.11
26

37
- Version bump to match other packages

packages/flyer_chat_location_message/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flyer_chat_location_message
2-
version: 0.0.11
2+
version: 0.0.12
33
description: >
44
Location message package for Flutter chat apps, complementing flutter_chat_ui. #chat #ui
55
homepage: https://flyer.chat

packages/flyer_chat_system_message/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.12
2+
3+
- Version bump to match other packages
4+
15
## 0.0.11
26

37
- Version bump to match other packages

packages/flyer_chat_system_message/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flyer_chat_system_message
2-
version: 0.0.11
2+
version: 0.0.12
33
description: >
44
System message package for Flutter chat apps, complementing flutter_chat_ui. #chat #ui
55
homepage: https://flyer.chat
@@ -12,7 +12,7 @@ environment:
1212
dependencies:
1313
flutter:
1414
sdk: flutter
15-
flutter_chat_core: ^0.0.11
15+
flutter_chat_core: ^0.0.12
1616
provider: ^6.1.4
1717

1818
dev_dependencies:

packages/flyer_chat_text_message/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.12
2+
3+
- Do not show status for received messages
4+
15
## 0.0.11
26

37
- Version bump to match other packages

packages/flyer_chat_text_message/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flyer_chat_text_message
2-
version: 0.0.11
2+
version: 0.0.12
33
description: >
44
Text message package for Flutter chat apps, complementing flutter_chat_ui. #chat #ui
55
homepage: https://flyer.chat
@@ -12,7 +12,7 @@ environment:
1212
dependencies:
1313
flutter:
1414
sdk: flutter
15-
flutter_chat_core: ^0.0.11
15+
flutter_chat_core: ^0.0.12
1616
gpt_markdown: ^1.0.16
1717
provider: ^6.1.4
1818

packages/flyer_chat_video_message/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.12
2+
3+
- Version bump to match other packages
4+
15
## 0.0.11
26

37
- Version bump to match other packages

packages/flyer_chat_video_message/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flyer_chat_video_message
2-
version: 0.0.11
2+
version: 0.0.12
33
description: >
44
Video message package for Flutter chat apps, complementing flutter_chat_ui. #chat #ui
55
homepage: https://flyer.chat

0 commit comments

Comments
 (0)