Skip to content

Commit 608a383

Browse files
committed
Update dependencies
1 parent 136d8d5 commit 608a383

File tree

15 files changed

+118
-110
lines changed

15 files changed

+118
-110
lines changed

api/pubspec.lock

+12-12
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: dc27559385e905ad30838356c5f5d574014ba39872d732111cd07ac0beff4c57
8+
sha256: e55636ed79578b9abca5fecf9437947798f5ef7456308b5cb85720b793eac92f
99
url: "https://pub.dev"
1010
source: hosted
11-
version: "80.0.0"
11+
version: "82.0.0"
1212
analyzer:
1313
dependency: transitive
1414
description:
1515
name: analyzer
16-
sha256: "192d1c5b944e7e53b24b5586db760db934b177d4147c42fbca8c8c5f1eb8d11e"
16+
sha256: f4c21c94eb4623b183c1014a470196b3910701bea9b926e6c91270d756e6fc60
1717
url: "https://pub.dev"
1818
source: hosted
19-
version: "7.3.0"
19+
version: "7.4.1"
2020
ansicolor:
2121
dependency: transitive
2222
description:
@@ -29,10 +29,10 @@ packages:
2929
dependency: "direct main"
3030
description:
3131
name: archive
32-
sha256: "7dcbd0f87fe5f61cb28da39a1a8b70dbc106e2fe0516f7836eb7bb2948481a12"
32+
sha256: a7f37ff061d7abc2fcf213554b9dcaca713c5853afa5c065c44888bc9ccaf813
3333
url: "https://pub.dev"
3434
source: hosted
35-
version: "4.0.5"
35+
version: "4.0.6"
3636
args:
3737
dependency: transitive
3838
description:
@@ -376,10 +376,10 @@ packages:
376376
dependency: transitive
377377
description:
378378
name: posix
379-
sha256: a0117dc2167805aa9125b82eee515cc891819bac2f538c83646d355b16f58b9a
379+
sha256: f0d7856b6ca1887cfa6d1d394056a296ae33489db914e365e2044fdada449e62
380380
url: "https://pub.dev"
381381
source: hosted
382-
version: "6.0.1"
382+
version: "6.0.2"
383383
pub_semver:
384384
dependency: transitive
385385
description:
@@ -520,18 +520,18 @@ packages:
520520
dependency: transitive
521521
description:
522522
name: web_socket
523-
sha256: "3c12d96c0c9a4eec095246debcea7b86c0324f22df69893d538fcc6f1b8cce83"
523+
sha256: bfe6f435f6ec49cb6c01da1e275ae4228719e59a6b067048c51e72d9d63bcc4b
524524
url: "https://pub.dev"
525525
source: hosted
526-
version: "0.1.6"
526+
version: "1.0.0"
527527
web_socket_channel:
528528
dependency: transitive
529529
description:
530530
name: web_socket_channel
531-
sha256: "0b8e2457400d8a859b7b2030786835a28a8e80836ef64402abef392ff4f1d0e5"
531+
sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8
532532
url: "https://pub.dev"
533533
source: hosted
534-
version: "3.0.2"
534+
version: "3.0.3"
535535
yaml:
536536
dependency: transitive
537537
description:

app/android/Gemfile.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ GEM
1111
artifactory (3.0.17)
1212
atomos (0.1.3)
1313
aws-eventstream (1.3.2)
14-
aws-partitions (1.1082.0)
15-
aws-sdk-core (3.222.1)
14+
aws-partitions (1.1090.0)
15+
aws-sdk-core (3.222.2)
1616
aws-eventstream (~> 1, >= 1.3.0)
1717
aws-partitions (~> 1, >= 1.992.0)
1818
aws-sigv4 (~> 1.9)
@@ -71,7 +71,7 @@ GEM
7171
faraday_middleware (1.2.1)
7272
faraday (~> 1.0)
7373
fastimage (2.4.0)
74-
fastlane (2.227.0)
74+
fastlane (2.227.1)
7575
CFPropertyList (>= 2.3, < 4.0.0)
7676
addressable (>= 2.8, < 3.0.0)
7777
artifactory (~> 3.0)
@@ -111,7 +111,7 @@ GEM
111111
tty-spinner (>= 0.8.0, < 1.0.0)
112112
word_wrap (~> 1.0.0)
113113
xcodeproj (>= 1.13.0, < 2.0.0)
114-
xcpretty (~> 0.4.0)
114+
xcpretty (~> 0.4.1)
115115
xcpretty-travis-formatter (>= 0.0.3, < 2.0.0)
116116
fastlane-sirp (1.0.0)
117117
sysrandom (~> 1.0)
@@ -231,4 +231,4 @@ DEPENDENCIES
231231
screengrab
232232

233233
BUNDLED WITH
234-
2.6.7
234+
2.6.8

app/lib/board/cell.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import 'package:setonix_api/setonix_api.dart';
2424

2525
class GameCell extends PositionComponent
2626
with
27-
HasGameRef<BoardGame>,
27+
HasGameReference<BoardGame>,
2828
HoverCallbacks,
2929
TapCallbacks,
3030
DragCallbacks,

app/lib/board/grid.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import 'package:setonix/bloc/settings.dart';
55
import 'package:setonix/board/cell.dart';
66

77
class BoardGrid extends PositionComponent
8-
with HasGameRef, FlameBlocListenable<SettingsCubit, SetonixSettings> {
8+
with HasGameReference, FlameBlocListenable<SettingsCubit, SetonixSettings> {
99
final Vector2 cellSize;
1010
static const _padding = 3.0;
1111
Rect? _lastViewport;

app/lib/board/hand/item.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ const priorityNormal = 0;
9191

9292
abstract class HandItem<T> extends PositionComponent
9393
with
94-
HasGameRef<BoardGame>,
94+
HasGameReference<BoardGame>,
9595
CollisionCallbacks,
9696
HandItemDropZone,
9797
DragCallbacks,

app/lib/board/hand/view.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class GameHand extends CustomPainterComponent
4848
ScrollCallbacks,
4949
CollisionCallbacks,
5050
HandItemDropZone,
51-
HasGameRef<BoardGame> {
51+
HasGameReference<BoardGame> {
5252
double _currentScroll = 0;
5353

5454
/// Should hand be redrawn

app/lib/helpers/scroll.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class _ScrollViewport extends PositionComponent {
2929
}
3030

3131
class ScrollViewComponent extends PositionComponent
32-
with ScrollCallbacks, HasGameRef<BoardGame> {
32+
with ScrollCallbacks, HasGameReference<BoardGame> {
3333
final Axis direction;
3434
final double spacing;
3535
final _ScrollViewport _view = _ScrollViewport();

app/pubspec.lock

+37-37
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: dc27559385e905ad30838356c5f5d574014ba39872d732111cd07ac0beff4c57
8+
sha256: e55636ed79578b9abca5fecf9437947798f5ef7456308b5cb85720b793eac92f
99
url: "https://pub.dev"
1010
source: hosted
11-
version: "80.0.0"
11+
version: "82.0.0"
1212
analyzer:
1313
dependency: transitive
1414
description:
1515
name: analyzer
16-
sha256: "192d1c5b944e7e53b24b5586db760db934b177d4147c42fbca8c8c5f1eb8d11e"
16+
sha256: f4c21c94eb4623b183c1014a470196b3910701bea9b926e6c91270d756e6fc60
1717
url: "https://pub.dev"
1818
source: hosted
19-
version: "7.3.0"
19+
version: "7.4.1"
2020
ansicolor:
2121
dependency: transitive
2222
description:
@@ -29,10 +29,10 @@ packages:
2929
dependency: "direct main"
3030
description:
3131
name: archive
32-
sha256: "7dcbd0f87fe5f61cb28da39a1a8b70dbc106e2fe0516f7836eb7bb2948481a12"
32+
sha256: a7f37ff061d7abc2fcf213554b9dcaca713c5853afa5c065c44888bc9ccaf813
3333
url: "https://pub.dev"
3434
source: hosted
35-
version: "4.0.5"
35+
version: "4.0.6"
3636
args:
3737
dependency: transitive
3838
description:
@@ -334,10 +334,10 @@ packages:
334334
dependency: transitive
335335
description:
336336
name: file_selector_android
337-
sha256: f3a3d48a36d1640b4dca22a086f26b426c246925a80eddc2953120775fbcf86a
337+
sha256: "6bba3d590ee9462758879741abc132a19133600dd31832f55627442f1ebd7b54"
338338
url: "https://pub.dev"
339339
source: hosted
340-
version: "0.5.1+13"
340+
version: "0.5.1+14"
341341
file_selector_ios:
342342
dependency: transitive
343343
description:
@@ -398,26 +398,26 @@ packages:
398398
dependency: "direct main"
399399
description:
400400
name: flame
401-
sha256: "7a39044eeea6906d8acc5d8292941fa081a4f2a37fd76dc5a2dbee8a29e28256"
401+
sha256: "0335f60d3fe81f1332c0ed424e8ac126dce3e94e56ceb105b734365f0d102b2a"
402402
url: "https://pub.dev"
403403
source: hosted
404-
version: "1.27.0"
404+
version: "1.28.0"
405405
flame_bloc:
406406
dependency: "direct main"
407407
description:
408408
name: flame_bloc
409-
sha256: "12b327eab22b2c3cfacc78bf8d13cd4a303499af9ae739bdc56ee7ad5eac30c0"
409+
sha256: d238d64bd9776d52e29ca9be26ed1b6d8c043da32958e0dc74729c2bb8815afd
410410
url: "https://pub.dev"
411411
source: hosted
412-
version: "1.12.10"
412+
version: "1.12.11"
413413
flame_tiled:
414414
dependency: "direct main"
415415
description:
416416
name: flame_tiled
417-
sha256: "1ae160955220a7f0d61964a8952ea32a525750e110615512562f4c1de8265a37"
417+
sha256: cc00796d32741a238f09d6d9cfbf985ff4bcfd11318b35086d7a36081ebe70eb
418418
url: "https://pub.dev"
419419
source: hosted
420-
version: "3.0.0"
420+
version: "3.0.1"
421421
flex_color_scheme:
422422
dependency: "direct main"
423423
description:
@@ -541,10 +541,10 @@ packages:
541541
dependency: "direct main"
542542
description:
543543
name: flutter_svg
544-
sha256: c200fd79c918a40c5cd50ea0877fa13f81bdaf6f0a5d3dbcc2a13e3285d6aa1b
544+
sha256: d44bf546b13025ec7353091516f6881f1d4c633993cb109c3916c3a0159dadf1
545545
url: "https://pub.dev"
546546
source: hosted
547-
version: "2.0.17"
547+
version: "2.1.0"
548548
flutter_test:
549549
dependency: "direct dev"
550550
description: flutter
@@ -580,10 +580,10 @@ packages:
580580
dependency: "direct main"
581581
description:
582582
name: go_router
583-
sha256: f02fd7d2a4dc512fec615529824fdd217fecb3a3d3de68360293a551f21634b3
583+
sha256: "4cdfcc6a178632d1dbb7a728f8e84a1466211354704b9cdc03eee661d3277732"
584584
url: "https://pub.dev"
585585
source: hosted
586-
version: "14.8.1"
586+
version: "15.0.0"
587587
graphs:
588588
dependency: transitive
589589
description:
@@ -841,10 +841,10 @@ packages:
841841
dependency: transitive
842842
description:
843843
name: ordered_set
844-
sha256: fc861bb51fc863cd3e0718e21768af9586e0d5022b91a0fd4437636456cdb7d0
844+
sha256: dc68b8f1abc7115b81cf890bf7d2ece4ed1d95e0f3e486ab4b64ab3d16d2ea42
845845
url: "https://pub.dev"
846846
source: hosted
847-
version: "6.1.1"
847+
version: "7.0.0"
848848
package_config:
849849
dependency: transitive
850850
description:
@@ -897,10 +897,10 @@ packages:
897897
dependency: transitive
898898
description:
899899
name: path_provider_android
900-
sha256: "0ca7359dad67fd7063cb2892ab0c0737b2daafd807cf1acecd62374c8fae6c12"
900+
sha256: d0d310befe2c8ab9e7f393288ccbb11b60c019c6b5afc21973eeee4dda2b35e9
901901
url: "https://pub.dev"
902902
source: hosted
903-
version: "2.2.16"
903+
version: "2.2.17"
904904
path_provider_foundation:
905905
dependency: transitive
906906
description:
@@ -977,10 +977,10 @@ packages:
977977
dependency: transitive
978978
description:
979979
name: posix
980-
sha256: a0117dc2167805aa9125b82eee515cc891819bac2f538c83646d355b16f58b9a
980+
sha256: f0d7856b6ca1887cfa6d1d394056a296ae33489db914e365e2044fdada449e62
981981
url: "https://pub.dev"
982982
source: hosted
983-
version: "6.0.1"
983+
version: "6.0.2"
984984
process:
985985
dependency: transitive
986986
description:
@@ -1073,10 +1073,10 @@ packages:
10731073
dependency: transitive
10741074
description:
10751075
name: sembast
1076-
sha256: "06b0274ca48ea92aedeab62303fc9ade3272684c842e9447be3e9b040f935559"
1076+
sha256: d3f0d0ba501a5f1fd7d6c8532ee01385977c8a069c334635dae390d059ae3d6d
10771077
url: "https://pub.dev"
10781078
source: hosted
1079-
version: "3.8.4+1"
1079+
version: "3.8.5"
10801080
setonix_api:
10811081
dependency: "direct main"
10821082
description:
@@ -1119,10 +1119,10 @@ packages:
11191119
dependency: transitive
11201120
description:
11211121
name: shared_preferences_android
1122-
sha256: "3ec7210872c4ba945e3244982918e502fa2bfb5230dff6832459ca0e1879b7ad"
1122+
sha256: "20cbd561f743a342c76c151d6ddb93a9ce6005751e7aa458baad3858bfbfb6ac"
11231123
url: "https://pub.dev"
11241124
source: hosted
1125-
version: "2.4.8"
1125+
version: "2.4.10"
11261126
shared_preferences_foundation:
11271127
dependency: transitive
11281128
description:
@@ -1244,8 +1244,8 @@ packages:
12441244
dependency: "direct main"
12451245
description:
12461246
path: api
1247-
ref: ea0a20e7c7f93e102b7db63e4093f0847a84634c
1248-
resolved-ref: ea0a20e7c7f93e102b7db63e4093f0847a84634c
1247+
ref: "6af5c4ce6b3a422d06bef5a55b3f0e4caa322869"
1248+
resolved-ref: "6af5c4ce6b3a422d06bef5a55b3f0e4caa322869"
12491249
url: "https://github.com/LinwoodDev/Swamp.git"
12501250
source: git
12511251
version: "1.0.0"
@@ -1325,10 +1325,10 @@ packages:
13251325
dependency: transitive
13261326
description:
13271327
name: url_launcher_android
1328-
sha256: "1d0eae19bd7606ef60fe69ef3b312a437a16549476c42321d5dc1506c9ca3bf4"
1328+
sha256: "8582d7f6fe14d2652b4c45c9b6c14c0b678c2af2d083a11b604caeba51930d79"
13291329
url: "https://pub.dev"
13301330
source: hosted
1331-
version: "6.3.15"
1331+
version: "6.3.16"
13321332
url_launcher_ios:
13331333
dependency: transitive
13341334
description:
@@ -1445,18 +1445,18 @@ packages:
14451445
dependency: transitive
14461446
description:
14471447
name: web_socket
1448-
sha256: "3c12d96c0c9a4eec095246debcea7b86c0324f22df69893d538fcc6f1b8cce83"
1448+
sha256: bfe6f435f6ec49cb6c01da1e275ae4228719e59a6b067048c51e72d9d63bcc4b
14491449
url: "https://pub.dev"
14501450
source: hosted
1451-
version: "0.1.6"
1451+
version: "1.0.0"
14521452
web_socket_channel:
14531453
dependency: "direct main"
14541454
description:
14551455
name: web_socket_channel
1456-
sha256: "0b8e2457400d8a859b7b2030786835a28a8e80836ef64402abef392ff4f1d0e5"
1456+
sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8
14571457
url: "https://pub.dev"
14581458
source: hosted
1459-
version: "3.0.2"
1459+
version: "3.0.3"
14601460
webdriver:
14611461
dependency: transitive
14621462
description:
@@ -1515,4 +1515,4 @@ packages:
15151515
version: "3.1.3"
15161516
sdks:
15171517
dart: ">=3.7.0 <4.0.0"
1518-
flutter: ">=3.29.2"
1518+
flutter: ">=3.29.3"

0 commit comments

Comments
 (0)