Skip to content

Commit 8c7bfb8

Browse files
author
jones
committed
upgrade flutter
1 parent 33ed816 commit 8c7bfb8

File tree

5 files changed

+183
-24
lines changed

5 files changed

+183
-24
lines changed

.github/workflows/dart.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: flutter-actions/[email protected]
2323
with:
2424
channel: stable
25-
version: 3.32.4
25+
version: 3.32.5
2626

2727
- name: Install dependencies
2828
run: |

lib/l10n/app_localizations.dart

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ import 'app_localizations_en.dart';
6363
/// property.
6464
abstract class AppLocalizations {
6565
AppLocalizations(String locale)
66-
: localeName = intl.Intl.canonicalizedLocale(locale.toString());
66+
: localeName = intl.Intl.canonicalizedLocale(locale.toString());
6767

6868
final String localeName;
6969

@@ -86,16 +86,16 @@ abstract class AppLocalizations {
8686
/// of delegates is preferred or required.
8787
static const List<LocalizationsDelegate<dynamic>> localizationsDelegates =
8888
<LocalizationsDelegate<dynamic>>[
89-
delegate,
90-
GlobalMaterialLocalizations.delegate,
91-
GlobalCupertinoLocalizations.delegate,
92-
GlobalWidgetsLocalizations.delegate,
93-
];
89+
delegate,
90+
GlobalMaterialLocalizations.delegate,
91+
GlobalCupertinoLocalizations.delegate,
92+
GlobalWidgetsLocalizations.delegate,
93+
];
9494

9595
/// A list of this localizations delegate's supported locales.
9696
static const List<Locale> supportedLocales = <Locale>[
9797
Locale('de'),
98-
Locale('en'),
98+
Locale('en')
9999
];
100100

101101
/// Switch between dark and light mode!
@@ -396,9 +396,8 @@ AppLocalizations lookupAppLocalizations(Locale locale) {
396396
}
397397

398398
throw FlutterError(
399-
'AppLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
400-
'an issue with the localizations generation tool. Please file an issue '
401-
'on GitHub with a reproducible sample app and the gen-l10n configuration '
402-
'that was used.',
403-
);
399+
'AppLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
400+
'an issue with the localizations generation tool. Please file an issue '
401+
'on GitHub with a reproducible sample app and the gen-l10n configuration '
402+
'that was used.');
404403
}

pubspec.lock

Lines changed: 169 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ packages:
55
dependency: transitive
66
description:
77
name: _fe_analyzer_shared
8-
sha256: e55636ed79578b9abca5fecf9437947798f5ef7456308b5cb85720b793eac92f
8+
sha256: da0d9209ca76bde579f2da330aeb9df62b6319c834fa7baae052021b0462401f
99
url: "https://pub.dev"
1010
source: hosted
11-
version: "82.0.0"
11+
version: "85.0.0"
1212
analyzer:
1313
dependency: transitive
1414
description:
1515
name: analyzer
16-
sha256: "904ae5bb474d32c38fb9482e2d925d5454cda04ddd0e55d2e6826bc72f6ba8c0"
16+
sha256: f6154230675c44a191f2e20d16eeceb4aa18b30ca732db4efaf94c6a7d43cfa6
1717
url: "https://pub.dev"
1818
source: hosted
19-
version: "7.4.5"
19+
version: "7.5.2"
2020
archive:
2121
dependency: transitive
2222
description:
@@ -53,10 +53,10 @@ packages:
5353
dependency: transitive
5454
description:
5555
name: build
56-
sha256: cef23f1eda9b57566c81e2133d196f8e3df48f244b317368d65c5943d91148f0
56+
sha256: "51dc711996cbf609b90cbe5b335bbce83143875a9d58e4b5c6d3c4f684d3dda7"
5757
url: "https://pub.dev"
5858
source: hosted
59-
version: "2.4.2"
59+
version: "2.5.4"
6060
build_cli_annotations:
6161
dependency: transitive
6262
description:
@@ -65,6 +65,46 @@ packages:
6565
url: "https://pub.dev"
6666
source: hosted
6767
version: "2.1.0"
68+
build_config:
69+
dependency: transitive
70+
description:
71+
name: build_config
72+
sha256: "4ae2de3e1e67ea270081eaee972e1bd8f027d459f249e0f1186730784c2e7e33"
73+
url: "https://pub.dev"
74+
source: hosted
75+
version: "1.1.2"
76+
build_daemon:
77+
dependency: transitive
78+
description:
79+
name: build_daemon
80+
sha256: "8e928697a82be082206edb0b9c99c5a4ad6bc31c9e9b8b2f291ae65cd4a25daa"
81+
url: "https://pub.dev"
82+
source: hosted
83+
version: "4.0.4"
84+
build_resolvers:
85+
dependency: transitive
86+
description:
87+
name: build_resolvers
88+
sha256: ee4257b3f20c0c90e72ed2b57ad637f694ccba48839a821e87db762548c22a62
89+
url: "https://pub.dev"
90+
source: hosted
91+
version: "2.5.4"
92+
build_runner:
93+
dependency: transitive
94+
description:
95+
name: build_runner
96+
sha256: "382a4d649addbfb7ba71a3631df0ec6a45d5ab9b098638144faf27f02778eb53"
97+
url: "https://pub.dev"
98+
source: hosted
99+
version: "2.5.4"
100+
build_runner_core:
101+
dependency: transitive
102+
description:
103+
name: build_runner_core
104+
sha256: "85fbbb1036d576d966332a3f5ce83f2ce66a40bea1a94ad2d5fc29a19a0d3792"
105+
url: "https://pub.dev"
106+
source: hosted
107+
version: "9.1.2"
68108
built_collection:
69109
dependency: transitive
70110
description:
@@ -290,6 +330,14 @@ packages:
290330
url: "https://pub.dev"
291331
source: hosted
292332
version: "10.8.0"
333+
frontend_server_client:
334+
dependency: transitive
335+
description:
336+
name: frontend_server_client
337+
sha256: f64a0333a82f30b0cca061bc3d143813a486dc086b574bfb233b7c1372427694
338+
url: "https://pub.dev"
339+
source: hosted
340+
version: "4.0.0"
293341
fuchsia_remote_debug_protocol:
294342
dependency: transitive
295343
description: flutter
@@ -307,10 +355,18 @@ packages:
307355
dependency: "direct main"
308356
description:
309357
name: go_router
310-
sha256: f222e12c5360b0c90aae5d33e6b351a6789d4aa1c97b32691b4a30946fc91813
358+
sha256: ac294be30ba841830cfa146e5a3b22bb09f8dc5a0fdd9ca9332b04b0bde99ebf
311359
url: "https://pub.dev"
312360
source: hosted
313-
version: "15.2.0"
361+
version: "15.2.4"
362+
graphs:
363+
dependency: transitive
364+
description:
365+
name: graphs
366+
sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0"
367+
url: "https://pub.dev"
368+
source: hosted
369+
version: "2.3.2"
314370
highlight:
315371
dependency: transitive
316372
description:
@@ -327,6 +383,30 @@ packages:
327383
url: "https://pub.dev"
328384
source: hosted
329385
version: "0.1.1"
386+
http:
387+
dependency: transitive
388+
description:
389+
name: http
390+
sha256: "2c11f3f94c687ee9bad77c171151672986360b2b001d109814ee7140b2cf261b"
391+
url: "https://pub.dev"
392+
source: hosted
393+
version: "1.4.0"
394+
http_multi_server:
395+
dependency: transitive
396+
description:
397+
name: http_multi_server
398+
sha256: aa6199f908078bb1c5efb8d8638d4ae191aac11b311132c3ef48ce352fb52ef8
399+
url: "https://pub.dev"
400+
source: hosted
401+
version: "3.2.2"
402+
http_parser:
403+
dependency: transitive
404+
description:
405+
name: http_parser
406+
sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571"
407+
url: "https://pub.dev"
408+
source: hosted
409+
version: "4.1.2"
330410
image:
331411
dependency: transitive
332412
description:
@@ -348,13 +428,29 @@ packages:
348428
url: "https://pub.dev"
349429
source: hosted
350430
version: "0.20.2"
431+
io:
432+
dependency: transitive
433+
description:
434+
name: io
435+
sha256: dfd5a80599cf0165756e3181807ed3e77daf6dd4137caaad72d0b7931597650b
436+
url: "https://pub.dev"
437+
source: hosted
438+
version: "1.0.5"
351439
jotrockenmitlockenrepo:
352440
dependency: "direct main"
353441
description:
354442
path: "ExternalLib/jotrockenmitlockenrepo"
355443
relative: true
356444
source: path
357445
version: "1.1.0"
446+
js:
447+
dependency: transitive
448+
description:
449+
name: js
450+
sha256: "53385261521cc4a0c4658fd0ad07a7d14591cf8fc33abbceae306ddb974888dc"
451+
url: "https://pub.dev"
452+
source: hosted
453+
version: "0.7.2"
358454
json_annotation:
359455
dependency: transitive
360456
description:
@@ -499,6 +595,14 @@ packages:
499595
url: "https://pub.dev"
500596
source: hosted
501597
version: "2.1.8"
598+
pool:
599+
dependency: transitive
600+
description:
601+
name: pool
602+
sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a"
603+
url: "https://pub.dev"
604+
source: hosted
605+
version: "1.5.1"
502606
posix:
503607
dependency: transitive
504608
description:
@@ -523,6 +627,14 @@ packages:
523627
url: "https://pub.dev"
524628
source: hosted
525629
version: "2.2.0"
630+
pubspec_parse:
631+
dependency: transitive
632+
description:
633+
name: pubspec_parse
634+
sha256: "0560ba233314abbed0a48a2956f7f022cce7c3e1e73df540277da7544cad4082"
635+
url: "https://pub.dev"
636+
source: hosted
637+
version: "1.5.0"
526638
rust_lib_kataglyphis_inference_engine:
527639
dependency: "direct main"
528640
description:
@@ -538,6 +650,22 @@ packages:
538650
url: "https://pub.dev"
539651
source: hosted
540652
version: "3.0.1"
653+
shelf:
654+
dependency: transitive
655+
description:
656+
name: shelf
657+
sha256: e7dd780a7ffb623c57850b33f43309312fc863fb6aa3d276a754bb299839ef12
658+
url: "https://pub.dev"
659+
source: hosted
660+
version: "1.4.2"
661+
shelf_web_socket:
662+
dependency: transitive
663+
description:
664+
name: shelf_web_socket
665+
sha256: "3632775c8e90d6c9712f883e633716432a27758216dfb61bd86a8321c0580925"
666+
url: "https://pub.dev"
667+
source: hosted
668+
version: "3.0.0"
541669
sky_engine:
542670
dependency: transitive
543671
description: flutter
@@ -575,6 +703,14 @@ packages:
575703
url: "https://pub.dev"
576704
source: hosted
577705
version: "2.1.4"
706+
stream_transform:
707+
dependency: transitive
708+
description:
709+
name: stream_transform
710+
sha256: ad47125e588cfd37a9a7f86c7d6356dde8dfe89d071d293f80ca9e9273a33871
711+
url: "https://pub.dev"
712+
source: hosted
713+
version: "2.1.1"
578714
string_scanner:
579715
dependency: transitive
580716
description:
@@ -607,6 +743,14 @@ packages:
607743
url: "https://pub.dev"
608744
source: hosted
609745
version: "0.7.4"
746+
timing:
747+
dependency: transitive
748+
description:
749+
name: timing
750+
sha256: "62ee18aca144e4a9f29d212f5a4c6a053be252b895ab14b5821996cff4ed90fe"
751+
url: "https://pub.dev"
752+
source: hosted
753+
version: "1.0.2"
610754
typed_data:
611755
dependency: transitive
612756
description:
@@ -719,6 +863,22 @@ packages:
719863
url: "https://pub.dev"
720864
source: hosted
721865
version: "1.1.1"
866+
web_socket:
867+
dependency: transitive
868+
description:
869+
name: web_socket
870+
sha256: "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c"
871+
url: "https://pub.dev"
872+
source: hosted
873+
version: "1.0.1"
874+
web_socket_channel:
875+
dependency: transitive
876+
description:
877+
name: web_socket_channel
878+
sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8
879+
url: "https://pub.dev"
880+
source: hosted
881+
version: "3.0.3"
722882
webdriver:
723883
dependency: transitive
724884
description:
@@ -745,4 +905,4 @@ packages:
745905
version: "3.1.3"
746906
sdks:
747907
dart: ">=3.8.1 <4.0.0"
748-
flutter: ">=3.32.4"
908+
flutter: ">=3.32.5"

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version: 1.0.0+1
88

99
environment:
1010
sdk: ">=3.8.1 <4.0.0"
11-
flutter: ">=3.32.4"
11+
flutter: ">=3.32.5"
1212

1313
# Dependencies specify other packages that your package needs in order to work.
1414
# To automatically upgrade your package dependencies to the latest versions

0 commit comments

Comments
 (0)