From 5c6b2c3207bf735294921ba2db668dcf914f4892 Mon Sep 17 00:00:00 2001 From: ngthailam98 Date: Fri, 26 Jan 2024 21:58:36 +0700 Subject: [PATCH] Update targetSdk + minSdk + update flutter version --- analysis_options.yaml | 1 - android/app/build.gradle | 4 +- android/build.gradle | 6 +- android/gradle.properties | 4 +- .../gradle/wrapper/gradle-wrapper.properties | 2 +- lib/main.config.dart | 162 ++--- lib/main.dart | 1 - .../auth/authen/authen_bottom_sheet.dart | 4 +- .../onboarding/onboarding_bottom_sheet.dart | 4 +- .../page/preferences/preferences_page.dart | 4 +- .../widget/delete_account_button_widget.dart | 4 +- pubspec.lock | 645 +++++++++++------- pubspec.yaml | 4 +- 13 files changed, 489 insertions(+), 356 deletions(-) diff --git a/analysis_options.yaml b/analysis_options.yaml index 197c0db..cdd3587 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -29,6 +29,5 @@ linter: rules: avoid_print: false # Uncomment to disable the `avoid_print` rule prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule - unnecessary_question_mark: false # Additional information about this file can be found at # https://dart.dev/guides/language/analysis-options diff --git a/android/app/build.gradle b/android/app/build.gradle index 87c5b1a..c78eef9 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -49,8 +49,8 @@ android { defaultConfig { applicationId "vn.thailam.flutter_password_saver" - minSdkVersion 21 - targetSdkVersion 31 + minSdkVersion 24 + targetSdkVersion 34 versionCode flutterVersionCode.toInteger() versionName flutterVersionName } diff --git a/android/build.gradle b/android/build.gradle index 4256f91..e06c40a 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,12 +1,12 @@ buildscript { - ext.kotlin_version = '1.6.10' + ext.kotlin_version = '1.8.0' repositories { google() mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:4.1.0' + classpath 'com.android.tools.build:gradle:7.1.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } @@ -26,6 +26,6 @@ subprojects { project.evaluationDependsOn(':app') } -task clean(type: Delete) { +tasks.register("clean", Delete) { delete rootProject.buildDir } diff --git a/android/gradle.properties b/android/gradle.properties index 9806a59..4f9c033 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -2,4 +2,6 @@ org.gradle.jvmargs=-Xmx1536M android.useAndroidX=true android.enableJetifier=true # Prevent crashes on Android 6 according to https://docs.flutter.dev/deployment/android -# android.bundle.enableUncompressedNativeLibs=false \ No newline at end of file +# android.bundle.enableUncompressedNativeLibs=false + +org.gradle.jvmargs=-Xmx1536M --add-exports=java.base/sun.nio.ch=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.io=ALL-UNNAMED --add-exports=jdk.unsupported/sun.misc=ALL-UNNAMED diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties index bc6a58a..cc5527d 100644 --- a/android/gradle/wrapper/gradle-wrapper.properties +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip diff --git a/lib/main.config.dart b/lib/main.config.dart index e4f7317..52789eb 100644 --- a/lib/main.config.dart +++ b/lib/main.config.dart @@ -4,6 +4,9 @@ // InjectableConfigGenerator // ************************************************************************** +// ignore_for_file: type=lint +// coverage:ignore-file + // ignore_for_file: no_leading_underscores_for_library_prefixes import 'package:get_it/get_it.dart' as _i1; import 'package:injectable/injectable.dart' as _i2; @@ -61,17 +64,16 @@ import 'presentation/page/password/create/bloc/password_save_bloc.dart' as _i40; import 'presentation/page/password/list/bloc/password_bloc.dart' as _i52; import 'presentation/page/preferences/bloc/preferences_bloc.dart' as _i41; import 'presentation/page/update_password/bloc/update_password_bloc.dart' - as _i46; // ignore_for_file: unnecessary_lambdas + as _i46; -// ignore_for_file: lines_longer_than_80_chars -/// initializes the registration of provided dependencies inside of [GetIt] +// initializes the registration of main-scope dependencies inside of GetIt _i1.GetIt $initGetIt( - _i1.GetIt get, { + _i1.GetIt getIt, { String? environment, _i2.EnvironmentFilter? environmentFilter, }) { final gh = _i2.GetItHelper( - get, + getIt, environment, environmentFilter, ); @@ -84,133 +86,133 @@ _i1.GetIt $initGetIt( gh.singleton<_i7.SecureStorage>(_i7.SecureStorageImpl()); gh.singleton<_i8.UriHandler>(_i8.UriHandlerImpl()); gh.factory<_i9.AccountPrefRepo>(() => - _i10.AccountPrefRepoImpl(get<_i3.AccountPreferenceLocalDataSource>())); + _i10.AccountPrefRepoImpl(gh<_i3.AccountPreferenceLocalDataSource>())); gh.factory<_i11.AccountPreferenceUseCase>( - () => _i11.AccountPreferenceUseCase(get<_i9.AccountPrefRepo>())); + () => _i11.AccountPreferenceUseCase(gh<_i9.AccountPrefRepo>())); gh.factory<_i12.AuthLocalDataSource>(() => _i12.AuthLocalDataSourceImpl( - get<_i7.SecureStorage>(), - get<_i5.AuthLoginLockDataSource>(), + gh<_i7.SecureStorage>(), + gh<_i5.AuthLoginLockDataSource>(), )); gh.factory<_i13.InfoLocalDataSource>( - () => _i13.InfoLocalDataSourceImpl(get<_i7.SecureStorage>())); + () => _i13.InfoLocalDataSourceImpl(gh<_i7.SecureStorage>())); gh.factory<_i14.InfoRepository>( - () => _i15.InfoRepositoryImpl(get<_i13.InfoLocalDataSource>())); + () => _i15.InfoRepositoryImpl(gh<_i13.InfoLocalDataSource>())); gh.factory<_i16.PasswordLocalDataSource>( () => _i16.PasswordLocalDataSourceImpl( - get<_i7.SecureStorage>(), - get<_i3.AccountPreferenceLocalDataSource>(), + gh<_i7.SecureStorage>(), + gh<_i3.AccountPreferenceLocalDataSource>(), )); gh.factory<_i17.PasswordRepository>( - () => _i18.PasswordRepositoryImpl(get<_i16.PasswordLocalDataSource>())); + () => _i18.PasswordRepositoryImpl(gh<_i16.PasswordLocalDataSource>())); gh.factory<_i19.ReOrderPasswordUseCase>( - () => _i19.ReOrderPasswordUseCase(get<_i17.PasswordRepository>())); + () => _i19.ReOrderPasswordUseCase(gh<_i17.PasswordRepository>())); gh.factory<_i20.SaveInfoUsecase>( - () => _i20.SaveInfoUsecase(get<_i14.InfoRepository>())); + () => _i20.SaveInfoUsecase(gh<_i14.InfoRepository>())); gh.factory<_i21.SavePasswordUsecase>( - () => _i21.SavePasswordUsecase(get<_i17.PasswordRepository>())); + () => _i21.SavePasswordUsecase(gh<_i17.PasswordRepository>())); gh.factory<_i22.SearchInfoUseCase>( - () => _i22.SearchInfoUseCase(get<_i14.InfoRepository>())); + () => _i22.SearchInfoUseCase(gh<_i14.InfoRepository>())); gh.factory<_i23.SearchPasswordUseCase>( - () => _i23.SearchPasswordUseCase(get<_i17.PasswordRepository>())); + () => _i23.SearchPasswordUseCase(gh<_i17.PasswordRepository>())); gh.factory<_i24.UpdatePasswordSettingsUseCase>( - () => _i24.UpdatePasswordSettingsUseCase(get<_i17.PasswordRepository>())); + () => _i24.UpdatePasswordSettingsUseCase(gh<_i17.PasswordRepository>())); gh.factory<_i25.AuthRepository>(() => _i26.AuthRepoitoryImpl( - get<_i12.AuthLocalDataSource>(), - get<_i16.PasswordLocalDataSource>(), - get<_i3.AccountPreferenceLocalDataSource>(), - get<_i5.AuthLoginLockDataSource>(), - get<_i6.BiometricsDataSource>(), + gh<_i12.AuthLocalDataSource>(), + gh<_i16.PasswordLocalDataSource>(), + gh<_i3.AccountPreferenceLocalDataSource>(), + gh<_i5.AuthLoginLockDataSource>(), + gh<_i6.BiometricsDataSource>(), )); gh.factory<_i27.BiometricsUseCase>( - () => _i27.BiometricsUseCase(get<_i25.AuthRepository>())); + () => _i27.BiometricsUseCase(gh<_i25.AuthRepository>())); gh.factory<_i28.CreateAccountUseCase>( - () => _i28.CreateAccountUseCase(get<_i25.AuthRepository>())); + () => _i28.CreateAccountUseCase(gh<_i25.AuthRepository>())); gh.factory<_i29.DeleteAccountUseCase>(() => _i29.DeleteAccountUseCase( - get<_i25.AuthRepository>(), - get<_i4.AppShortcutManager>(), + gh<_i25.AuthRepository>(), + gh<_i4.AppShortcutManager>(), )); gh.factory<_i30.DeleteInfoUseCase>( - () => _i30.DeleteInfoUseCase(get<_i14.InfoRepository>())); + () => _i30.DeleteInfoUseCase(gh<_i14.InfoRepository>())); gh.factory<_i31.DeletePasswordUseCase>( - () => _i31.DeletePasswordUseCase(get<_i17.PasswordRepository>())); + () => _i31.DeletePasswordUseCase(gh<_i17.PasswordRepository>())); gh.factory<_i32.GetAllInfosUseCase>( - () => _i32.GetAllInfosUseCase(get<_i14.InfoRepository>())); + () => _i32.GetAllInfosUseCase(gh<_i14.InfoRepository>())); gh.factory<_i33.GetAllPasswordsUseCase>( - () => _i33.GetAllPasswordsUseCase(get<_i17.PasswordRepository>())); + () => _i33.GetAllPasswordsUseCase(gh<_i17.PasswordRepository>())); gh.factory<_i34.GetCurrentAccountUseCase>( - () => _i34.GetCurrentAccountUseCase(get<_i25.AuthRepository>())); + () => _i34.GetCurrentAccountUseCase(gh<_i25.AuthRepository>())); gh.factory<_i35.GetInfoByIdUseCase>( - () => _i35.GetInfoByIdUseCase(get<_i14.InfoRepository>())); + () => _i35.GetInfoByIdUseCase(gh<_i14.InfoRepository>())); gh.factory<_i36.GetPasswordByIdUseCase>( - () => _i36.GetPasswordByIdUseCase(get<_i17.PasswordRepository>())); + () => _i36.GetPasswordByIdUseCase(gh<_i17.PasswordRepository>())); gh.factory<_i37.InfoBloc>(() => _i37.InfoBloc( - get<_i32.GetAllInfosUseCase>(), - get<_i34.GetCurrentAccountUseCase>(), - get<_i11.AccountPreferenceUseCase>(), - get<_i30.DeleteInfoUseCase>(), - get<_i22.SearchInfoUseCase>(), - get<_i20.SaveInfoUsecase>(), + gh<_i32.GetAllInfosUseCase>(), + gh<_i34.GetCurrentAccountUseCase>(), + gh<_i11.AccountPreferenceUseCase>(), + gh<_i30.DeleteInfoUseCase>(), + gh<_i22.SearchInfoUseCase>(), + gh<_i20.SaveInfoUsecase>(), )); gh.factory<_i38.IsNeedLogInUseCase>( - () => _i38.IsNeedLogInUseCase(get<_i25.AuthRepository>())); + () => _i38.IsNeedLogInUseCase(gh<_i25.AuthRepository>())); gh.factory<_i39.LoginUseCase>( - () => _i39.LoginUseCase(get<_i25.AuthRepository>())); + () => _i39.LoginUseCase(gh<_i25.AuthRepository>())); gh.factory<_i40.PasswordSaveBloc>(() => _i40.PasswordSaveBloc( - get<_i21.SavePasswordUsecase>(), - get<_i36.GetPasswordByIdUseCase>(), + gh<_i21.SavePasswordUsecase>(), + gh<_i36.GetPasswordByIdUseCase>(), )); gh.factory<_i41.PreferencesBloc>(() => _i41.PreferencesBloc( - get<_i11.AccountPreferenceUseCase>(), - get<_i34.GetCurrentAccountUseCase>(), - get<_i29.DeleteAccountUseCase>(), + gh<_i11.AccountPreferenceUseCase>(), + gh<_i34.GetCurrentAccountUseCase>(), + gh<_i29.DeleteAccountUseCase>(), )); gh.factory<_i42.RegisterBloc>( - () => _i42.RegisterBloc(get<_i28.CreateAccountUseCase>())); + () => _i42.RegisterBloc(gh<_i28.CreateAccountUseCase>())); gh.factory<_i43.SaveInfoBloc>(() => _i43.SaveInfoBloc( - get<_i20.SaveInfoUsecase>(), - get<_i35.GetInfoByIdUseCase>(), + gh<_i20.SaveInfoUsecase>(), + gh<_i35.GetInfoByIdUseCase>(), )); gh.factory<_i44.ShowOnboardUseCase>( - () => _i44.ShowOnboardUseCase(get<_i25.AuthRepository>())); + () => _i44.ShowOnboardUseCase(gh<_i25.AuthRepository>())); gh.factory<_i45.UpdateAccountPasswordUseCase>( - () => _i45.UpdateAccountPasswordUseCase(get<_i25.AuthRepository>())); + () => _i45.UpdateAccountPasswordUseCase(gh<_i25.AuthRepository>())); gh.factory<_i46.UpdatePasswordBloc>(() => _i46.UpdatePasswordBloc( - get<_i34.GetCurrentAccountUseCase>(), - get<_i45.UpdateAccountPasswordUseCase>(), + gh<_i34.GetCurrentAccountUseCase>(), + gh<_i45.UpdateAccountPasswordUseCase>(), )); gh.factory<_i47.AuthLockUseCase>( - () => _i47.AuthLockUseCase(get<_i25.AuthRepository>())); + () => _i47.AuthLockUseCase(gh<_i25.AuthRepository>())); gh.factory<_i48.AuthenCubit>(() => _i48.AuthenCubit( - get<_i39.LoginUseCase>(), - get<_i47.AuthLockUseCase>(), - get<_i27.BiometricsUseCase>(), - get<_i34.GetCurrentAccountUseCase>(), + gh<_i39.LoginUseCase>(), + gh<_i47.AuthLockUseCase>(), + gh<_i27.BiometricsUseCase>(), + gh<_i34.GetCurrentAccountUseCase>(), )); gh.factory<_i49.ForgetPasswordBloc>(() => _i49.ForgetPasswordBloc( - get<_i34.GetCurrentAccountUseCase>(), - get<_i29.DeleteAccountUseCase>(), - get<_i45.UpdateAccountPasswordUseCase>(), + gh<_i34.GetCurrentAccountUseCase>(), + gh<_i29.DeleteAccountUseCase>(), + gh<_i45.UpdateAccountPasswordUseCase>(), )); gh.factory<_i50.GatewayBloc>(() => _i50.GatewayBloc( - get<_i34.GetCurrentAccountUseCase>(), - get<_i11.AccountPreferenceUseCase>(), + gh<_i34.GetCurrentAccountUseCase>(), + gh<_i11.AccountPreferenceUseCase>(), )); gh.factory<_i51.LoginBloc>(() => _i51.LoginBloc( - get<_i34.GetCurrentAccountUseCase>(), - get<_i39.LoginUseCase>(), - get<_i47.AuthLockUseCase>(), - get<_i27.BiometricsUseCase>(), + gh<_i34.GetCurrentAccountUseCase>(), + gh<_i39.LoginUseCase>(), + gh<_i47.AuthLockUseCase>(), + gh<_i27.BiometricsUseCase>(), )); gh.factory<_i52.PasswordBloc>(() => _i52.PasswordBloc( - get<_i33.GetAllPasswordsUseCase>(), - get<_i31.DeletePasswordUseCase>(), - get<_i23.SearchPasswordUseCase>(), - get<_i34.GetCurrentAccountUseCase>(), - get<_i24.UpdatePasswordSettingsUseCase>(), - get<_i11.AccountPreferenceUseCase>(), - get<_i44.ShowOnboardUseCase>(), - get<_i19.ReOrderPasswordUseCase>(), - get<_i21.SavePasswordUsecase>(), + gh<_i33.GetAllPasswordsUseCase>(), + gh<_i31.DeletePasswordUseCase>(), + gh<_i23.SearchPasswordUseCase>(), + gh<_i34.GetCurrentAccountUseCase>(), + gh<_i24.UpdatePasswordSettingsUseCase>(), + gh<_i11.AccountPreferenceUseCase>(), + gh<_i44.ShowOnboardUseCase>(), + gh<_i19.ReOrderPasswordUseCase>(), + gh<_i21.SavePasswordUsecase>(), )); - return get; + return getIt; } diff --git a/lib/main.dart b/lib/main.dart index d568377..071afba 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -18,7 +18,6 @@ import 'package:flutter_password_saver/initializer/uri_handler.dart'; import 'package:flutter_svg/svg.dart'; import 'package:get_it/get_it.dart'; import 'package:injectable/injectable.dart'; -import 'generated/l10n.dart'; import 'main.config.dart'; final RouteObserver routeObserver = RouteObserver(); diff --git a/lib/modules/auth/presentation/auth/authen/authen_bottom_sheet.dart b/lib/modules/auth/presentation/auth/authen/authen_bottom_sheet.dart index 04ae3e1..7f868bc 100644 --- a/lib/modules/auth/presentation/auth/authen/authen_bottom_sheet.dart +++ b/lib/modules/auth/presentation/auth/authen/authen_bottom_sheet.dart @@ -25,8 +25,8 @@ Future showAuthenBottomSheet(BuildContext context, ), ), builder: (context) { - return Wrap( - children: const [AuthenBottomSheet()], + return const Wrap( + children: [AuthenBottomSheet()], ); }, ); diff --git a/lib/presentation/page/onboarding/onboarding_bottom_sheet.dart b/lib/presentation/page/onboarding/onboarding_bottom_sheet.dart index b884981..a0a2be4 100644 --- a/lib/presentation/page/onboarding/onboarding_bottom_sheet.dart +++ b/lib/presentation/page/onboarding/onboarding_bottom_sheet.dart @@ -16,8 +16,8 @@ Future showOnboardingBottomSheet(BuildContext context) { ), ), builder: (context) { - return Wrap( - children: const [OnboardingBottomSheet()], + return const Wrap( + children: [OnboardingBottomSheet()], ); }, ); diff --git a/lib/presentation/page/preferences/preferences_page.dart b/lib/presentation/page/preferences/preferences_page.dart index bbc1030..e1929f9 100644 --- a/lib/presentation/page/preferences/preferences_page.dart +++ b/lib/presentation/page/preferences/preferences_page.dart @@ -109,10 +109,10 @@ class _PreferencesPageState extends State { if (state.deleteLoadState == LoadState.none) { return _primary(state); } else { - return Center( + return const Center( child: Column( crossAxisAlignment: CrossAxisAlignment.center, - children: const [ + children: [ LoadingIndicator(), ], ), diff --git a/lib/presentation/widget/delete_account_button_widget.dart b/lib/presentation/widget/delete_account_button_widget.dart index e156ea0..f3285ac 100644 --- a/lib/presentation/widget/delete_account_button_widget.dart +++ b/lib/presentation/widget/delete_account_button_widget.dart @@ -18,10 +18,10 @@ class DeleteAccountButton extends StatelessWidget { color: AppColors.red500, ), padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8), - child: Row( + child: const Row( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center, - children: const [ + children: [ Icon( Icons.delete, color: AppColors.white500, diff --git a/pubspec.lock b/pubspec.lock index ddac260..5e051e7 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -5,247 +5,274 @@ packages: dependency: transitive description: name: _fe_analyzer_shared - url: "https://pub.dartlang.org" + sha256: ae92f5d747aee634b87f89d9946000c2de774be1d6ac3e58268224348cd0101a + url: "https://pub.dev" source: hosted - version: "47.0.0" + version: "61.0.0" analyzer: dependency: transitive description: name: analyzer - url: "https://pub.dartlang.org" + sha256: ea3d8652bda62982addfd92fdc2d0214e5f82e43325104990d4f4c4a2a313562 + url: "https://pub.dev" source: hosted - version: "4.7.0" + version: "5.13.0" archive: dependency: transitive description: name: archive - url: "https://pub.dartlang.org" + sha256: "22600aa1e926be775fa5fe7e6894e7fb3df9efda8891c73f70fb3262399a432d" + url: "https://pub.dev" source: hosted - version: "3.3.6" + version: "3.4.10" args: dependency: transitive description: name: args - url: "https://pub.dartlang.org" + sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596 + url: "https://pub.dev" source: hosted - version: "2.3.1" + version: "2.4.2" async: dependency: transitive description: name: async - url: "https://pub.dartlang.org" + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + url: "https://pub.dev" source: hosted - version: "2.8.2" + version: "2.11.0" bloc: dependency: transitive description: name: bloc - url: "https://pub.dartlang.org" + sha256: "3820f15f502372d979121de1f6b97bfcf1630ebff8fe1d52fb2b0bfa49be5b49" + url: "https://pub.dev" source: hosted - version: "8.1.1" + version: "8.1.2" boolean_selector: dependency: transitive description: name: boolean_selector - url: "https://pub.dartlang.org" + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + url: "https://pub.dev" source: hosted - version: "2.1.0" + version: "2.1.1" build: dependency: transitive description: name: build - url: "https://pub.dartlang.org" + sha256: "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0" + url: "https://pub.dev" source: hosted - version: "2.3.1" + version: "2.4.1" build_config: dependency: transitive description: name: build_config - url: "https://pub.dartlang.org" + sha256: bf80fcfb46a29945b423bd9aad884590fb1dc69b330a4d4700cac476af1708d1 + url: "https://pub.dev" source: hosted version: "1.1.1" build_daemon: dependency: transitive description: name: build_daemon - url: "https://pub.dartlang.org" + sha256: "0343061a33da9c5810b2d6cee51945127d8f4c060b7fbdd9d54917f0a3feaaa1" + url: "https://pub.dev" source: hosted - version: "3.1.0" + version: "4.0.1" build_resolvers: dependency: transitive description: name: build_resolvers - url: "https://pub.dartlang.org" + sha256: "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a" + url: "https://pub.dev" source: hosted - version: "2.0.10" + version: "2.4.2" build_runner: dependency: "direct dev" description: name: build_runner - url: "https://pub.dartlang.org" + sha256: "581bacf68f89ec8792f5e5a0b2c4decd1c948e97ce659dc783688c8a88fbec21" + url: "https://pub.dev" source: hosted - version: "2.3.0" + version: "2.4.8" build_runner_core: dependency: transitive description: name: build_runner_core - url: "https://pub.dartlang.org" + sha256: c9e32d21dd6626b5c163d48b037ce906bbe428bc23ab77bcd77bb21e593b6185 + url: "https://pub.dev" source: hosted - version: "7.2.7" + version: "7.2.11" built_collection: dependency: transitive description: name: built_collection - url: "https://pub.dartlang.org" + sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100" + url: "https://pub.dev" source: hosted version: "5.1.1" built_value: dependency: transitive description: name: built_value - url: "https://pub.dartlang.org" + sha256: a3ec2e0f967bc47f69f95009bb93db936288d61d5343b9436e378b28a2f830c6 + url: "https://pub.dev" source: hosted - version: "8.4.3" + version: "8.9.0" characters: dependency: transitive description: name: characters - url: "https://pub.dartlang.org" - source: hosted - version: "1.2.0" - charcode: - dependency: transitive - description: - name: charcode - url: "https://pub.dartlang.org" + sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + url: "https://pub.dev" source: hosted - version: "1.3.1" + version: "1.3.0" checked_yaml: dependency: transitive description: name: checked_yaml - url: "https://pub.dartlang.org" + sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff + url: "https://pub.dev" source: hosted - version: "2.0.1" + version: "2.0.3" cli_util: dependency: transitive description: name: cli_util - url: "https://pub.dartlang.org" + sha256: "66f86e916d285c1a93d3b79587d94bd71984a66aac4ff74e524cfa7877f1395c" + url: "https://pub.dev" source: hosted version: "0.3.5" clock: dependency: transitive description: name: clock - url: "https://pub.dartlang.org" + sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf + url: "https://pub.dev" source: hosted - version: "1.1.0" + version: "1.1.1" code_builder: dependency: transitive description: name: code_builder - url: "https://pub.dartlang.org" + sha256: f692079e25e7869c14132d39f223f8eec9830eb76131925143b2129c4bb01b37 + url: "https://pub.dev" source: hosted - version: "4.4.0" + version: "4.10.0" collection: dependency: "direct main" description: name: collection - url: "https://pub.dartlang.org" + sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a + url: "https://pub.dev" source: hosted - version: "1.16.0" + version: "1.18.0" convert: dependency: transitive description: name: convert - url: "https://pub.dartlang.org" + sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" + url: "https://pub.dev" source: hosted - version: "3.1.0" + version: "3.1.1" copy_with_extension: dependency: "direct main" description: name: copy_with_extension - url: "https://pub.dartlang.org" + sha256: "9c17d2b9a041ad19c97aa544c46a60f192cd409529bb9cfb98f48f336bb84d31" + url: "https://pub.dev" source: hosted version: "4.0.4" copy_with_extension_gen: dependency: "direct dev" description: name: copy_with_extension_gen - url: "https://pub.dartlang.org" + sha256: "19ab5e5095a9047315b42a6c2bb7ddf59a85cd23a75278500661ced4299165e9" + url: "https://pub.dev" source: hosted version: "4.0.4" coverage: dependency: transitive description: name: coverage - url: "https://pub.dartlang.org" + sha256: "8acabb8306b57a409bf4c83522065672ee13179297a6bb0cb9ead73948df7c76" + url: "https://pub.dev" source: hosted - version: "1.3.2" + version: "1.7.2" crypto: dependency: transitive description: name: crypto - url: "https://pub.dartlang.org" + sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab + url: "https://pub.dev" source: hosted - version: "3.0.2" + version: "3.0.3" cupertino_icons: dependency: "direct main" description: name: cupertino_icons - url: "https://pub.dartlang.org" + sha256: d57953e10f9f8327ce64a508a355f0b1ec902193f66288e8cb5070e7c47eeb2d + url: "https://pub.dev" source: hosted - version: "1.0.5" + version: "1.0.6" custom_sliding_segmented_control: dependency: "direct main" description: name: custom_sliding_segmented_control - url: "https://pub.dartlang.org" + sha256: "05b73fa48d57218bfdf806bad68a859812b216cd81fe81c6cbefde89f39eb257" + url: "https://pub.dev" source: hosted - version: "1.7.4" + version: "1.8.1" dart_style: dependency: transitive description: name: dart_style - url: "https://pub.dartlang.org" + sha256: "1efa911ca7086affd35f463ca2fc1799584fb6aa89883cf0af8e3664d6a02d55" + url: "https://pub.dev" source: hosted - version: "2.2.4" + version: "2.3.2" equatable: dependency: "direct main" description: name: equatable - url: "https://pub.dartlang.org" + sha256: c2b87cb7756efdf69892005af546c56c0b5037f54d2a88269b4f347a505e3ca2 + url: "https://pub.dev" source: hosted version: "2.0.5" fake_async: dependency: transitive description: name: fake_async - url: "https://pub.dartlang.org" + sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" + url: "https://pub.dev" source: hosted - version: "1.3.0" + version: "1.3.1" ffi: dependency: transitive description: name: ffi - url: "https://pub.dartlang.org" + sha256: "7bf0adc28a23d395f19f3f1eb21dd7cfd1dd9f8e1c50051c069122e6853bc878" + url: "https://pub.dev" source: hosted - version: "2.0.1" + version: "2.1.0" file: dependency: transitive description: name: file - url: "https://pub.dartlang.org" + sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c" + url: "https://pub.dev" source: hosted - version: "6.1.4" + version: "7.0.0" fixnum: dependency: transitive description: name: fixnum - url: "https://pub.dartlang.org" + sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1" + url: "https://pub.dev" source: hosted - version: "1.0.1" + version: "1.1.0" flutter: dependency: "direct main" description: flutter @@ -255,30 +282,34 @@ packages: dependency: "direct main" description: name: flutter_app_shortcut - url: "https://pub.dartlang.org" + sha256: "73858ea514312ba668ec5a8ed7b6cc6961e8b0d11b6afd99c902f20cb1b05e13" + url: "https://pub.dev" source: hosted version: "1.0.0" flutter_bloc: dependency: "direct main" description: name: flutter_bloc - url: "https://pub.dartlang.org" + sha256: e74efb89ee6945bcbce74a5b3a5a3376b088e5f21f55c263fc38cbdc6237faae + url: "https://pub.dev" source: hosted - version: "8.1.2" + version: "8.1.3" flutter_launcher_icons: dependency: "direct dev" description: name: flutter_launcher_icons - url: "https://pub.dartlang.org" + sha256: ce0e501cfc258907842238e4ca605e74b7fd1cdf04b3b43e86c43f3e40a1592c + url: "https://pub.dev" source: hosted version: "0.11.0" flutter_lints: dependency: "direct dev" description: name: flutter_lints - url: "https://pub.dartlang.org" + sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04 + url: "https://pub.dev" source: hosted - version: "2.0.1" + version: "2.0.3" flutter_localizations: dependency: "direct main" description: flutter @@ -288,63 +319,72 @@ packages: dependency: transitive description: name: flutter_plugin_android_lifecycle - url: "https://pub.dartlang.org" + sha256: b068ffc46f82a55844acfa4fdbb61fad72fa2aef0905548419d97f0f95c456da + url: "https://pub.dev" source: hosted - version: "2.0.7" + version: "2.0.17" flutter_secure_storage: dependency: "direct main" description: name: flutter_secure_storage - url: "https://pub.dartlang.org" + sha256: "5abe3d5c25ab435e48c47fb61bac25606062a305fac637c2f020e25abd30014a" + url: "https://pub.dev" source: hosted version: "5.1.2" flutter_secure_storage_linux: dependency: transitive description: name: flutter_secure_storage_linux - url: "https://pub.dartlang.org" + sha256: "3d5032e314774ee0e1a7d0a9f5e2793486f0dff2dd9ef5a23f4e3fb2a0ae6a9e" + url: "https://pub.dev" source: hosted - version: "1.1.3" + version: "1.2.0" flutter_secure_storage_macos: dependency: transitive description: name: flutter_secure_storage_macos - url: "https://pub.dartlang.org" + sha256: "388f76fd0f093e7415a39ec4c169ae7cceeee6d9f9ba529d788a13f2be4de7bd" + url: "https://pub.dev" source: hosted version: "1.1.2" flutter_secure_storage_platform_interface: dependency: transitive description: name: flutter_secure_storage_platform_interface - url: "https://pub.dartlang.org" + sha256: "0d4d3a5dd4db28c96ae414d7ba3b8422fd735a8255642774803b2532c9a61d7e" + url: "https://pub.dev" source: hosted - version: "1.0.1" + version: "1.0.2" flutter_secure_storage_web: dependency: transitive description: name: flutter_secure_storage_web - url: "https://pub.dartlang.org" + sha256: "30f84f102df9dcdaa2241866a958c2ec976902ebdaa8883fbfe525f1f2f3cf20" + url: "https://pub.dev" source: hosted - version: "1.1.1" + version: "1.1.2" flutter_secure_storage_windows: dependency: transitive description: name: flutter_secure_storage_windows - url: "https://pub.dartlang.org" + sha256: ca89c8059cf439985aa83c59619b3674c7ef6cc2e86943d169a7369d6a69cab5 + url: "https://pub.dev" source: hosted version: "1.1.3" flutter_slidable: dependency: "direct main" description: name: flutter_slidable - url: "https://pub.dartlang.org" + sha256: "6c68e1fad129b4b807b2218ef4cf7f7f6f61c5ec8861c990dc2278d9d03cb09f" + url: "https://pub.dev" source: hosted version: "2.0.0" flutter_svg: dependency: "direct main" description: name: flutter_svg - url: "https://pub.dartlang.org" + sha256: "6ff9fa12892ae074092de2fa6a9938fb21dbabfdaa2ff57dc697ff912fc8d4b2" + url: "https://pub.dev" source: hosted version: "1.1.6" flutter_test: @@ -361,436 +401,490 @@ packages: dependency: transitive description: name: frontend_server_client - url: "https://pub.dartlang.org" + sha256: "408e3ca148b31c20282ad6f37ebfa6f4bdc8fede5b74bc2f08d9d92b55db3612" + url: "https://pub.dev" source: hosted - version: "2.1.3" + version: "3.2.0" get_it: dependency: "direct main" description: name: get_it - url: "https://pub.dartlang.org" + sha256: e6017ce7fdeaf218dc51a100344d8cb70134b80e28b760f8bb23c242437bafd7 + url: "https://pub.dev" source: hosted - version: "7.2.0" + version: "7.6.7" glob: dependency: transitive description: name: glob - url: "https://pub.dartlang.org" + sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63" + url: "https://pub.dev" source: hosted - version: "2.1.1" + version: "2.1.2" graphs: dependency: transitive description: name: graphs - url: "https://pub.dartlang.org" + sha256: aedc5a15e78fc65a6e23bcd927f24c64dd995062bcd1ca6eda65a3cff92a4d19 + url: "https://pub.dev" source: hosted - version: "2.2.0" + version: "2.3.1" hive: dependency: "direct main" description: name: hive - url: "https://pub.dartlang.org" + sha256: "8dcf6db979d7933da8217edcec84e9df1bdb4e4edc7fc77dbd5aa74356d6d941" + url: "https://pub.dev" source: hosted version: "2.2.3" hive_flutter: dependency: "direct main" description: name: hive_flutter - url: "https://pub.dartlang.org" + sha256: dca1da446b1d808a51689fb5d0c6c9510c0a2ba01e22805d492c73b68e33eecc + url: "https://pub.dev" source: hosted version: "1.1.0" hive_generator: dependency: "direct dev" description: name: hive_generator - url: "https://pub.dartlang.org" + sha256: "06cb8f58ace74de61f63500564931f9505368f45f98958bd7a6c35ba24159db4" + url: "https://pub.dev" source: hosted - version: "1.1.3" + version: "2.0.1" http: dependency: transitive description: name: http - url: "https://pub.dartlang.org" + sha256: a2bbf9d017fcced29139daa8ed2bba4ece450ab222871df93ca9eec6f80c34ba + url: "https://pub.dev" source: hosted - version: "0.13.5" + version: "1.2.0" http_multi_server: dependency: transitive description: name: http_multi_server - url: "https://pub.dartlang.org" + sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b" + url: "https://pub.dev" source: hosted version: "3.2.1" http_parser: dependency: transitive description: name: http_parser - url: "https://pub.dartlang.org" + sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" + url: "https://pub.dev" source: hosted version: "4.0.2" image: dependency: transitive description: name: image - url: "https://pub.dartlang.org" + sha256: "8e9d133755c3e84c73288363e6343157c383a0c6c56fc51afcc5d4d7180306d6" + url: "https://pub.dev" source: hosted version: "3.3.0" injectable: dependency: "direct main" description: name: injectable - url: "https://pub.dartlang.org" + sha256: cd3c422e13270c81f64ab73c80406b2b2ed563fe59d0ff2093eb7eee63d0bbeb + url: "https://pub.dev" source: hosted - version: "2.1.0" + version: "2.3.2" injectable_generator: dependency: "direct dev" description: name: injectable_generator - url: "https://pub.dartlang.org" + sha256: f9d3c05f0938403f79ad6c6d23ec8e37a7a05ad980b1bf9399493f3e41845788 + url: "https://pub.dev" source: hosted - version: "2.1.3" + version: "2.4.1" intl: dependency: "direct main" description: name: intl - url: "https://pub.dartlang.org" + sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d" + url: "https://pub.dev" source: hosted - version: "0.17.0" + version: "0.18.1" intl_utils: dependency: "direct main" description: name: intl_utils - url: "https://pub.dartlang.org" + sha256: "5cad11e11ff7662c3cd0ef04729248591d71ed023d4ef0903a137528b4568adf" + url: "https://pub.dev" source: hosted - version: "2.7.0" + version: "2.8.5" io: dependency: transitive description: name: io - url: "https://pub.dartlang.org" + sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e" + url: "https://pub.dev" source: hosted version: "1.0.4" js: dependency: transitive description: name: js - url: "https://pub.dartlang.org" + sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 + url: "https://pub.dev" source: hosted - version: "0.6.4" + version: "0.6.7" json_annotation: dependency: transitive description: name: json_annotation - url: "https://pub.dartlang.org" + sha256: b10a7b2ff83d83c777edba3c6a0f97045ddadd56c944e1a23a3fdf43a1bf4467 + url: "https://pub.dev" source: hosted - version: "4.7.0" + version: "4.8.1" lints: dependency: transitive description: name: lints - url: "https://pub.dartlang.org" + sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452" + url: "https://pub.dev" source: hosted - version: "2.0.1" + version: "2.1.1" local_auth: dependency: "direct main" description: name: local_auth - url: "https://pub.dartlang.org" + sha256: "27679ed8e0d7daab2357db6bb7076359e083a56b295c0c59723845301da6aed9" + url: "https://pub.dev" source: hosted - version: "2.1.3" + version: "2.1.8" local_auth_android: dependency: transitive description: name: local_auth_android - url: "https://pub.dartlang.org" + sha256: "54e9c35ce52c06333355ab0d0f41e4c06dbca354b23426765ba41dfb1de27598" + url: "https://pub.dev" source: hosted - version: "1.0.18" + version: "1.0.36" local_auth_ios: dependency: transitive description: name: local_auth_ios - url: "https://pub.dartlang.org" + sha256: eb283b530029b334698918f1e282d4483737cbca972ff21b9193be3d6de8e2b8 + url: "https://pub.dev" source: hosted - version: "1.0.12" + version: "1.1.6" local_auth_platform_interface: dependency: transitive description: name: local_auth_platform_interface - url: "https://pub.dartlang.org" + sha256: "1b842ff177a7068442eae093b64abe3592f816afd2a533c0ebcdbe40f9d2075a" + url: "https://pub.dev" source: hosted - version: "1.0.6" + version: "1.0.10" local_auth_windows: dependency: transitive description: name: local_auth_windows - url: "https://pub.dartlang.org" + sha256: "505ba3367ca781efb1c50d3132e44a2446bccc4163427bc203b9b4d8994d97ea" + url: "https://pub.dev" source: hosted - version: "1.0.5" + version: "1.0.10" logging: dependency: transitive description: name: logging - url: "https://pub.dartlang.org" + sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340" + url: "https://pub.dev" source: hosted - version: "1.1.0" + version: "1.2.0" matcher: dependency: transitive description: name: matcher - url: "https://pub.dartlang.org" + sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e" + url: "https://pub.dev" source: hosted - version: "0.12.11" + version: "0.12.16" material_color_utilities: dependency: transitive description: name: material_color_utilities - url: "https://pub.dartlang.org" + sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41" + url: "https://pub.dev" source: hosted - version: "0.1.4" + version: "0.5.0" meta: dependency: transitive description: name: meta - url: "https://pub.dartlang.org" + sha256: a6e590c838b18133bb482a2745ad77c5bb7715fb0451209e1a7567d416678b8e + url: "https://pub.dev" source: hosted - version: "1.7.0" + version: "1.10.0" mime: dependency: transitive description: name: mime - url: "https://pub.dartlang.org" + sha256: "2e123074287cc9fd6c09de8336dae606d1ddb88d9ac47358826db698c176a1f2" + url: "https://pub.dev" source: hosted - version: "1.0.3" + version: "1.0.5" nested: dependency: transitive description: name: nested - url: "https://pub.dartlang.org" + sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" + url: "https://pub.dev" source: hosted version: "1.0.0" node_preamble: dependency: transitive description: name: node_preamble - url: "https://pub.dartlang.org" + sha256: "6e7eac89047ab8a8d26cf16127b5ed26de65209847630400f9aefd7cd5c730db" + url: "https://pub.dev" source: hosted - version: "2.0.1" + version: "2.0.2" package_config: dependency: transitive description: name: package_config - url: "https://pub.dartlang.org" + sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd" + url: "https://pub.dev" source: hosted version: "2.1.0" path: dependency: transitive description: name: path - url: "https://pub.dartlang.org" + sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" + url: "https://pub.dev" source: hosted - version: "1.8.1" + version: "1.8.3" path_drawing: dependency: transitive description: name: path_drawing - url: "https://pub.dartlang.org" + sha256: bbb1934c0cbb03091af082a6389ca2080345291ef07a5fa6d6e078ba8682f977 + url: "https://pub.dev" source: hosted version: "1.0.1" path_parsing: dependency: transitive description: name: path_parsing - url: "https://pub.dartlang.org" + sha256: e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf + url: "https://pub.dev" source: hosted version: "1.0.1" path_provider: dependency: transitive description: name: path_provider - url: "https://pub.dartlang.org" + sha256: b27217933eeeba8ff24845c34003b003b2b22151de3c908d0e679e8fe1aa078b + url: "https://pub.dev" source: hosted - version: "2.0.12" + version: "2.1.2" path_provider_android: dependency: transitive description: name: path_provider_android - url: "https://pub.dartlang.org" + sha256: "477184d672607c0a3bf68fbbf601805f92ef79c82b64b4d6eb318cbca4c48668" + url: "https://pub.dev" source: hosted - version: "2.0.22" + version: "2.2.2" path_provider_foundation: dependency: transitive description: name: path_provider_foundation - url: "https://pub.dartlang.org" + sha256: "5a7999be66e000916500be4f15a3633ebceb8302719b47b9cc49ce924125350f" + url: "https://pub.dev" source: hosted - version: "2.1.1" + version: "2.3.2" path_provider_linux: dependency: transitive description: name: path_provider_linux - url: "https://pub.dartlang.org" + sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279 + url: "https://pub.dev" source: hosted - version: "2.1.8" + version: "2.2.1" path_provider_platform_interface: dependency: transitive description: name: path_provider_platform_interface - url: "https://pub.dartlang.org" + sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334" + url: "https://pub.dev" source: hosted - version: "2.0.5" + version: "2.1.2" path_provider_windows: dependency: transitive description: name: path_provider_windows - url: "https://pub.dartlang.org" + sha256: "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170" + url: "https://pub.dev" source: hosted - version: "2.1.3" + version: "2.2.1" petitparser: dependency: transitive description: name: petitparser - url: "https://pub.dartlang.org" + sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27 + url: "https://pub.dev" source: hosted - version: "5.0.0" + version: "6.0.2" platform: dependency: transitive description: name: platform - url: "https://pub.dartlang.org" + sha256: "12220bb4b65720483f8fa9450b4332347737cf8213dd2840d8b2c823e47243ec" + url: "https://pub.dev" source: hosted - version: "3.1.0" + version: "3.1.4" plugin_platform_interface: dependency: transitive description: name: plugin_platform_interface - url: "https://pub.dartlang.org" + sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" + url: "https://pub.dev" source: hosted - version: "2.1.3" + version: "2.1.8" pointycastle: dependency: transitive description: name: pointycastle - url: "https://pub.dartlang.org" + sha256: "43ac87de6e10afabc85c445745a7b799e04de84cebaa4fd7bf55a5e1e9604d29" + url: "https://pub.dev" source: hosted - version: "3.6.2" + version: "3.7.4" pool: dependency: transitive description: name: pool - url: "https://pub.dartlang.org" + sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" + url: "https://pub.dev" source: hosted version: "1.5.1" - process: - dependency: transitive - description: - name: process - url: "https://pub.dartlang.org" - source: hosted - version: "4.2.4" provider: dependency: transitive description: name: provider - url: "https://pub.dartlang.org" + sha256: "9a96a0a19b594dbc5bf0f1f27d2bc67d5f95957359b461cd9feb44ed6ae75096" + url: "https://pub.dev" source: hosted - version: "6.0.5" + version: "6.1.1" pub_semver: dependency: transitive description: name: pub_semver - url: "https://pub.dartlang.org" + sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c" + url: "https://pub.dev" source: hosted - version: "2.1.3" + version: "2.1.4" pubspec_parse: dependency: transitive description: name: pubspec_parse - url: "https://pub.dartlang.org" + sha256: c63b2876e58e194e4b0828fcb080ad0e06d051cb607a6be51a9e084f47cb9367 + url: "https://pub.dev" source: hosted - version: "1.2.1" + version: "1.2.3" recase: dependency: transitive description: name: recase - url: "https://pub.dartlang.org" + sha256: e4eb4ec2dcdee52dcf99cb4ceabaffc631d7424ee55e56f280bc039737f89213 + url: "https://pub.dev" source: hosted version: "4.1.0" shared_preferences: dependency: "direct main" description: name: shared_preferences - url: "https://pub.dartlang.org" + sha256: "81429e4481e1ccfb51ede496e916348668fd0921627779233bd24cc3ff6abd02" + url: "https://pub.dev" source: hosted - version: "2.0.17" + version: "2.2.2" shared_preferences_android: dependency: transitive description: name: shared_preferences_android - url: "https://pub.dartlang.org" + sha256: "8568a389334b6e83415b6aae55378e158fbc2314e074983362d20c562780fb06" + url: "https://pub.dev" source: hosted - version: "2.0.15" + version: "2.2.1" shared_preferences_foundation: dependency: transitive description: name: shared_preferences_foundation - url: "https://pub.dartlang.org" + sha256: "7708d83064f38060c7b39db12aefe449cb8cdc031d6062280087bc4cdb988f5c" + url: "https://pub.dev" source: hosted - version: "2.1.3" + version: "2.3.5" shared_preferences_linux: dependency: transitive description: name: shared_preferences_linux - url: "https://pub.dartlang.org" + sha256: "9f2cbcf46d4270ea8be39fa156d86379077c8a5228d9dfdb1164ae0bb93f1faa" + url: "https://pub.dev" source: hosted - version: "2.1.3" + version: "2.3.2" shared_preferences_platform_interface: dependency: transitive description: name: shared_preferences_platform_interface - url: "https://pub.dartlang.org" + sha256: "22e2ecac9419b4246d7c22bfbbda589e3acf5c0351137d87dd2939d984d37c3b" + url: "https://pub.dev" source: hosted - version: "2.1.0" + version: "2.3.2" shared_preferences_web: dependency: transitive description: name: shared_preferences_web - url: "https://pub.dartlang.org" + sha256: "7b15ffb9387ea3e237bb7a66b8a23d2147663d391cafc5c8f37b2e7b4bde5d21" + url: "https://pub.dev" source: hosted - version: "2.0.4" + version: "2.2.2" shared_preferences_windows: dependency: transitive description: name: shared_preferences_windows - url: "https://pub.dartlang.org" + sha256: "841ad54f3c8381c480d0c9b508b89a34036f512482c407e6df7a9c4aa2ef8f59" + url: "https://pub.dev" source: hosted - version: "2.1.3" + version: "2.3.2" shelf: dependency: transitive description: name: shelf - url: "https://pub.dartlang.org" + sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4 + url: "https://pub.dev" source: hosted - version: "1.4.0" + version: "1.4.1" shelf_packages_handler: dependency: transitive description: name: shelf_packages_handler - url: "https://pub.dartlang.org" + sha256: "89f967eca29607c933ba9571d838be31d67f53f6e4ee15147d5dc2934fee1b1e" + url: "https://pub.dev" source: hosted - version: "3.0.1" + version: "3.0.2" shelf_static: dependency: transitive description: name: shelf_static - url: "https://pub.dartlang.org" + sha256: a41d3f53c4adf0f57480578c1d61d90342cd617de7fc8077b1304643c2d85c1e + url: "https://pub.dev" source: hosted - version: "1.1.1" + version: "1.1.2" shelf_web_socket: dependency: transitive description: name: shelf_web_socket - url: "https://pub.dartlang.org" + sha256: "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1" + url: "https://pub.dev" source: hosted - version: "1.0.3" + version: "1.0.4" sky_engine: dependency: transitive description: flutter @@ -800,205 +894,242 @@ packages: dependency: transitive description: name: source_gen - url: "https://pub.dartlang.org" + sha256: "14658ba5f669685cd3d63701d01b31ea748310f7ab854e471962670abcf57832" + url: "https://pub.dev" source: hosted - version: "1.2.6" + version: "1.5.0" source_helper: dependency: transitive description: name: source_helper - url: "https://pub.dartlang.org" + sha256: "6adebc0006c37dd63fe05bca0a929b99f06402fc95aa35bf36d67f5c06de01fd" + url: "https://pub.dev" source: hosted - version: "1.3.3" + version: "1.3.4" source_map_stack_trace: dependency: transitive description: name: source_map_stack_trace - url: "https://pub.dartlang.org" + sha256: "84cf769ad83aa6bb61e0aa5a18e53aea683395f196a6f39c4c881fb90ed4f7ae" + url: "https://pub.dev" source: hosted version: "2.1.1" source_maps: dependency: transitive description: name: source_maps - url: "https://pub.dartlang.org" + sha256: "708b3f6b97248e5781f493b765c3337db11c5d2c81c3094f10904bfa8004c703" + url: "https://pub.dev" source: hosted - version: "0.10.10" + version: "0.10.12" source_span: dependency: transitive description: name: source_span - url: "https://pub.dartlang.org" + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + url: "https://pub.dev" source: hosted - version: "1.8.2" + version: "1.10.0" stack_trace: dependency: transitive description: name: stack_trace - url: "https://pub.dartlang.org" + sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" + url: "https://pub.dev" source: hosted - version: "1.10.0" + version: "1.11.1" stream_channel: dependency: transitive description: name: stream_channel - url: "https://pub.dartlang.org" + sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 + url: "https://pub.dev" source: hosted - version: "2.1.0" + version: "2.1.2" stream_transform: dependency: transitive description: name: stream_transform - url: "https://pub.dartlang.org" + sha256: "14a00e794c7c11aa145a170587321aedce29769c08d7f58b1d141da75e3b1c6f" + url: "https://pub.dev" source: hosted version: "2.1.0" string_scanner: dependency: transitive description: name: string_scanner - url: "https://pub.dartlang.org" + sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + url: "https://pub.dev" source: hosted - version: "1.1.0" + version: "1.2.0" term_glyph: dependency: transitive description: name: term_glyph - url: "https://pub.dartlang.org" + sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 + url: "https://pub.dev" source: hosted - version: "1.2.0" + version: "1.2.1" test: dependency: "direct dev" description: name: test - url: "https://pub.dartlang.org" + sha256: a1f7595805820fcc05e5c52e3a231aedd0b72972cb333e8c738a8b1239448b6f + url: "https://pub.dev" source: hosted - version: "1.21.1" + version: "1.24.9" test_api: dependency: transitive description: name: test_api - url: "https://pub.dartlang.org" + sha256: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b" + url: "https://pub.dev" source: hosted - version: "0.4.9" + version: "0.6.1" test_core: dependency: transitive description: name: test_core - url: "https://pub.dartlang.org" + sha256: a757b14fc47507060a162cc2530d9a4a2f92f5100a952c7443b5cad5ef5b106a + url: "https://pub.dev" source: hosted - version: "0.4.13" + version: "0.5.9" timing: dependency: transitive description: name: timing - url: "https://pub.dartlang.org" + sha256: "70a3b636575d4163c477e6de42f247a23b315ae20e86442bebe32d3cabf61c32" + url: "https://pub.dev" source: hosted version: "1.0.1" top_snackbar_flutter: dependency: "direct main" description: name: top_snackbar_flutter - url: "https://pub.dartlang.org" + sha256: "22acd9ef6f4ca4cbbd8814bfc90ed5edb6d19196b58feca2ce2b914dd21b8a84" + url: "https://pub.dev" source: hosted version: "1.1.1" typed_data: dependency: transitive description: name: typed_data - url: "https://pub.dartlang.org" + sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c + url: "https://pub.dev" source: hosted - version: "1.3.1" + version: "1.3.2" uni_links: dependency: "direct main" description: name: uni_links - url: "https://pub.dartlang.org" + sha256: "051098acfc9e26a9fde03b487bef5d3d228ca8f67693480c6f33fd4fbb8e2b6e" + url: "https://pub.dev" source: hosted version: "0.5.1" uni_links_platform_interface: dependency: transitive description: name: uni_links_platform_interface - url: "https://pub.dartlang.org" + sha256: "929cf1a71b59e3b7c2d8a2605a9cf7e0b125b13bc858e55083d88c62722d4507" + url: "https://pub.dev" source: hosted version: "1.0.0" uni_links_web: dependency: transitive description: name: uni_links_web - url: "https://pub.dartlang.org" + sha256: "7539db908e25f67de2438e33cc1020b30ab94e66720b5677ba6763b25f6394df" + url: "https://pub.dev" source: hosted version: "0.1.0" uuid: dependency: "direct main" description: name: uuid - url: "https://pub.dartlang.org" + sha256: "648e103079f7c64a36dc7d39369cabb358d377078a051d6ae2ad3aa539519313" + url: "https://pub.dev" source: hosted version: "3.0.7" vector_math: dependency: transitive description: name: vector_math - url: "https://pub.dartlang.org" + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + url: "https://pub.dev" source: hosted - version: "2.1.2" + version: "2.1.4" vm_service: dependency: transitive description: name: vm_service - url: "https://pub.dartlang.org" + sha256: b3d56ff4341b8f182b96aceb2fa20e3dcb336b9f867bc0eafc0de10f1048e957 + url: "https://pub.dev" source: hosted - version: "8.3.0" + version: "13.0.0" watcher: dependency: transitive description: name: watcher - url: "https://pub.dartlang.org" + sha256: "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8" + url: "https://pub.dev" source: hosted - version: "1.0.2" + version: "1.1.0" + web: + dependency: transitive + description: + name: web + sha256: afe077240a270dcfd2aafe77602b4113645af95d0ad31128cc02bce5ac5d5152 + url: "https://pub.dev" + source: hosted + version: "0.3.0" web_socket_channel: dependency: transitive description: name: web_socket_channel - url: "https://pub.dartlang.org" + sha256: d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b + url: "https://pub.dev" source: hosted - version: "2.3.0" + version: "2.4.0" webkit_inspection_protocol: dependency: transitive description: name: webkit_inspection_protocol - url: "https://pub.dartlang.org" + sha256: "87d3f2333bb240704cd3f1c6b5b7acd8a10e7f0bc28c28dcf14e782014f4a572" + url: "https://pub.dev" source: hosted - version: "1.2.0" + version: "1.2.1" win32: dependency: transitive description: name: win32 - url: "https://pub.dartlang.org" + sha256: "464f5674532865248444b4c3daca12bd9bf2d7c47f759ce2617986e7229494a8" + url: "https://pub.dev" source: hosted - version: "3.1.3" + version: "5.2.0" xdg_directories: dependency: transitive description: name: xdg_directories - url: "https://pub.dartlang.org" + sha256: faea9dee56b520b55a566385b84f2e8de55e7496104adada9962e0bd11bcff1d + url: "https://pub.dev" source: hosted - version: "1.0.0" + version: "1.0.4" xml: dependency: transitive description: name: xml - url: "https://pub.dartlang.org" + sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226 + url: "https://pub.dev" source: hosted - version: "6.1.0" + version: "6.5.0" yaml: dependency: transitive description: name: yaml - url: "https://pub.dartlang.org" + sha256: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5" + url: "https://pub.dev" source: hosted - version: "3.1.1" + version: "3.1.2" sdks: - dart: ">=2.17.0 <3.0.0" - flutter: ">=3.0.0" + dart: ">=3.2.0 <3.14.0" + flutter: ">=3.16.0" diff --git a/pubspec.yaml b/pubspec.yaml index 0983c4a..0c462ab 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -18,7 +18,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev version: 2.0.0+4 environment: - sdk: ">=2.16.1 <3.0.0" + sdk: ">=3.0.0 <3.14.0" # Dependencies specify other packages that your package needs in order to work. # To automatically upgrade your package dependencies to the latest versions @@ -49,7 +49,7 @@ dependencies: top_snackbar_flutter: ^1.0.2 equatable: ^2.0.3 local_auth: ^2.0.1 - intl: ^0.17.0 + intl: ^0.18.1 intl_utils: ^2.1.0 flutter_app_shortcut: ^1.0.0 uni_links: ^0.5.1