Skip to content
Open
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
15 changes: 14 additions & 1 deletion packages/devtools_app_shared/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,22 @@ 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.4.1 (not released)
## 0.5.0
* **Breaking change:** remove `scaleByFontFactor`.
* **Breaking change:** remove `IdeTheme.fontSize` and `IdeTheme.fontSizeFactor`.
* **Breaking change:** replace `minScreenWidthForTextBeforeScaling` with `minScreenWidthForText`.
* **Breaking change:** replace `defaultIconSizeBeforeScaling` with `defaultIconSize`.
* **Breaking change:** replace `defaultActionsIconSizeBeforeScaling` with `actionsIconSize`.
* **Breaking change:** replace `unscaledLargeFontSize` with `largeFontSize`.
* **Breaking change:** replace `unscaledDefaultFontSize` with `defaultFontSize`.
* **Breaking change:** replace `unscaledSmallFontSize` with `smallFontSize`.
* Ignore expected exceptions from the `navigateToCode` extension method.
* Add `RpcErrorExtension` extension with an `isServiceDisposedError` getter.
* `FormattedJson` uses `SelectionArea` instead of `SelectableText` to make multiple lines selectable.
* Add `identifyChannel` helper to `FlutterVersion`.
* Add `webReload` to URL utilities.
* `DTDManager` attempts to reconnect to DTD automatically if the connection drops.
* Add `serviceRegistrationBroadcastStream` to `DTDManager`.

## 0.4.0
* Bump `dtd` dependency to `^4.0.0`.
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.4.1
version: 0.5.0
repository: https://github.com/flutter/devtools/tree/master/packages/devtools_app_shared

environment:
Expand Down
3 changes: 3 additions & 0 deletions packages/devtools_extensions/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.5.0
* Bump `devtools_app_shared` dependency to `0.5.0`.

## 0.4.0
* Bump `devtools_app_shared` dependency to `0.4.0`.
* Add `ShowBannerMessageExtensionEvent.dismissOnConnectionChanges` field. This
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 @@ -19,7 +19,7 @@ executables:
dependencies:
args: ^2.4.2
devtools_shared: ^12.0.0
devtools_app_shared: ^0.4.0
devtools_app_shared: ^0.5.0
flutter:
sdk: flutter
io: ^1.0.4
Expand Down
Loading