File tree Expand file tree Collapse file tree 4 files changed +12
-2
lines changed
Expand file tree Collapse file tree 4 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 8.0.11
2+ - Added ` DashEvent.ideEvent ` to track IDE reported events.
3+
14## 8.0.10
25- Added ` Event.flutterWasmDryRunPackage ` to track dart2wasm dry run metrics from Flutter
36 including public package information.
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ const int kMaxLogFileSize = 25 * (1 << 20);
8787const String kLogFileName = 'dart-flutter-telemetry.log' ;
8888
8989/// The current version of the package, should be in line with pubspec version.
90- const String kPackageVersion = '8.0.10 ' ;
90+ const String kPackageVersion = '8.0.11 ' ;
9191
9292/// The minimum length for a session.
9393const int kSessionDurationMinutes = 30 ;
Original file line number Diff line number Diff line change @@ -131,6 +131,13 @@ enum DashEvent {
131131 toolOwner: DashTool .flutterTool,
132132 ),
133133
134+ // Events for IDEs (intellij and vscode)
135+
136+ ideEvent (
137+ label: 'ide_event' ,
138+ description: 'Information for various IDE events' ,
139+ ),
140+
134141 // Events for language_server below
135142
136143 analysisStatistics (
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ description: >-
55# LINT.IfChange
66# When updating this, keep the version consistent with the changelog and the
77# value in lib/src/constants.dart.
8- version : 8.0.10
8+ version : 8.0.11
99# LINT.ThenChange(lib/src/constants.dart)
1010repository : https://github.com/dart-lang/tools/tree/main/pkgs/unified_analytics
1111issue_tracker : https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aunified_analytics
You can’t perform that action at this time.
0 commit comments