Skip to content

Commit 994cdb4

Browse files
flutter pub upgrade (flutter#926)
* flutter pub upgrade * `desktop_photo_search`: Remove unneeded `unawaited` Co-authored-by: John Ryan <[email protected]>
1 parent 58af3f5 commit 994cdb4

File tree

20 files changed

+129
-151
lines changed

20 files changed

+129
-151
lines changed

add_to_app/android_view/flutter_module_using_plugin/pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ packages:
120120
name: plugin_platform_interface
121121
url: "https://pub.dartlang.org"
122122
source: hosted
123-
version: "2.0.1"
123+
version: "2.0.2"
124124
provider:
125125
dependency: "direct main"
126126
description:
@@ -195,7 +195,7 @@ packages:
195195
name: url_launcher
196196
url: "https://pub.dartlang.org"
197197
source: hosted
198-
version: "6.0.11"
198+
version: "6.0.12"
199199
url_launcher_linux:
200200
dependency: transitive
201201
description:

add_to_app/books/flutter_module_books/pubspec.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ packages:
5656
name: cli_util
5757
url: "https://pub.dartlang.org"
5858
source: hosted
59-
version: "0.3.3"
59+
version: "0.3.4"
6060
clock:
6161
dependency: transitive
6262
description:
@@ -122,7 +122,7 @@ packages:
122122
name: glob
123123
url: "https://pub.dartlang.org"
124124
source: hosted
125-
version: "2.0.1"
125+
version: "2.0.2"
126126
lints:
127127
dependency: transitive
128128
description:
@@ -171,7 +171,7 @@ packages:
171171
name: pigeon
172172
url: "https://pub.dartlang.org"
173173
source: hosted
174-
version: "1.0.6"
174+
version: "1.0.7"
175175
pub_semver:
176176
dependency: transitive
177177
description:
@@ -246,7 +246,7 @@ packages:
246246
name: watcher
247247
url: "https://pub.dartlang.org"
248248
source: hosted
249-
version: "1.0.0"
249+
version: "1.0.1"
250250
yaml:
251251
dependency: transitive
252252
description:
@@ -255,4 +255,4 @@ packages:
255255
source: hosted
256256
version: "3.1.0"
257257
sdks:
258-
dart: ">=2.12.0 <3.0.0"
258+
dart: ">=2.14.0 <3.0.0"

add_to_app/fullscreen/flutter_module/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ packages:
6363
name: espresso
6464
url: "https://pub.dartlang.org"
6565
source: hosted
66-
version: "0.1.0+3"
66+
version: "0.1.0+4"
6767
fake_async:
6868
dependency: transitive
6969
description:

experimental/desktop_photo_search/lib/src/unsplash/unsplash.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import 'dart:typed_data';
77

88
import 'package:http/http.dart' as http;
99
import 'package:logging/logging.dart';
10-
import 'package:pedantic/pedantic.dart';
1110

1211
import 'api_error.dart';
1312
import 'photo.dart';
@@ -89,10 +88,10 @@ class Unsplash {
8988
});
9089

9190
_log.info('GET ${photo.links!.downloadLocation}');
92-
unawaited(http.get(Uri.parse(photo.links!.downloadLocation!), headers: {
91+
http.get(Uri.parse(photo.links!.downloadLocation!), headers: {
9392
'Accept-Version': 'v1',
9493
'Authorization': 'Client-ID $_accessKey',
95-
}));
94+
});
9695

9796
return futureBytes;
9897
}

experimental/desktop_photo_search/pubspec.lock

Lines changed: 17 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ packages:
77
name: _fe_analyzer_shared
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "26.0.0"
10+
version: "28.0.0"
1111
analyzer:
1212
dependency: transitive
1313
description:
1414
name: analyzer
1515
url: "https://pub.dartlang.org"
1616
source: hosted
17-
version: "2.3.0"
17+
version: "2.5.0"
1818
ansicolor:
1919
dependency: transitive
2020
description:
@@ -49,7 +49,7 @@ packages:
4949
name: build
5050
url: "https://pub.dartlang.org"
5151
source: hosted
52-
version: "2.1.0"
52+
version: "2.1.1"
5353
build_config:
5454
dependency: transitive
5555
description:
@@ -63,7 +63,7 @@ packages:
6363
name: build_daemon
6464
url: "https://pub.dartlang.org"
6565
source: hosted
66-
version: "3.0.0"
66+
version: "3.0.1"
6767
build_resolvers:
6868
dependency: transitive
6969
description:
@@ -77,14 +77,14 @@ packages:
7777
name: build_runner
7878
url: "https://pub.dartlang.org"
7979
source: hosted
80-
version: "2.1.2"
80+
version: "2.1.4"
8181
build_runner_core:
8282
dependency: transitive
8383
description:
8484
name: build_runner_core
8585
url: "https://pub.dartlang.org"
8686
source: hosted
87-
version: "7.1.0"
87+
version: "7.2.2"
8888
built_collection:
8989
dependency: "direct main"
9090
description:
@@ -133,7 +133,7 @@ packages:
133133
name: cli_util
134134
url: "https://pub.dartlang.org"
135135
source: hosted
136-
version: "0.3.3"
136+
version: "0.3.4"
137137
clock:
138138
dependency: transitive
139139
description:
@@ -189,7 +189,7 @@ packages:
189189
name: dart_style
190190
url: "https://pub.dartlang.org"
191191
source: hosted
192-
version: "2.1.0"
192+
version: "2.2.0"
193193
fake_async:
194194
dependency: transitive
195195
description:
@@ -210,7 +210,7 @@ packages:
210210
name: file_selector
211211
url: "https://pub.dartlang.org"
212212
source: hosted
213-
version: "0.8.2"
213+
version: "0.8.2+1"
214214
file_selector_linux:
215215
dependency: "direct main"
216216
description:
@@ -295,7 +295,7 @@ packages:
295295
name: glob
296296
url: "https://pub.dartlang.org"
297297
source: hosted
298-
version: "2.0.1"
298+
version: "2.0.2"
299299
graphs:
300300
dependency: transitive
301301
description:
@@ -316,7 +316,7 @@ packages:
316316
name: http
317317
url: "https://pub.dartlang.org"
318318
source: hosted
319-
version: "0.13.3"
319+
version: "0.13.4"
320320
http_multi_server:
321321
dependency: transitive
322322
description:
@@ -409,7 +409,7 @@ packages:
409409
name: msix
410410
url: "https://pub.dartlang.org"
411411
source: hosted
412-
version: "2.1.3"
412+
version: "2.2.3"
413413
nested:
414414
dependency: transitive
415415
description:
@@ -431,20 +431,13 @@ packages:
431431
url: "https://pub.dartlang.org"
432432
source: hosted
433433
version: "1.8.0"
434-
pedantic:
435-
dependency: transitive
436-
description:
437-
name: pedantic
438-
url: "https://pub.dartlang.org"
439-
source: hosted
440-
version: "1.11.1"
441434
plugin_platform_interface:
442435
dependency: transitive
443436
description:
444437
name: plugin_platform_interface
445438
url: "https://pub.dartlang.org"
446439
source: hosted
447-
version: "2.0.1"
440+
version: "2.0.2"
448441
pool:
449442
dependency: transitive
450443
description:
@@ -505,7 +498,7 @@ packages:
505498
name: source_gen
506499
url: "https://pub.dartlang.org"
507500
source: hosted
508-
version: "1.1.0"
501+
version: "1.1.1"
509502
source_span:
510503
dependency: transitive
511504
description:
@@ -582,7 +575,7 @@ packages:
582575
name: url_launcher
583576
url: "https://pub.dartlang.org"
584577
source: hosted
585-
version: "6.0.11"
578+
version: "6.0.12"
586579
url_launcher_linux:
587580
dependency: transitive
588581
description:
@@ -624,7 +617,7 @@ packages:
624617
name: uuid
625618
url: "https://pub.dartlang.org"
626619
source: hosted
627-
version: "3.0.4"
620+
version: "3.0.5"
628621
vector_math:
629622
dependency: transitive
630623
description:
@@ -638,7 +631,7 @@ packages:
638631
name: watcher
639632
url: "https://pub.dartlang.org"
640633
source: hosted
641-
version: "1.0.0"
634+
version: "1.0.1"
642635
web_socket_channel:
643636
dependency: transitive
644637
description:

experimental/federated_plugin/federated_plugin/example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ packages:
155155
name: plugin_platform_interface
156156
url: "https://pub.dartlang.org"
157157
source: hosted
158-
version: "2.0.1"
158+
version: "2.0.2"
159159
sky_engine:
160160
dependency: transitive
161161
description: flutter

experimental/federated_plugin/federated_plugin/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ packages:
141141
name: plugin_platform_interface
142142
url: "https://pub.dartlang.org"
143143
source: hosted
144-
version: "2.0.1"
144+
version: "2.0.2"
145145
sky_engine:
146146
dependency: transitive
147147
description: flutter

experimental/federated_plugin/federated_plugin_platform_interface/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ packages:
101101
name: plugin_platform_interface
102102
url: "https://pub.dartlang.org"
103103
source: hosted
104-
version: "2.0.1"
104+
version: "2.0.2"
105105
sky_engine:
106106
dependency: transitive
107107
description: flutter

experimental/federated_plugin/federated_plugin_web/pubspec.lock

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ packages:
77
name: _fe_analyzer_shared
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "26.0.0"
10+
version: "28.0.0"
1111
analyzer:
1212
dependency: transitive
1313
description:
1414
name: analyzer
1515
url: "https://pub.dartlang.org"
1616
source: hosted
17-
version: "2.3.0"
17+
version: "2.5.0"
1818
archive:
1919
dependency: transitive
2020
description:
@@ -49,7 +49,7 @@ packages:
4949
name: build
5050
url: "https://pub.dartlang.org"
5151
source: hosted
52-
version: "2.1.0"
52+
version: "2.1.1"
5353
built_collection:
5454
dependency: transitive
5555
description:
@@ -84,7 +84,7 @@ packages:
8484
name: cli_util
8585
url: "https://pub.dartlang.org"
8686
source: hosted
87-
version: "0.3.3"
87+
version: "0.3.4"
8888
clock:
8989
dependency: transitive
9090
description:
@@ -126,7 +126,7 @@ packages:
126126
name: dart_style
127127
url: "https://pub.dartlang.org"
128128
source: hosted
129-
version: "2.1.0"
129+
version: "2.2.0"
130130
fake_async:
131131
dependency: transitive
132132
description:
@@ -193,7 +193,7 @@ packages:
193193
name: glob
194194
url: "https://pub.dartlang.org"
195195
source: hosted
196-
version: "2.0.1"
196+
version: "2.0.2"
197197
integration_test:
198198
dependency: "direct dev"
199199
description: flutter
@@ -255,13 +255,6 @@ packages:
255255
url: "https://pub.dartlang.org"
256256
source: hosted
257257
version: "1.8.0"
258-
pedantic:
259-
dependency: transitive
260-
description:
261-
name: pedantic
262-
url: "https://pub.dartlang.org"
263-
source: hosted
264-
version: "1.11.1"
265258
platform:
266259
dependency: transitive
267260
description:
@@ -275,7 +268,7 @@ packages:
275268
name: plugin_platform_interface
276269
url: "https://pub.dartlang.org"
277270
source: hosted
278-
version: "2.0.1"
271+
version: "2.0.2"
279272
process:
280273
dependency: transitive
281274
description:
@@ -301,7 +294,7 @@ packages:
301294
name: source_gen
302295
url: "https://pub.dartlang.org"
303296
source: hosted
304-
version: "1.1.0"
297+
version: "1.1.1"
305298
source_span:
306299
dependency: transitive
307300
description:
@@ -378,7 +371,7 @@ packages:
378371
name: watcher
379372
url: "https://pub.dartlang.org"
380373
source: hosted
381-
version: "1.0.0"
374+
version: "1.0.1"
382375
webdriver:
383376
dependency: transitive
384377
description:
@@ -394,5 +387,5 @@ packages:
394387
source: hosted
395388
version: "3.1.0"
396389
sdks:
397-
dart: ">=2.12.0 <3.0.0"
390+
dart: ">=2.14.0 <3.0.0"
398391
flutter: ">=1.17.0"

0 commit comments

Comments
 (0)