Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flutter-candidate.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7313c873463d2a20a7ec1047d7b8b9146dd2a39b
de872dd864518d436062354052ea8604c38e8c94
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this intentional? @elliette just submitted a PR this morning that updated this to the latest

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, this is intentional. 7313c873463d2a20a7ec1047d7b8b9146dd2a39b points to a change from two days ago that doesn't include the vm_service version bump.

Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,8 @@ class ProgramExplorerController extends DisposableController
ClassRef(:final location?) ||
FieldRef(:final location?) ||
FuncRef(:final location?) => location.script,
Code(:final function?) => function.location?.script,
Code(:final function?) when function is FuncRef =>
function.location?.script,
ScriptRef() => object,
_ => null,
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import 'package:vm_service/vm_service.dart';

import '../screens/vm_developer/vm_service_private_extensions.dart';
import '../shared/feature_flags.dart';
import '../shared/globals.dart';
import '../shared/primitives/utils.dart';
import 'json_to_service_cache.dart';

Expand Down Expand Up @@ -142,9 +143,7 @@ class VmServiceWrapper extends VmService {
// running with VM developer mode enabled. This data isn't accessible
// in non-VM developer mode, so not requesting the code profile will
// save on space and network usage.
// TODO(bkonyi): re-enable when package:vm_service 15.0.0 is rolled
// into Flutter. See https://github.com/flutter/devtools/issues/8567.
// '_code': preferences.vmDeveloperModeEnabled.value,
'_code': preferences.vmDeveloperModeEnabled.value,
},
).then((e) => e as CpuSamples);
}
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools_app/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dependencies:
stack_trace: ^1.12.0
string_scanner: ^1.1.0
unified_analytics: ^7.0.0
vm_service: '>=13.0.0 <16.0.0'
vm_service: '>=15.0.0 <16.0.0'
vm_service_protos: ^1.0.0
vm_snapshot_analysis: ^0.7.6
web: ^1.0.0
Expand Down
4 changes: 3 additions & 1 deletion packages/devtools_app_shared/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ Copyright 2025 The Flutter Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
-->
## 0.3.1
* Bump `vm_service` dependency to `>=13.0.0 <16.0.0`.

## 0.3.0
* Bump minimum Dart SDK version to `3.6.0`.
* Bump minimum Flutter SDK version to `3.27.1`.
Expand All @@ -11,7 +14,6 @@ found in the LICENSE file or at https://developers.google.com/open-source/licens
* Add `iconAsset` and `iconSize` fields to the `ButtonGroupItemData` class.
* Add `iconAsset` and `iconSize` fields to the `MaterialIconLabel` class.
* Add "Supported Flutter versions" policy to the README.
* Bump `vm_service` dependency to `>=13.0.0 <16.0.0`.

## 0.2.4
* Add `updateQueryParameter` utility method.
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools_app_shared/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
name: devtools_app_shared
description: Package of Dart & Flutter structures shared between devtools_app and devtools extensions.
version: 0.3.0
version: 0.3.1
repository: https://github.com/flutter/devtools/tree/master/packages/devtools_app_shared

environment:
Expand Down
4 changes: 3 additions & 1 deletion packages/devtools_extensions/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ Copyright 2025 The Flutter Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
-->
## 0.3.1
* Bump `vm_service` dependency to `>=13.0.0 <16.0.0`.

## 0.3.0
* Fix `build_and_copy` command by removing deprecated `--web-renderer` option.
* Bump minimum Dart SDK version to `3.6.0` and minimum Flutter SDK version
to `3.27.1`.
* Bump `devtools_app_shared` dependency to `0.3.0`.
* Bump `devtools_shared` dependency to `11.1.0`.
* Bump `vm_service` dependency to `>=13.0.0 <16.0.0`.
* Clarify VS Code configuration in `README.md`.
* Add "Supported Flutter versions" policy to the README.

Expand Down
2 changes: 1 addition & 1 deletion packages/devtools_extensions/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
name: devtools_extensions
description: A package for building and supporting extensions for Dart DevTools.
version: 0.3.0
version: 0.3.1

repository: https://github.com/flutter/devtools/tree/master/packages/devtools_extensions

Expand Down