Skip to content

Commit 2deb371

Browse files
committed
Bump dependencies
1 parent 75e6671 commit 2deb371

File tree

9 files changed

+110
-74
lines changed

9 files changed

+110
-74
lines changed

.vscode/launch.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,8 @@
1515
"type": "dart",
1616
"flutterMode": "profile"
1717
}
18-
]
18+
],
19+
"dart.flutterSdkPath": "/home/ashutosh/Projects/flutter3/bin/flutter",
20+
"dart.sdkPath": "/home/ashutosh/Projects/flutter3/bin/dart",
21+
1922
}

analysis_options.yaml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# This file configures the analyzer, which statically analyzes Dart code to
2+
# check for errors, warnings, and lints.
3+
#
4+
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
5+
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
6+
# invoked from the command line by running `flutter analyze`.
7+
8+
# The following line activates a set of recommended lints for Flutter apps,
9+
# packages, and plugins designed to encourage good coding practices.
10+
include: package:flutter_lints/flutter.yaml
11+
12+
linter:
13+
# The lint rules applied to this project can be customized in the
14+
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
15+
# included above or to enable additional rules. A list of all available lints
16+
# and their documentation is published at
17+
# https://dart-lang.github.io/linter/lints/index.html.
18+
#
19+
# Instead of disabling a lint rule for the entire project in the
20+
# section below, it can also be suppressed for a single line of code
21+
# or a specific dart file by using the `// ignore: name_of_lint` and
22+
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
23+
# producing the lint.
24+
rules:
25+
# avoid_print: false # Uncomment to disable the `avoid_print` rule
26+
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
27+
28+
# Additional information about this file can be found at
29+
# https://dart.dev/guides/language/analysis-options

lib/components/analytics.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ enum LogType {
1111
}
1212

1313
class PortfolioAnalytics {
14-
static late FirebaseAnalytics _analytics = FirebaseAnalytics();
14+
static late FirebaseAnalytics _analytics = FirebaseAnalytics.instance;
1515

1616
static Future<void> log(LogType logType, {String? property}) async {
1717
await _analytics.logEvent(

linux/flutter/generated_plugins.cmake

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ list(APPEND FLUTTER_PLUGIN_LIST
66
url_launcher_linux
77
)
88

9+
list(APPEND FLUTTER_FFI_PLUGIN_LIST
10+
)
11+
912
set(PLUGIN_BUNDLED_LIBRARIES)
1013

1114
foreach(plugin ${FLUTTER_PLUGIN_LIST})
@@ -14,3 +17,8 @@ foreach(plugin ${FLUTTER_PLUGIN_LIST})
1417
list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
1518
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
1619
endforeach(plugin)
20+
21+
foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
22+
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin})
23+
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
24+
endforeach(ffi_plugin)

macos/Flutter/GeneratedPluginRegistrant.swift

+2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@
55
import FlutterMacOS
66
import Foundation
77

8+
import firebase_analytics
89
import firebase_core
910
import url_launcher_macos
1011

1112
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
13+
FLTFirebaseAnalyticsPlugin.register(with: registry.registrar(forPlugin: "FLTFirebaseAnalyticsPlugin"))
1214
FLTFirebaseCorePlugin.register(with: registry.registrar(forPlugin: "FLTFirebaseCorePlugin"))
1315
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
1416
}

pubspec.lock

+50-64
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages:
77
name: async
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "2.8.1"
10+
version: "2.8.2"
1111
boolean_selector:
1212
dependency: transitive
1313
description:
@@ -21,7 +21,7 @@ packages:
2121
name: characters
2222
url: "https://pub.dartlang.org"
2323
source: hosted
24-
version: "1.1.0"
24+
version: "1.2.0"
2525
charcode:
2626
dependency: transitive
2727
description:
@@ -42,70 +42,63 @@ packages:
4242
name: collection
4343
url: "https://pub.dartlang.org"
4444
source: hosted
45-
version: "1.15.0"
45+
version: "1.16.0"
4646
cupertino_icons:
4747
dependency: "direct main"
4848
description:
4949
name: cupertino_icons
5050
url: "https://pub.dartlang.org"
5151
source: hosted
52-
version: "1.0.3"
52+
version: "1.0.5"
5353
fake_async:
5454
dependency: transitive
5555
description:
5656
name: fake_async
5757
url: "https://pub.dartlang.org"
5858
source: hosted
59-
version: "1.2.0"
60-
firebase:
61-
dependency: transitive
62-
description:
63-
name: firebase
64-
url: "https://pub.dartlang.org"
65-
source: hosted
66-
version: "9.0.1"
59+
version: "1.3.0"
6760
firebase_analytics:
6861
dependency: "direct main"
6962
description:
7063
name: firebase_analytics
7164
url: "https://pub.dartlang.org"
7265
source: hosted
73-
version: "8.3.2"
66+
version: "9.1.9"
7467
firebase_analytics_platform_interface:
7568
dependency: transitive
7669
description:
7770
name: firebase_analytics_platform_interface
7871
url: "https://pub.dartlang.org"
7972
source: hosted
80-
version: "2.0.1"
73+
version: "3.1.7"
8174
firebase_analytics_web:
8275
dependency: transitive
8376
description:
8477
name: firebase_analytics_web
8578
url: "https://pub.dartlang.org"
8679
source: hosted
87-
version: "0.3.0+1"
80+
version: "0.4.0+14"
8881
firebase_core:
8982
dependency: "direct main"
9083
description:
9184
name: firebase_core
9285
url: "https://pub.dartlang.org"
9386
source: hosted
94-
version: "1.6.0"
87+
version: "1.17.1"
9588
firebase_core_platform_interface:
9689
dependency: transitive
9790
description:
9891
name: firebase_core_platform_interface
9992
url: "https://pub.dartlang.org"
10093
source: hosted
101-
version: "4.0.1"
94+
version: "4.4.0"
10295
firebase_core_web:
10396
dependency: transitive
10497
description:
10598
name: firebase_core_web
10699
url: "https://pub.dartlang.org"
107100
source: hosted
108-
version: "1.1.0"
101+
version: "1.6.4"
109102
flutter:
110103
dependency: "direct main"
111104
description: flutter
@@ -132,21 +125,7 @@ packages:
132125
name: font_awesome_flutter
133126
url: "https://pub.dartlang.org"
134127
source: hosted
135-
version: "9.1.0"
136-
http:
137-
dependency: transitive
138-
description:
139-
name: http
140-
url: "https://pub.dartlang.org"
141-
source: hosted
142-
version: "0.13.3"
143-
http_parser:
144-
dependency: transitive
145-
description:
146-
name: http_parser
147-
url: "https://pub.dartlang.org"
148-
source: hosted
149-
version: "4.0.0"
128+
version: "10.1.0"
150129
intl:
151130
dependency: "direct main"
152131
description:
@@ -160,14 +139,21 @@ packages:
160139
name: js
161140
url: "https://pub.dartlang.org"
162141
source: hosted
163-
version: "0.6.3"
142+
version: "0.6.4"
164143
matcher:
165144
dependency: transitive
166145
description:
167146
name: matcher
168147
url: "https://pub.dartlang.org"
169148
source: hosted
170-
version: "0.12.10"
149+
version: "0.12.11"
150+
material_color_utilities:
151+
dependency: transitive
152+
description:
153+
name: material_color_utilities
154+
url: "https://pub.dartlang.org"
155+
source: hosted
156+
version: "0.1.4"
171157
meta:
172158
dependency: transitive
173159
description:
@@ -181,28 +167,21 @@ packages:
181167
name: path
182168
url: "https://pub.dartlang.org"
183169
source: hosted
184-
version: "1.8.0"
185-
pedantic:
186-
dependency: transitive
187-
description:
188-
name: pedantic
189-
url: "https://pub.dartlang.org"
190-
source: hosted
191-
version: "1.11.1"
170+
version: "1.8.1"
192171
plugin_platform_interface:
193172
dependency: transitive
194173
description:
195174
name: plugin_platform_interface
196175
url: "https://pub.dartlang.org"
197176
source: hosted
198-
version: "2.0.1"
177+
version: "2.1.2"
199178
responsive_builder:
200179
dependency: "direct main"
201180
description:
202181
name: responsive_builder
203182
url: "https://pub.dartlang.org"
204183
source: hosted
205-
version: "0.4.1"
184+
version: "0.4.2"
206185
sky_engine:
207186
dependency: transitive
208187
description: flutter
@@ -214,7 +193,7 @@ packages:
214193
name: source_span
215194
url: "https://pub.dartlang.org"
216195
source: hosted
217-
version: "1.8.1"
196+
version: "1.8.2"
218197
stack_trace:
219198
dependency: transitive
220199
description:
@@ -228,7 +207,7 @@ packages:
228207
name: sticky_headers
229208
url: "https://pub.dartlang.org"
230209
source: hosted
231-
version: "0.2.0"
210+
version: "0.3.0+2"
232211
stream_channel:
233212
dependency: transitive
234213
description:
@@ -256,70 +235,77 @@ packages:
256235
name: test_api
257236
url: "https://pub.dartlang.org"
258237
source: hosted
259-
version: "0.4.2"
260-
typed_data:
238+
version: "0.4.9"
239+
url_launcher:
240+
dependency: "direct main"
241+
description:
242+
name: url_launcher
243+
url: "https://pub.dartlang.org"
244+
source: hosted
245+
version: "6.1.3"
246+
url_launcher_android:
261247
dependency: transitive
262248
description:
263-
name: typed_data
249+
name: url_launcher_android
264250
url: "https://pub.dartlang.org"
265251
source: hosted
266-
version: "1.3.0"
267-
url_launcher:
268-
dependency: "direct main"
252+
version: "6.0.17"
253+
url_launcher_ios:
254+
dependency: transitive
269255
description:
270-
name: url_launcher
256+
name: url_launcher_ios
271257
url: "https://pub.dartlang.org"
272258
source: hosted
273-
version: "6.0.9"
259+
version: "6.0.17"
274260
url_launcher_linux:
275261
dependency: transitive
276262
description:
277263
name: url_launcher_linux
278264
url: "https://pub.dartlang.org"
279265
source: hosted
280-
version: "2.0.1"
266+
version: "3.0.1"
281267
url_launcher_macos:
282268
dependency: transitive
283269
description:
284270
name: url_launcher_macos
285271
url: "https://pub.dartlang.org"
286272
source: hosted
287-
version: "2.0.1"
273+
version: "3.0.1"
288274
url_launcher_platform_interface:
289275
dependency: transitive
290276
description:
291277
name: url_launcher_platform_interface
292278
url: "https://pub.dartlang.org"
293279
source: hosted
294-
version: "2.0.4"
280+
version: "2.0.5"
295281
url_launcher_web:
296282
dependency: transitive
297283
description:
298284
name: url_launcher_web
299285
url: "https://pub.dartlang.org"
300286
source: hosted
301-
version: "2.0.4"
287+
version: "2.0.11"
302288
url_launcher_windows:
303289
dependency: transitive
304290
description:
305291
name: url_launcher_windows
306292
url: "https://pub.dartlang.org"
307293
source: hosted
308-
version: "2.0.2"
294+
version: "3.0.1"
309295
vector_math:
310296
dependency: transitive
311297
description:
312298
name: vector_math
313299
url: "https://pub.dartlang.org"
314300
source: hosted
315-
version: "2.1.0"
301+
version: "2.1.2"
316302
visibility_detector:
317303
dependency: "direct main"
318304
description:
319305
name: visibility_detector
320306
url: "https://pub.dartlang.org"
321307
source: hosted
322-
version: "0.2.0"
308+
version: "0.3.3"
323309
sdks:
324-
dart: ">=2.12.0 <3.0.0"
325-
flutter: ">=2.0.0"
310+
dart: ">=2.17.0 <3.0.0"
311+
flutter: ">=3.0.0"

0 commit comments

Comments
 (0)