Skip to content

Commit 645fcad

Browse files
Prep devtools for next release (#9821)
1 parent 23a1bf0 commit 645fcad

4 files changed

Lines changed: 13 additions & 22 deletions

File tree

packages/devtools_app/lib/devtools.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
/// Note: a regexp in the `dt update-version' command logic matches the constant
1111
/// declaration `const version =`. If you change the declaration you must also
1212
/// modify the regex in the `dt update-version' command logic.
13-
const version = '2.58.0';
13+
const version = '2.59.0-dev.0';

packages/devtools_app/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publish_to: none
77

88
# Note: this version should only be updated by running the 'dt update-version'
99
# command that updates the version here and in 'devtools.dart'.
10-
version: 2.58.0
10+
version: 2.59.0-dev.0
1111

1212
repository: https://github.com/flutter/devtools/tree/master/packages/devtools_app
1313

packages/devtools_app/release_notes/NEXT_RELEASE_NOTES.md

Lines changed: 9 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ found in the LICENSE file or at https://developers.google.com/open-source/licens
66
This is a draft for future release notes that are going to land on
77
[the Flutter website](https://docs.flutter.dev/tools/devtools/release-notes).
88

9-
# DevTools 2.58.0 release notes
9+
# DevTools 2.59.0 release notes
1010

11-
The 2.58.0 release of the Dart and Flutter DevTools
11+
The 2.59.0 release of the Dart and Flutter DevTools
1212
includes the following changes among other general improvements.
1313
To learn more about DevTools, check out the
1414
[DevTools overview](/tools/devtools).
@@ -19,16 +19,11 @@ TODO: Remove this section if there are not any updates.
1919

2020
## Inspector updates
2121

22-
- Deleted the option to use the legacy inspector.
23-
[#9782](https://github.com/flutter/devtools/pull/9782)
24-
- Fixed an issue where navigating the Inspector widget tree with the keyboard arrow keys did not update the selected widget in the connected Flutter app. [#9810](https://github.com/flutter/devtools/pull/9810)
25-
- Fixed an issue where clicking a widget row after collapsing a subtree with the left arrow key unexpectedly re-expanded the subtree. [#9810](https://github.com/flutter/devtools/pull/9810)
26-
- Fixed an issue where collapsing the Inspector widget tree to a single row with the left arrow key caused a loading spinner to appear instead of showing the root node. [#9810](https://github.com/flutter/devtools/pull/9810)
22+
TODO: Remove this section if there are not any updates.
2723

2824
## Performance updates
2925

30-
- Fixed an issue where 'More Debug Options' showed options as unselected in
31-
profile mode even when selected. [#9813](https://github.com/flutter/devtools/issues/9813)
26+
TODO: Remove this section if there are not any updates.
3227

3328
## CPU profiler updates
3429

@@ -40,29 +35,23 @@ TODO: Remove this section if there are not any updates.
4035

4136
## Debugger updates
4237

43-
- Fixed an issue where long string values in the console/variables view would overflow and overlap with other elements. [#7112](https://github.com/flutter/devtools/issues/7112)
38+
TODO: Remove this section if there are not any updates.
4439

4540
## Network profiler updates
4641

47-
- Added response size column to the Network tab and displayed response size in the request inspector overview.
48-
[#9744](https://github.com/flutter/devtools/pull/9744)
49-
50-
- Improved HTTP request status classification in the Network tab to better distinguish cancelled, completed, and in-flight requests (for example, avoiding some cases where cancelled requests appeared as pending). [#9683](https://github.com/flutter/devtools/pull/9683)
42+
TODO: Remove this section if there are not any updates.
5143

52-
- Added a filter setting to hide HTTP-profiler socket data.
53-
[#9698](https://github.com/flutter/devtools/pull/9698)
54-
5544
## Logging updates
5645

57-
- Fixed an issue where log messages containing newline characters were incorrectly split into multiple separate entries in the Logging screen. [#9757](https://github.com/flutter/devtools/pull/9757)
46+
TODO: Remove this section if there are not any updates.
5847

5948
## App size tool updates
6049

6150
TODO: Remove this section if there are not any updates.
6251

6352
## Deep links tool updates
6453

65-
- Pluralized "domain" and "path" in the validation summary notification titles when multiple errors are present. [#9790](https://github.com/flutter/devtools/pull/9790)
54+
TODO: Remove this section if there are not any updates.
6655

6756
## VS Code sidebar updates
6857

@@ -79,4 +68,4 @@ TODO: Remove this section if there are not any updates.
7968
## Full commit history
8069

8170
To find a complete list of changes in this release, check out the
82-
[DevTools git log](https://github.com/flutter/devtools/tree/v2.58.0).
71+
[DevTools git log](https://github.com/flutter/devtools/tree/v2.59.0).

tool/lib/commands/release_notes_helper.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ class ReleaseNotesCommand extends Command {
9191
final websiteReleaseNotesDir = Directory(
9292
p.join(
9393
websiteRepoPath,
94+
'sites',
95+
'docs',
9496
'src',
9597
'content',
9698
'tools',

0 commit comments

Comments
 (0)