From 87acde940a31d0cd3ae3b55c687a222143a1301e Mon Sep 17 00:00:00 2001 From: YumNumm Date: Tue, 26 Nov 2024 23:47:24 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20deprecated=E3=81=AA=E3=83=A1?= =?UTF-8?q?=E3=83=B3=E3=83=90=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/lib/core/provider/app_lifecycle.dart | 2 +- app/lib/core/provider/ntp/ntp_provider.dart | 2 +- app/lib/core/router/router.dart | 2 +- .../kmoni/provider/kmoni_view_model.dart | 4 +-- app/lib/feature/settings/settings_screen.dart | 28 ++----------------- 5 files changed, 7 insertions(+), 31 deletions(-) diff --git a/app/lib/core/provider/app_lifecycle.dart b/app/lib/core/provider/app_lifecycle.dart index 10c1301d4..0b3d85de7 100644 --- a/app/lib/core/provider/app_lifecycle.dart +++ b/app/lib/core/provider/app_lifecycle.dart @@ -18,7 +18,7 @@ AppLifecycleState appLifeCycle(AppLifeCycleRef ref) { ..listenSelf( (previous, next) => ref .read(talkerProvider) - .logTyped(AppLifeCycleLog('$previous -> $next')), + .logCustom(AppLifeCycleLog('$previous -> $next')), ); return AppLifecycleState.resumed; } diff --git a/app/lib/core/provider/ntp/ntp_provider.dart b/app/lib/core/provider/ntp/ntp_provider.dart index f2c5dbeaa..364c7effa 100644 --- a/app/lib/core/provider/ntp/ntp_provider.dart +++ b/app/lib/core/provider/ntp/ntp_provider.dart @@ -50,7 +50,7 @@ class Ntp extends _$Ntp { ref .read(talkerProvider) - .logTyped(NtpLog('NTP Time Sync: offset ${offset}ms')); + .logCustom(NtpLog('NTP Time Sync: offset ${offset}ms')); } DateTime? now() { diff --git a/app/lib/core/router/router.dart b/app/lib/core/router/router.dart index 4c4bb4dd0..a211de566 100644 --- a/app/lib/core/router/router.dart +++ b/app/lib/core/router/router.dart @@ -391,7 +391,7 @@ class _NavigatorObserver extends NavigatorObserver { void didPush(Route route, Route? previousRoute) { if (route is PageRoute) { final page = route.settings.name; - talker.logTyped(GoRouterLog('push to $page')); + talker.logCustom(GoRouterLog('push to $page')); if (kIsWeb) { return; } diff --git a/app/lib/feature/home/features/kmoni/provider/kmoni_view_model.dart b/app/lib/feature/home/features/kmoni/provider/kmoni_view_model.dart index 0a679bac7..7592aa0e6 100644 --- a/app/lib/feature/home/features/kmoni/provider/kmoni_view_model.dart +++ b/app/lib/feature/home/features/kmoni/provider/kmoni_view_model.dart @@ -177,7 +177,7 @@ class KmoniViewModel extends _$KmoniViewModel { const Duration(seconds: 1), (_) => _update(), ); - talker.logTyped( + talker.logCustom( KmoniLog('遅延調整を行いました ${diff.inMicroseconds / 1000}ms'), ); return diff; @@ -185,7 +185,7 @@ class KmoniViewModel extends _$KmoniViewModel { .timeout(const Duration(seconds: 5)); // ignore: avoid_catches_without_on_clauses } catch (e) { - talker.logTyped( + talker.logCustom( KmoniLog('遅延調整失敗 $e'), ); state = state.copyWith(isDelayAdjusting: false); diff --git a/app/lib/feature/settings/settings_screen.dart b/app/lib/feature/settings/settings_screen.dart index 66d7caa7c..e1b3e32d6 100644 --- a/app/lib/feature/settings/settings_screen.dart +++ b/app/lib/feature/settings/settings_screen.dart @@ -14,11 +14,9 @@ import 'package:feedback/feedback.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter_email_sender/flutter_email_sender.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; import 'package:go_router/go_router.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; import 'package:path_provider/path_provider.dart'; -import 'package:shorebird_code_push/shorebird_code_push.dart'; import 'package:url_launcher/url_launcher_string.dart'; class SettingsScreen extends ConsumerWidget { @@ -150,30 +148,8 @@ class _AppVersionInformation extends HookConsumerWidget { final theme = Theme.of(context); final textTheme = theme.textTheme; - final patchInfoFuture = useMemoized( - () => ( - ShorebirdCodePush().currentPatchNumber(), - ShorebirdCodePush().nextPatchNumber(), - ).wait, - ); - final patchInfo = useFuture(patchInfoFuture); - - var text = 'EQMonitor v${packageInfo.version} ' - '(${packageInfo.buildNumber}'; - if (patchInfo.hasData) { - final currentPatch = patchInfo.data!.$1; - final nextPatch = patchInfo.data!.$2; - text += switch ((currentPatch, nextPatch)) { - (null, null) => ')', - (null, final int next) => '+$next)\n&' - '新しいパッチが利用可能です。2回アプリケーションを再起動して適用できます。', - (final int current, null) => '+$current)', - (final int current, final int next) => '+$current->$next)\n' - '新しいパッチが利用可能です。2回アプリケーションを再起動して適用できます。', - }; - } else { - text += ')'; - } + final text = 'EQMonitor v${packageInfo.version} ' + '(${packageInfo.buildNumber})'; return Center( child: Padding( From cd890f4e0074d3cc1e58ceb9d8dee13908288301 Mon Sep 17 00:00:00 2001 From: YumNumm Date: Thu, 28 Nov 2024 23:18:51 +0900 Subject: [PATCH 2/2] update lock --- app/ios/Podfile.lock | 146 +++++++++--------- app/pubspec.lock | 32 ++-- .../pubspec.lock | 8 +- 3 files changed, 93 insertions(+), 93 deletions(-) diff --git a/app/ios/Podfile.lock b/app/ios/Podfile.lock index 3080677cb..666bb5bbc 100644 --- a/app/ios/Podfile.lock +++ b/app/ios/Podfile.lock @@ -5,43 +5,43 @@ PODS: - Flutter - device_info_plus (0.0.1): - Flutter - - Firebase/Analytics (11.2.0): + - Firebase/Analytics (11.4.0): - Firebase/Core - - Firebase/Core (11.2.0): + - Firebase/Core (11.4.0): - Firebase/CoreOnly - - FirebaseAnalytics (~> 11.2.0) - - Firebase/CoreOnly (11.2.0): - - FirebaseCore (= 11.2.0) - - Firebase/Crashlytics (11.2.0): + - FirebaseAnalytics (~> 11.4.0) + - Firebase/CoreOnly (11.4.0): + - FirebaseCore (= 11.4.0) + - Firebase/Crashlytics (11.4.0): - Firebase/CoreOnly - - FirebaseCrashlytics (~> 11.2.0) - - Firebase/Installations (11.2.0): + - FirebaseCrashlytics (~> 11.4.0) + - Firebase/Installations (11.4.0): - Firebase/CoreOnly - - FirebaseInstallations (~> 11.2.0) - - Firebase/Messaging (11.2.0): + - FirebaseInstallations (~> 11.4.0) + - Firebase/Messaging (11.4.0): - Firebase/CoreOnly - - FirebaseMessaging (~> 11.2.0) - - firebase_analytics (11.3.3): - - Firebase/Analytics (= 11.2.0) + - FirebaseMessaging (~> 11.4.0) + - firebase_analytics (11.3.5): + - Firebase/Analytics (= 11.4.0) - firebase_core - Flutter - - firebase_app_installations (0.3.1-1): - - Firebase/Installations (= 11.2.0) + - firebase_app_installations (0.3.1-6): + - Firebase/Installations (= 11.4.0) - firebase_core - Flutter - - firebase_core (3.6.0): - - Firebase/CoreOnly (= 11.2.0) + - firebase_core (3.8.0): + - Firebase/CoreOnly (= 11.4.0) - Flutter - - firebase_crashlytics (4.1.3): - - Firebase/Crashlytics (= 11.2.0) + - firebase_crashlytics (4.1.5): + - Firebase/Crashlytics (= 11.4.0) - firebase_core - Flutter - - firebase_messaging (15.1.3): - - Firebase/Messaging (= 11.2.0) + - firebase_messaging (15.1.5): + - Firebase/Messaging (= 11.4.0) - firebase_core - Flutter - - FirebaseAnalytics (11.2.0): - - FirebaseAnalytics/AdIdSupport (= 11.2.0) + - FirebaseAnalytics (11.4.0): + - FirebaseAnalytics/AdIdSupport (= 11.4.0) - FirebaseCore (~> 11.0) - FirebaseInstallations (~> 11.0) - GoogleUtilities/AppDelegateSwizzler (~> 8.0) @@ -49,25 +49,25 @@ PODS: - GoogleUtilities/Network (~> 8.0) - "GoogleUtilities/NSData+zlib (~> 8.0)" - nanopb (~> 3.30910.0) - - FirebaseAnalytics/AdIdSupport (11.2.0): + - FirebaseAnalytics/AdIdSupport (11.4.0): - FirebaseCore (~> 11.0) - FirebaseInstallations (~> 11.0) - - GoogleAppMeasurement (= 11.2.0) + - GoogleAppMeasurement (= 11.4.0) - GoogleUtilities/AppDelegateSwizzler (~> 8.0) - GoogleUtilities/MethodSwizzler (~> 8.0) - GoogleUtilities/Network (~> 8.0) - "GoogleUtilities/NSData+zlib (~> 8.0)" - nanopb (~> 3.30910.0) - - FirebaseCore (11.2.0): + - FirebaseCore (11.4.0): - FirebaseCoreInternal (~> 11.0) - GoogleUtilities/Environment (~> 8.0) - GoogleUtilities/Logger (~> 8.0) - - FirebaseCoreExtension (11.3.0): + - FirebaseCoreExtension (11.4.1): - FirebaseCore (~> 11.0) - - FirebaseCoreInternal (11.3.0): + - FirebaseCoreInternal (11.5.0): - "GoogleUtilities/NSData+zlib (~> 8.0)" - - FirebaseCrashlytics (11.2.0): - - FirebaseCore (~> 11.0) + - FirebaseCrashlytics (11.4.0): + - FirebaseCore (~> 11.4) - FirebaseInstallations (~> 11.0) - FirebaseRemoteConfigInterop (~> 11.0) - FirebaseSessions (~> 11.0) @@ -75,12 +75,12 @@ PODS: - GoogleUtilities/Environment (~> 8.0) - nanopb (~> 3.30910.0) - PromisesObjC (~> 2.4) - - FirebaseInstallations (11.2.0): + - FirebaseInstallations (11.4.0): - FirebaseCore (~> 11.0) - GoogleUtilities/Environment (~> 8.0) - GoogleUtilities/UserDefaults (~> 8.0) - PromisesObjC (~> 2.4) - - FirebaseMessaging (11.2.0): + - FirebaseMessaging (11.4.0): - FirebaseCore (~> 11.0) - FirebaseInstallations (~> 11.0) - GoogleDataTransport (~> 10.0) @@ -89,10 +89,10 @@ PODS: - GoogleUtilities/Reachability (~> 8.0) - GoogleUtilities/UserDefaults (~> 8.0) - nanopb (~> 3.30910.0) - - FirebaseRemoteConfigInterop (11.3.0) - - FirebaseSessions (11.3.0): - - FirebaseCore (~> 11.0) - - FirebaseCoreExtension (~> 11.0) + - FirebaseRemoteConfigInterop (11.5.0) + - FirebaseSessions (11.4.0): + - FirebaseCore (~> 11.4) + - FirebaseCoreExtension (~> 11.4) - FirebaseInstallations (~> 11.0) - GoogleDataTransport (~> 10.0) - GoogleUtilities/Environment (~> 8.0) @@ -108,21 +108,21 @@ PODS: - Flutter - geolocator_apple (1.2.0): - Flutter - - GoogleAppMeasurement (11.2.0): - - GoogleAppMeasurement/AdIdSupport (= 11.2.0) + - GoogleAppMeasurement (11.4.0): + - GoogleAppMeasurement/AdIdSupport (= 11.4.0) - GoogleUtilities/AppDelegateSwizzler (~> 8.0) - GoogleUtilities/MethodSwizzler (~> 8.0) - GoogleUtilities/Network (~> 8.0) - "GoogleUtilities/NSData+zlib (~> 8.0)" - nanopb (~> 3.30910.0) - - GoogleAppMeasurement/AdIdSupport (11.2.0): - - GoogleAppMeasurement/WithoutAdIdSupport (= 11.2.0) + - GoogleAppMeasurement/AdIdSupport (11.4.0): + - GoogleAppMeasurement/WithoutAdIdSupport (= 11.4.0) - GoogleUtilities/AppDelegateSwizzler (~> 8.0) - GoogleUtilities/MethodSwizzler (~> 8.0) - GoogleUtilities/Network (~> 8.0) - "GoogleUtilities/NSData+zlib (~> 8.0)" - nanopb (~> 3.30910.0) - - GoogleAppMeasurement/WithoutAdIdSupport (11.2.0): + - GoogleAppMeasurement/WithoutAdIdSupport (11.4.0): - GoogleUtilities/AppDelegateSwizzler (~> 8.0) - GoogleUtilities/MethodSwizzler (~> 8.0) - GoogleUtilities/Network (~> 8.0) @@ -171,7 +171,7 @@ PODS: - GoogleUtilities/UserDefaults (8.0.2): - GoogleUtilities/Logger - GoogleUtilities/Privacy - - in_app_review (0.2.0): + - in_app_review (2.0.0): - Flutter - MapLibre (6.5.0) - maplibre_gl (0.0.1): @@ -192,12 +192,12 @@ PODS: - PromisesObjC (2.4.0) - PromisesSwift (2.4.0): - PromisesObjC (= 2.4.0) - - purchases_flutter (8.1.5): + - purchases_flutter (8.2.2): - Flutter - - PurchasesHybridCommon (= 13.5.0) - - PurchasesHybridCommon (13.5.0): - - RevenueCat (= 5.6.0) - - RevenueCat (5.6.0) + - PurchasesHybridCommon (= 13.9.0) + - PurchasesHybridCommon (13.9.0): + - RevenueCat (= 5.8.0) + - RevenueCat (5.8.0) - share_plus (0.0.1): - Flutter - shared_preference_app_group (1.0.0): @@ -311,43 +311,43 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: app_settings: 017320c6a680cdc94c799949d95b84cb69389ebc background_task: a584ba6e093a60641252e89f7cd404ec92a30c8d - device_info_plus: 97af1d7e84681a90d0693e63169a5d50e0839a0d - Firebase: 98e6bf5278170668a7983e12971a66b2cd57fc8c - firebase_analytics: fbc57838bdb94eef1e0ff504f127d974ff2981ad - firebase_app_installations: 9fe92dd45921621732f61d05631a6bbf81f7cd73 - firebase_core: 2bedc3136ec7c7b8561c6123ed0239387b53f2af - firebase_crashlytics: 37d104d457b51760b48504a93a12b3bf70995d77 - firebase_messaging: 15d114e1a41fc31e4fbabcd48d765a19eec94a38 - FirebaseAnalytics: c36efd5710c60c17558650fa58c2066eca7e9265 - FirebaseCore: a282032ae9295c795714ded2ec9c522fc237f8da - FirebaseCoreExtension: 30bb063476ef66cd46925243d64ad8b2c8ac3264 - FirebaseCoreInternal: ac26d09a70c730e497936430af4e60fb0c68ec4e - FirebaseCrashlytics: cfc69af5b53565dc6a5e563788809b5778ac4eac - FirebaseInstallations: 771177d89d6c451dc6e50085ec82e2fc77ed0a4a - FirebaseMessaging: c9ec7b90c399c7a6100297e9d16f8a27fc7f7152 - FirebaseRemoteConfigInterop: c3a5c31b3c22079f41ba1dc645df889d9ce38cb9 - FirebaseSessions: 655ff17f3cc1a635cbdc2d69b953878001f9e25b + device_info_plus: bf2e3232933866d73fe290f2942f2156cdd10342 + Firebase: cf1b19f21410b029b6786a54e9764a0cacad3c99 + firebase_analytics: fa7e5b20c2b58042e3301f5112a473d365bd490c + firebase_app_installations: c3aa0a5feb5c04dfe6d14ae6a4789a4fe01ee94b + firebase_core: 9efc3ecf689cdbc90f13f4dc58108c83ea46b266 + firebase_crashlytics: 72a8b504422ba8bb435a7a0c0a9341320cbcbe29 + firebase_messaging: 6bf60adb4b33a848d135e16bc363fb4924f98fba + FirebaseAnalytics: 3feef9ae8733c567866342a1000691baaa7cad49 + FirebaseCore: e0510f1523bc0eb21653cac00792e1e2bd6f1771 + FirebaseCoreExtension: f1bc67a4702931a7caa097d8e4ac0a1b0d16720e + FirebaseCoreInternal: f47dd28ae7782e6a4738aad3106071a8fe0af604 + FirebaseCrashlytics: 41bbdd2b514a8523cede0c217aee6ef7ecf38401 + FirebaseInstallations: 6ef4a1c7eb2a61ee1f74727d7f6ce2e72acf1414 + FirebaseMessaging: f8a160d99c2c2e5babbbcc90c4a3e15db036aee2 + FirebaseRemoteConfigInterop: 7a7aebb9342d53913a5c890efa88e289d9e5c1bc + FirebaseSessions: 3f56f177d9e53a85021d16b31f9a111849d1dd8b Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7 flutter_email_sender: 10a22605f92809a11ef52b2f412db806c6082d40 - flutter_local_notifications: 4cde75091f6327eb8517fa068a0a5950212d2086 + flutter_local_notifications: df98d66e515e1ca797af436137b4459b160ad8c9 flutter_secure_storage: d33dac7ae2ea08509be337e775f6b59f1ff45f12 - geolocator_apple: 6cbaf322953988e009e5ecb481f07efece75c450 - GoogleAppMeasurement: 76d4f8b36b03bd8381fa9a7fe2cc7f99c0a2e93a + geolocator_apple: 9bcea1918ff7f0062d98345d238ae12718acfbc1 + GoogleAppMeasurement: 987769c4ca6b968f2479fbcc9fe3ce34af454b8e GoogleDataTransport: aae35b7ea0c09004c3797d53c8c41f66f219d6a7 GoogleUtilities: 26a3abef001b6533cf678d3eb38fd3f614b7872d - in_app_review: 318597b3a06c22bb46dc454d56828c85f444f99d + in_app_review: a31b5257259646ea78e0e35fc914979b0031d011 MapLibre: 0ebfa9329d313cec8bf0a5ba5a336a1dc903785e maplibre_gl: 943a491fffb3337c1b9de57fd377206d18c16e34 nanopb: fad817b59e0457d11a5dfbde799381cd727c1275 - package_info_plus: 58f0028419748fad15bf008b270aaa8e54380b1c + package_info_plus: c0502532a26c7662a62a356cebe2692ec5fe4ec4 path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46 permission_handler_apple: 9878588469a2b0d0fc1e048d9f43605f92e6cec2 PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47 PromisesSwift: 9d77319bbe72ebf6d872900551f7eeba9bce2851 - purchases_flutter: b38a31b46ed1289950680f8e7af42c1673db8ce7 - PurchasesHybridCommon: 7c6fb07b091588d82180eec2590035f216ffbf55 - RevenueCat: a7117d40c27bc1e8a48e41ca4ea6856209664097 - share_plus: 8875f4f2500512ea181eef553c3e27dba5135aad + purchases_flutter: 279ea4decfaaa493fe32dcc88efb74c30d13f98c + PurchasesHybridCommon: 2e684a22e4aaf33c5fc10fd9e2ca2e27e6b7abff + RevenueCat: 4cd1daad3a57d2b4015ed2b4aef0a0f24ffce0a1 + share_plus: 8b6f8b3447e494cca5317c8c3073de39b3600d1f shared_preference_app_group: 46aee3873e1da581d4904bece9876596d7f66725 shared_preferences_foundation: fcdcbc04712aee1108ac7fda236f363274528f78 SwiftProtobuf: 4dbaffec76a39a8dc5da23b40af1a5dc01a4c02d @@ -355,4 +355,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: 0145233e482511eed8a0cda73fa5fb9f944ea4af -COCOAPODS: 1.15.2 +COCOAPODS: 1.16.2 diff --git a/app/pubspec.lock b/app/pubspec.lock index 9f646d768..e15d2f89a 100644 --- a/app/pubspec.lock +++ b/app/pubspec.lock @@ -673,10 +673,10 @@ packages: dependency: "direct main" description: name: flutter_markdown - sha256: "999a4e3cb3e1532a971c86d6c73a480264f6a687959d4887cb4e2990821827e4" + sha256: "255b00afa1a7bad19727da6a7780cf3db6c3c12e68d302d85e0ff1fdf173db9e" url: "https://pub.dev" source: hosted - version: "0.7.4+2" + version: "0.7.4+3" flutter_riverpod: dependency: transitive description: @@ -1276,10 +1276,10 @@ packages: dependency: transitive description: name: path_provider_android - sha256: c464428172cb986b758c6d1724c603097febb8fb855aa265aeecc9280c294d4a + sha256: "8c4967f8b7cb46dc914e178daa29813d83ae502e0529d7b0478330616a691ef7" url: "https://pub.dev" source: hosted - version: "2.2.12" + version: "2.2.14" path_provider_foundation: dependency: transitive description: @@ -1629,10 +1629,10 @@ packages: dependency: transitive description: name: shelf_web_socket - sha256: "073c147238594ecd0d193f3456a5fe91c4b0abbcc68bf5cd95b36c4e194ac611" + sha256: cc36c297b52866d203dbf9332263c94becc2fe0ceaa9681d07b6ef9807023b67 url: "https://pub.dev" source: hosted - version: "2.0.0" + version: "2.0.1" shorebird_code_push: dependency: "direct main" description: @@ -1754,34 +1754,34 @@ packages: dependency: transitive description: name: talker - sha256: "9d1c777f12ac49db3bf7b3e3977a09041a23da0fc65b7c12f0530c2045128104" + sha256: f387ad9137b211ae8cd754325680b7fb76feadaf1f142be7580ae59043a81651 url: "https://pub.dev" source: hosted - version: "4.4.7" + version: "4.5.1" talker_dio_logger: dependency: "direct main" description: name: talker_dio_logger - sha256: "9f63452dac8f7ab544b19f7b1f58bf5a5a94ed2e159e3fdb7a010e9db35339f6" + sha256: "76877bde30ff555c605234c1ce198488a16d9d24f3a684ba0928204bb5be8a35" url: "https://pub.dev" source: hosted - version: "4.4.7" + version: "4.5.1" talker_flutter: dependency: "direct main" description: name: talker_flutter - sha256: "7557c3088dbf341d1f9b6aac12ed1a15663e5e6a0165a29787070320c7edaa4e" + sha256: "4918292d1ac70f6cd23172f4292c7e777ab059edf68196993b912c24b30b236e" url: "https://pub.dev" source: hosted - version: "4.4.7" + version: "4.5.1" talker_logger: dependency: transitive description: name: talker_logger - sha256: e2b59c1708c2677d15017c1b248357a6f55c68bd4c415e878ff5addaba8aaab4 + sha256: f52be00b01a7cf74ab6ffbb69da8d33755d42b5381a16b963dbd36d75cc98c50 url: "https://pub.dev" source: hosted - version: "4.4.7" + version: "4.5.1" term_glyph: dependency: transitive description: @@ -1938,10 +1938,10 @@ packages: dependency: transitive description: name: vector_graphics_compiler - sha256: ab9ff38fc771e9ee1139320adbe3d18a60327370c218c60752068ebee4b49ab1 + sha256: "1b4b9e706a10294258727674a340ae0d6e64a7231980f9f9a3d12e4b42407aad" url: "https://pub.dev" source: hosted - version: "1.1.15" + version: "1.1.16" vector_math: dependency: transitive description: diff --git a/packages/jma_parameter_converter_internal/pubspec.lock b/packages/jma_parameter_converter_internal/pubspec.lock index 41ce97316..6959bffce 100644 --- a/packages/jma_parameter_converter_internal/pubspec.lock +++ b/packages/jma_parameter_converter_internal/pubspec.lock @@ -401,10 +401,10 @@ packages: dependency: transitive description: name: shelf_web_socket - sha256: "073c147238594ecd0d193f3456a5fe91c4b0abbcc68bf5cd95b36c4e194ac611" + sha256: cc36c297b52866d203dbf9332263c94becc2fe0ceaa9681d07b6ef9807023b67 url: "https://pub.dev" source: hosted - version: "2.0.0" + version: "2.0.1" source_gen: dependency: transitive description: @@ -473,10 +473,10 @@ packages: dependency: transitive description: name: test_api - sha256: "664d3a9a64782fcdeb83ce9c6b39e78fd2971d4e37827b9b06c3aa1edc5e760c" + sha256: fb31f383e2ee25fbbfe06b40fe21e1e458d14080e3c67e7ba0acfde4df4e0bbd url: "https://pub.dev" source: hosted - version: "0.7.3" + version: "0.7.4" timing: dependency: transitive description: