Skip to content

Commit 4f78b09

Browse files
committed
chore: Upgrade dependencies
1 parent e2cbfda commit 4f78b09

File tree

3 files changed

+24
-17
lines changed

3 files changed

+24
-17
lines changed

common/pubspec.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ environment:
99

1010
dependency_overrides:
1111
web: ^0.5.1 # required because network info is using 0.3, but this package is only used by web which we dont build
12-
collection: 1.19.0 # Required because dio_smart_retry is in conflict with the flutter sdk otherwise
12+
intl: ^0.19.0 # Required because awesome notifcations is in conflict with form builder
1313

1414
dependencies:
1515
flutter:
@@ -39,9 +39,9 @@ dependencies:
3939
purchases_flutter: ^8.2.2
4040

4141
#notification
42-
awesome_notifications_core: ^0.10.0
43-
awesome_notifications: ^0.10.0
44-
awesome_notifications_fcm: ^0.10.0
42+
awesome_notifications_core: ^0.10.1
43+
awesome_notifications: ^0.10.1
44+
awesome_notifications_fcm: ^0.10.1
4545
live_activities: ^2.3.0
4646
# ref: main
4747
# ref: feature/multi-state-req
@@ -53,7 +53,7 @@ dependencies:
5353

5454
#architecture
5555
freezed_annotation: ^2.4.1
56-
flutter_hooks: ^0.20.1
56+
flutter_hooks: ^0.21.2
5757
hooks_riverpod: ^2.6.1
5858
riverpod_annotation: ^2.6.1
5959
json_annotation: ^4.8.1
@@ -83,15 +83,15 @@ dependencies:
8383
logger: ^1.4.0
8484
rxdart: ^0.28.0
8585
stringr: ^1.0.0
86-
collection: ^1.18.0
86+
collection: ^1.19.0
8787
uuid: ^4.3.3
8888
network_info_plus: ^6.1.1
8989
permission_handler: ^11.0.0
9090
url_launcher: ^6.3.1
9191
package_info_plus: ^8.1.1
9292
vector_math: ^2.1.4
9393
form_builder_validators: ^11.0.0
94-
keep_screen_on: ^3.0.0
94+
keep_screen_on: ^4.0.0
9595

9696
#crypto
9797
hashlib_codecs: ^2.2.0

lib/ui/components/bed_mesh/bed_mesh_plot.dart

+8-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ class BedMeshPlot extends StatelessWidget {
132132
}
133133

134134
class _ZScatterSpot extends ScatterSpot {
135-
_ZScatterSpot(super.x, super.y, this.z, {super.dotPainter, super.show});
135+
_ZScatterSpot(super.x, super.y, this.z,
136+
{super.renderPriority, super.dotPainter, super.show, super.xError, super.yError});
136137

137138
final double z;
138139

@@ -142,14 +143,20 @@ class _ZScatterSpot extends ScatterSpot {
142143
double? y,
143144
double? z,
144145
bool? show,
146+
int? renderPriority,
145147
FlDotPainter? dotPainter,
148+
FlErrorRange? xError,
149+
FlErrorRange? yError,
146150
}) {
147151
return _ZScatterSpot(
148152
x ?? this.x,
149153
y ?? this.y,
150154
z ?? this.z,
151155
show: show ?? this.show,
156+
renderPriority: renderPriority ?? this.renderPriority,
152157
dotPainter: dotPainter ?? this.dotPainter,
158+
xError: xError ?? this.xError,
159+
yError: yError ?? this.yError,
153160
);
154161
}
155162

pubspec.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ environment:
2424

2525
dependency_overrides:
2626
web: ^0.5.1 # required because network info is using 0.3, but this package is only used by web which we dont build
27-
collection: 1.19.0 # Required because dio_smart_retry is in conflict with the flutter sdk otherwise
2827
rxdart: ^0.28.0
28+
intl: ^0.19.0 # Required because awesome notifcations is in conflict with form builder
2929

3030
dependencies:
3131
flutter:
@@ -50,7 +50,7 @@ dependencies:
5050

5151
#architecture
5252
freezed_annotation: ^2.4.1
53-
flutter_hooks: ^0.20.1
53+
flutter_hooks: ^0.21.2
5454
hooks_riverpod: ^2.6.1
5555
riverpod_annotation: ^2.6.1
5656
json_annotation: ^4.7.0
@@ -67,7 +67,7 @@ dependencies:
6767
url_launcher: ^6.1.6
6868
logger: ^1.3.0
6969
permission_handler: ^11.0.0
70-
collection: ^1.18.0
70+
collection: ^1.19.0
7171
fftea: ^1.5.0
7272
# mic_stream: ^0.7.1+2
7373
flutter_audio_capture: ^1.1.8
@@ -90,9 +90,9 @@ dependencies:
9090
google_fonts: ^6.2.0 # 6.2.0 preventing the app from building
9191

9292
#notification
93-
awesome_notifications_core: ^0.10.0
94-
awesome_notifications: ^0.10.0
95-
awesome_notifications_fcm: ^0.10.0
93+
awesome_notifications_core: ^0.10.1
94+
awesome_notifications: ^0.10.1
95+
awesome_notifications_fcm: ^0.10.1
9696
live_activities: ^2.3.0
9797
# ref: feature/multi-state-req
9898

@@ -144,7 +144,7 @@ dependencies:
144144
flutter_speed_dial: ^7.0.0
145145
dots_indicator: 2.1.2
146146
webview_flutter: ^4.4.0
147-
fl_chart: ^0.69.0
147+
fl_chart: ^0.70.2
148148
syncfusion_flutter_charts: ^28.1.41
149149
code_text_field: ^1.0.2
150150
mobile_scanner: ^6.0.2
@@ -155,13 +155,13 @@ dependencies:
155155
# touchable: ^1.0.2
156156
flutter_markdown: ^0.7.3+1
157157
flutter_svg: ^2.0.5
158-
loader_overlay: ^4.0.0
158+
loader_overlay: ^5.0.0
159159
appinio_video_player:
160160
git:
161161
url: https://github.com/JahnChoi/appinio_flutter_packages
162162
path: packages/appinio_video_player
163163
ref: feature/switch-cached-video-player-dep
164-
file_picker: 8.1.4
164+
file_picker: 9.0.2
165165
geekyants_flutter_gauges: ^1.0.3
166166
pretty_qr_code: ^3.3.0
167167

0 commit comments

Comments
 (0)