Skip to content
This repository was archived by the owner on Jul 19, 2025. It is now read-only.

Commit 2b56883

Browse files
committed
Update dependencies
1 parent 7fadd9e commit 2b56883

File tree

8 files changed

+143
-142
lines changed

8 files changed

+143
-142
lines changed

.metadata

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# This file should be version controlled and should not be manually edited.
55

66
version:
7-
revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
7+
revision: 796c8ef79279f9c774545b3771238c3098dbefab
88
channel: stable
99

1010
project_type: package

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.2.2
2+
3+
- Update dependencies
4+
15
## 3.2.1
26

37
- Add `previewBuilder` to allow you to create your own implementation of a link preview. Thanks @CatEatFishs for suggestion!

example/.metadata

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# This file should be version controlled.
55

66
version:
7-
revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
7+
revision: 796c8ef79279f9c774545b3771238c3098dbefab
88
channel: stable
99

1010
project_type: app
@@ -13,26 +13,26 @@ project_type: app
1313
migration:
1414
platforms:
1515
- platform: root
16-
create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
17-
base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
16+
create_revision: 796c8ef79279f9c774545b3771238c3098dbefab
17+
base_revision: 796c8ef79279f9c774545b3771238c3098dbefab
1818
- platform: android
19-
create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
20-
base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
19+
create_revision: 796c8ef79279f9c774545b3771238c3098dbefab
20+
base_revision: 796c8ef79279f9c774545b3771238c3098dbefab
2121
- platform: ios
22-
create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
23-
base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
22+
create_revision: 796c8ef79279f9c774545b3771238c3098dbefab
23+
base_revision: 796c8ef79279f9c774545b3771238c3098dbefab
2424
- platform: linux
25-
create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
26-
base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
25+
create_revision: 796c8ef79279f9c774545b3771238c3098dbefab
26+
base_revision: 796c8ef79279f9c774545b3771238c3098dbefab
2727
- platform: macos
28-
create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
29-
base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
28+
create_revision: 796c8ef79279f9c774545b3771238c3098dbefab
29+
base_revision: 796c8ef79279f9c774545b3771238c3098dbefab
3030
- platform: web
31-
create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
32-
base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
31+
create_revision: 796c8ef79279f9c774545b3771238c3098dbefab
32+
base_revision: 796c8ef79279f9c774545b3771238c3098dbefab
3333
- platform: windows
34-
create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
35-
base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
34+
create_revision: 796c8ef79279f9c774545b3771238c3098dbefab
35+
base_revision: 796c8ef79279f9c774545b3771238c3098dbefab
3636

3737
# User provided section
3838

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 62 additions & 65 deletions
Large diffs are not rendered by default.

example/macos/Runner.xcodeproj/project.pbxproj

Lines changed: 48 additions & 48 deletions
Large diffs are not rendered by default.

example/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,18 @@ dependencies:
3333
cupertino_icons: ^1.0.5
3434
flutter:
3535
sdk: flutter
36-
flutter_chat_types: ^3.6.1
36+
flutter_chat_types: ^3.6.2
3737
flutter_link_previewer:
3838
path: ../
3939

4040
dev_dependencies:
41-
dart_code_metrics: ^5.7.3
41+
dart_code_metrics: ^5.7.5
4242
# The "flutter_lints" package below contains a set of recommended lints to
4343
# encourage good coding practices. The lint set provided by the package is
4444
# activated in the `analysis_options.yaml` file located at the root of your
4545
# package. See that file for information about deactivating specific lint
4646
# rules and activating additional ones.
47-
flutter_lints: ^2.0.1
47+
flutter_lints: ^2.0.2
4848
flutter_test:
4949
sdk: flutter
5050

lib/src/widgets/link_preview.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,11 +259,11 @@ class _LinkPreviewState extends State<LinkPreview>
259259
requestTimeout: widget.requestTimeout,
260260
userAgent: widget.userAgent,
261261
);
262-
_handlePreviewDataFetched(previewData);
262+
await _handlePreviewDataFetched(previewData);
263263
return previewData;
264264
}
265265

266-
void _handlePreviewDataFetched(PreviewData previewData) async {
266+
Future<void> _handlePreviewDataFetched(PreviewData previewData) async {
267267
await Future.delayed(
268268
widget.animationDuration ?? const Duration(milliseconds: 300),
269269
);

pubspec.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: >
33
Customizable link and URL preview extracted from the
44
provided text with the ability to render from the cache. Ideal
55
for chat applications.
6-
version: 3.2.1
6+
version: 3.2.2
77
homepage: https://flyer.chat
88
repository: https://github.com/flyerhq/flutter_link_previewer
99

@@ -14,16 +14,16 @@ environment:
1414
dependencies:
1515
flutter:
1616
sdk: flutter
17-
flutter_chat_types: ^3.6.1
17+
flutter_chat_types: ^3.6.2
1818
flutter_linkify: ^6.0.0
19-
html: ^0.15.3
20-
http: ^1.1.0
19+
html: ^0.15.4
20+
http: '>=0.13.6 <2.0.0'
2121
linkify: ^5.0.0
22-
meta: ^1.9.1
23-
url_launcher: ^6.1.11
22+
meta: '>=1.8.0 <2.0.0'
23+
url_launcher: ^6.1.12
2424

2525
dev_dependencies:
26-
dart_code_metrics: ^5.7.3
27-
flutter_lints: ^2.0.1
26+
dart_code_metrics: ^5.7.5
27+
flutter_lints: ^2.0.2
2828
flutter_test:
2929
sdk: flutter

0 commit comments

Comments
 (0)