Skip to content

Commit

Permalink
chore: bump dio to 5.1.2 & bump qiniu_sdk_base to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lijy91 committed May 20, 2023
1 parent b635570 commit 8e55dec
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 15 deletions.
1 change: 0 additions & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ linter:
# - prefer_constructors_over_static_methods
- prefer_contains
# - prefer_double_quotes
- prefer_equal_for_default_values
# - prefer_expression_function_bodies
- prefer_final_fields
# - prefer_final_in_for_each
Expand Down
6 changes: 3 additions & 3 deletions apps/flutter_distributor_desktop/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ void main() {
}

class MyApp extends StatelessWidget {
const MyApp({super.key});
const MyApp({Key? key}) : super(key: key);

// This widget is the root of your application.
@override
Expand All @@ -30,8 +30,6 @@ class MyApp extends StatelessWidget {
}

class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});

// This widget is the home page of your application. It is stateful, meaning
// that it has a State object (defined below) that contains fields that affect
// how it looks.
Expand All @@ -43,6 +41,8 @@ class MyHomePage extends StatefulWidget {

final String title;

const MyHomePage({Key? key, required this.title}) : super(key: key);

@override
State<MyHomePage> createState() => _MyHomePageState();
}
Expand Down
16 changes: 12 additions & 4 deletions packages/flutter_app_publisher/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ packages:
dependency: "direct main"
description:
name: dio
sha256: "7d328c4d898a61efc3cd93655a0955858e29a0aa647f0f9e02d59b3bb275e2e8"
sha256: "347d56c26d63519552ef9a569f2a593dda99a81fdbdff13c584b7197cfe05059"
url: "https://pub.dev"
source: hosted
version: "4.0.6"
version: "5.1.2"
file:
dependency: transitive
description:
Expand Down Expand Up @@ -250,10 +250,10 @@ packages:
dependency: "direct main"
description:
name: qiniu_sdk_base
sha256: eac52d09840708f27099e125009329c4c9b554626f4b7b6883763652b36eef36
sha256: "256eaa6920489d12c534093e61d12232b6252355edc3ef179041bcc0a8746336"
url: "https://pub.dev"
source: hosted
version: "0.3.3"
version: "0.5.0"
shell_executor:
dependency: "direct main"
description:
Expand Down Expand Up @@ -293,6 +293,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "1.3.2"
uuid:
dependency: transitive
description:
name: uuid
sha256: "648e103079f7c64a36dc7d39369cabb358d377078a051d6ae2ad3aa539519313"
url: "https://pub.dev"
source: hosted
version: "3.0.7"
xml:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions packages/flutter_app_publisher/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ environment:

dependencies:
app_package_publisher: ^0.3.1
dio: ^4.0.4
dio: ^5.1.2
googleapis: ^8.1.0
googleapis_auth: ^1.3.0
parse_app_package: ^0.3.1
qiniu_sdk_base: ^0.3.2
qiniu_sdk_base: ^0.5.0
shell_executor: ^0.1.2
dev_dependencies:
dependency_validator: ^3.0.0
16 changes: 12 additions & 4 deletions packages/flutter_distributor/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,10 @@ packages:
dependency: "direct main"
description:
name: dio
sha256: "7d328c4d898a61efc3cd93655a0955858e29a0aa647f0f9e02d59b3bb275e2e8"
sha256: "347d56c26d63519552ef9a569f2a593dda99a81fdbdff13c584b7197cfe05059"
url: "https://pub.dev"
source: hosted
version: "4.0.6"
version: "5.1.2"
file:
dependency: transitive
description:
Expand Down Expand Up @@ -343,10 +343,10 @@ packages:
dependency: transitive
description:
name: qiniu_sdk_base
sha256: eac52d09840708f27099e125009329c4c9b554626f4b7b6883763652b36eef36
sha256: "256eaa6920489d12c534093e61d12232b6252355edc3ef179041bcc0a8746336"
url: "https://pub.dev"
source: hosted
version: "0.3.3"
version: "0.5.0"
recase:
dependency: transitive
description:
Expand Down Expand Up @@ -401,6 +401,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "1.3.2"
uuid:
dependency: transitive
description:
name: uuid
sha256: "648e103079f7c64a36dc7d39369cabb358d377078a051d6ae2ad3aa539519313"
url: "https://pub.dev"
source: hosted
version: "3.0.7"
vector_math:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_distributor/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:
app_package_maker: ^0.3.1
app_package_publisher: ^0.3.1
args: ^2.2.0
dio: ^4.0.4
dio: ^5.1.2
flutter_app_builder: ^0.3.1
flutter_app_packager: ^0.3.2
flutter_app_publisher: ^0.3.1
Expand Down

0 comments on commit 8e55dec

Please sign in to comment.