Skip to content

Commit a35074a

Browse files
authored
Merge pull request #453 from Baseflow/maintenance/dependency_update
Updates all dependencies to their latest versions.
2 parents 32b71c1 + e276188 commit a35074a

File tree

6 files changed

+21
-18
lines changed

6 files changed

+21
-18
lines changed

flutter_cache_manager/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [3.3.2] - 2024-04-25
2+
* Updates dependencies to their latest versions.
3+
14
## [3.3.1] - 2023-07-03
25
* Support Dart 3.0.0 for http ^1.0.0 and file ^7.0.0
36
* Update example

flutter_cache_manager/lib/src/result/download_progress.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ import 'package:flutter_cache_manager/src/result/file_response.dart';
22

33
/// Progress of the file that is being downloaded from the [originalUrl].
44
class DownloadProgress extends FileResponse {
5-
const DownloadProgress(String originalUrl, this.totalSize, this.downloaded)
6-
: super(originalUrl);
5+
const DownloadProgress(super.originalUrl, this.totalSize, this.downloaded);
76

87
/// download progress as an double between 0 and 1.
98
/// When the final size is unknown or the downloaded size exceeds the total

flutter_cache_manager/pubspec.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_cache_manager
22
description: Generic cache manager for flutter. Saves web files on the storages of the device and saves the cache info using sqflite.
3-
version: 3.3.1
3+
version: 3.3.2
44
homepage: https://github.com/Baseflow/flutter_cache_manager/tree/develop/flutter_cache_manager
55
topics:
66
- cache
@@ -10,20 +10,20 @@ environment:
1010

1111
dependencies:
1212
clock: ^1.1.0
13-
collection: ^1.15.0
14-
file: '>=6.1.4 <8.0.0'
13+
collection: ^1.18.0
14+
file: ^7.0.0
1515
flutter:
1616
sdk: flutter
17-
http: '>=0.13.0 <2.0.0'
18-
path: ^1.8.0
19-
path_provider: ^2.0.0
20-
rxdart: '>=0.26.0 <0.28.0'
21-
sqflite: ^2.0.0+4
22-
uuid: '>=3.0.0 <5.0.0'
17+
http: ^1.2.1
18+
path: ^1.9.0
19+
path_provider: ^2.1.3
20+
rxdart: ^0.27.7
21+
sqflite: ^2.3.3
22+
uuid: ^4.4.0
2323

2424
dev_dependencies:
2525
build_runner: ^2.0.0
26-
flutter_lints: ^2.0.1
26+
flutter_lints: ^3.0.2
2727
flutter_test:
2828
sdk: flutter
2929
mockito: ^5.0.0

flutter_cache_manager_firebase/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [2.0.2] - 2024-04-25
2+
* Updates dependencies to their latest versions.
3+
14
## [2.0.1] - 2021-08-27
25
* Update dependencies
36

flutter_cache_manager_firebase/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_cache_manager_firebase
22
description: CacheManager implementation for firebase_storage. Uses the gs:// as key and translates to https://
3-
version: 2.0.1
3+
version: 2.0.2
44
homepage: https://github.com/Baseflow/flutter_cache_manager
55

66
environment:
@@ -10,9 +10,9 @@ dependencies:
1010
flutter:
1111
sdk: flutter
1212
flutter_cache_manager: ^3.0.0
13-
firebase_storage: ">=8.0.0 <11.0.0"
14-
path_provider: ^2.0.0
15-
path: ^1.8.0
13+
firebase_storage: ^11.7.4
14+
path_provider: ^2.1.3
15+
path: ^1.9.0
1616

1717
dev_dependencies:
1818
flutter_test:
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import 'package:flutter_test/flutter_test.dart';
21

3-
import 'package:flutter_cache_manager_firebase/flutter_cache_manager_firebase.dart';
42

53
void main() {}

0 commit comments

Comments
 (0)