- Updates minimum supported SDK version to Flutter 3.16/Dart 3.2.
- Moves flutter_test and test dependencies to dev_dependencies.
- Removes a few deprecated API usages.
- Updates to web code to package
web: ^0.5.0
. - Updates SDK version to Dart
^3.3.0
. Flutter^3.19.0
.
- Fixes new lint warnings.
- Adds
computeAverage
andcomputeDelta
methods to support analysis of benchmark results.
- Adds
parse
constructors for theBenchmarkResults
andBenchmarkScore
classes.
- Breaking change: replace the
useCanvasKit
parameter in theserveWebBenchmark
method with a new parametercompilationOptions
, which allows you to:- specify the web renderer to use for the benchmark app (html, canvaskit, or skwasm)
- specify whether to use WebAssembly to build the benchmark app
- Breaking change:
serveWebBenchmark
now usescanvaskit
instead ofhtml
as the default web renderer.
- Migrates benchmark recorder from
dart:html
topackage:web
to support WebAssembly.
- Ensure the benchmark client reloads with the proper
initialPage
. - Migrates benchmark recorder away from deprecated
js_util
APIs.
- Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
- Adds an optional parameter
initialPage
toserveWebBenchmark
.
- Adds an optional parameter
treeShakeIcons
toserveWebBenchmark
. - Adds a required and named parameter
treeShakeIcons
toBenchmarkServer
.
- Updates
package:process
version constraints.
- Adds pub topics to package metadata.
- Updates minimum supported SDK version to Flutter 3.7/Dart 2.19.
- Fixes unawaited_futures violations.
- Removes obsolete null checks on non-nullable values.
- Updates minimum supported SDK version to Flutter 3.3/Dart 2.18.
- Migrates from SingletonFlutterWindow to PlatformDispatcher API.
- Updates code to fix strict-cast violations.
- Fixes lint warnings.
- Migrates to null safety.
- BREAKING CHANGES:
- Required parameters are non-nullable.
- Updates text theme parameters to avoid deprecation issues.
- Updates BlinkTraceEvents to match with changes in Chromium v89+
- Update implementation of
_RecordingWidgetsBinding
to match the new Binding API
- Updated dependencies to allow broader versions for upstream packages.
- Updated dependencies to allow broader versions for upstream packages.
- Fixed benchmarks failing due to trace format change for begin frame.
- Improve console messages.
- Provide a benchmark server (host-side) and a benchmark client (browser-side).