Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates all dependencies to their latest versions. #453

Merged
merged 2 commits into from
Apr 25, 2024
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
3 changes: 3 additions & 0 deletions flutter_cache_manager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [3.3.2] - 2024-04-25
* Updates dependencies to their latest versions.

## [3.3.1] - 2023-07-03
* Support Dart 3.0.0 for http ^1.0.0 and file ^7.0.0
* Update example
Expand Down
3 changes: 1 addition & 2 deletions flutter_cache_manager/lib/src/result/download_progress.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ import 'package:flutter_cache_manager/src/result/file_response.dart';

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

/// download progress as an double between 0 and 1.
/// When the final size is unknown or the downloaded size exceeds the total
Expand Down
20 changes: 10 additions & 10 deletions flutter_cache_manager/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_cache_manager
description: Generic cache manager for flutter. Saves web files on the storages of the device and saves the cache info using sqflite.
version: 3.3.1
version: 3.3.2
homepage: https://github.com/Baseflow/flutter_cache_manager/tree/develop/flutter_cache_manager
topics:
- cache
Expand All @@ -10,20 +10,20 @@ environment:

dependencies:
clock: ^1.1.0
collection: ^1.15.0
file: '>=6.1.4 <8.0.0'
collection: ^1.18.0
file: ^7.0.0
flutter:
sdk: flutter
http: '>=0.13.0 <2.0.0'
path: ^1.8.0
path_provider: ^2.0.0
rxdart: '>=0.26.0 <0.28.0'
sqflite: ^2.0.0+4
uuid: '>=3.0.0 <5.0.0'
http: ^1.2.1
path: ^1.9.0
path_provider: ^2.1.3
rxdart: ^0.27.7
sqflite: ^2.3.3
uuid: ^4.4.0

dev_dependencies:
build_runner: ^2.0.0
flutter_lints: ^2.0.1
flutter_lints: ^3.0.2
flutter_test:
sdk: flutter
mockito: ^5.0.0
3 changes: 3 additions & 0 deletions flutter_cache_manager_firebase/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [2.0.2] - 2024-04-25
* Updates dependencies to their latest versions.

## [2.0.1] - 2021-08-27
* Update dependencies

Expand Down
8 changes: 4 additions & 4 deletions flutter_cache_manager_firebase/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_cache_manager_firebase
description: CacheManager implementation for firebase_storage. Uses the gs:// as key and translates to https://
version: 2.0.1
version: 2.0.2
homepage: https://github.com/Baseflow/flutter_cache_manager

environment:
Expand All @@ -10,9 +10,9 @@ dependencies:
flutter:
sdk: flutter
flutter_cache_manager: ^3.0.0
firebase_storage: ">=8.0.0 <11.0.0"
path_provider: ^2.0.0
path: ^1.8.0
firebase_storage: ^11.7.4
path_provider: ^2.1.3
path: ^1.9.0

dev_dependencies:
flutter_test:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import 'package:flutter_test/flutter_test.dart';

import 'package:flutter_cache_manager_firebase/flutter_cache_manager_firebase.dart';

void main() {}
Loading