Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for v2.5.0 release. #3235

Merged
merged 3 commits into from
Aug 3, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
23 changes: 23 additions & 0 deletions packages/devtools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
## 2.5.0
* Fix debug buttons layout overflow [#3224](https://github.com/flutter/devtools/pull/3224)
* Make return key submit connect form [#3228](https://github.com/flutter/devtools/pull/3228)
* Minor analysis updates to the repo [#3225](https://github.com/flutter/devtools/pull/3225)
* Always build devtools from a specified, specific sdk version [#3216](https://github.com/flutter/devtools/pull/3216)
* Refactor CpuProfileData in preparation for filtering support [#3220](https://github.com/flutter/devtools/pull/3220)
* Add focus node names to help debug focus node issues. [#3217](https://github.com/flutter/devtools/pull/3217)
* Process stats for widget rebuild events [#3219](https://github.com/flutter/devtools/pull/3219)
* Fix icon positions in the eval console [#3213](https://github.com/flutter/devtools/pull/3213)
* Polish to the live timeline [#3209](https://github.com/flutter/devtools/pull/3209)
* Rev. the dep on package:vm_service [#3211](https://github.com/flutter/devtools/pull/3211)
* Experimenting with building against a specific flutter sdk [#3197](https://github.com/flutter/devtools/pull/3197)
* Make Flutter Frame timeline live and migrate to the FrameTiming API [#3168](https://github.com/flutter/devtools/pull/3168)
* Add functionality to filter tree data [#3203](https://github.com/flutter/devtools/pull/3203)
* Implement redesign of debug toggle buttons [#3144](https://github.com/flutter/devtools/pull/3144) [#3167](https://github.com/flutter/devtools/pull/3167)
* Console land [#3138](https://github.com/flutter/devtools/pull/3138)
* Ssupport more uri params for specifying the service uri [#3161](https://github.com/flutter/devtools/pull/3161)
* Allow embedding unless specified [#3193](https://github.com/flutter/devtools/pull/3193)
* Eliminate spurious test output spam on missing taps. [#3192](https://github.com/flutter/devtools/pull/3192)
* Update release script. [#3188](https://github.com/flutter/devtools/pull/3188)
* Fix infinite loop when accessing rows with negative indexes. [#3187](https://github.com/flutter/devtools/pull/3187)
* Ignore use of a deprecated parmeter [#3185](https://github.com/flutter/devtools/pull/3185)

## 2.4.0
* Fix isEmbedded bug [#3177](https://github.com/flutter/devtools/pull/3177)
* Move performance tests out of package:devtools_testing [#3173](https://github.com/flutter/devtools/pull/3173)
Expand Down
6 changes: 3 additions & 3 deletions packages/devtools/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ description: A suite of web-based performance tooling for Dart and Flutter.
# package remaining purely as a container for the compiled copy of the devtools
# app. That ensures that version constraints for the devtools_app do not impact
# this package.
version: 2.4.0
version: 2.5.0

homepage: https://github.com/flutter/devtools

environment:
sdk: '>=2.3.0 <3.0.0'

dependencies:
devtools_server: 2.4.0
devtools_shared: 2.4.0
devtools_server: 2.5.0
devtools_shared: 2.5.0
http: ^0.13.0

dependency_overrides:
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools_app/lib/devtools.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
// that updates all versions for DevTools.
// Note: a regexp in tools/update_version.dart matches the following line so
// if you change it you must also modify tools/update_version.dart.
const String version = '2.4.0';
const String version = '2.5.0';
8 changes: 4 additions & 4 deletions packages/devtools_app/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Web-based performance tooling for Dart and Flutter.
# When publishing new versions of this package be sure to publish a new version
# of package:devtools as well. package:devtools contains a compiled snapshot of
# this package.
version: 2.4.0
version: 2.5.0

homepage: https://github.com/flutter/devtools

Expand All @@ -27,7 +27,7 @@ dependencies:
codicon: ^0.0.3
collection: ^1.15.0-nnbd
dds: ^2.0.1
devtools_shared: 2.4.0
devtools_shared: 2.5.0
file: ^6.0.0
file_selector: ^0.8.0
file_selector_linux: ^0.0.2
Expand Down Expand Up @@ -59,8 +59,8 @@ dependencies:

dev_dependencies:
build_runner: ^2.0.4
devtools: 2.4.0
devtools_testing: 2.4.0
devtools: 2.5.0
devtools_testing: 2.5.0
flutter_test:
sdk: flutter
mockito: ^5.0.9
Expand Down
4 changes: 2 additions & 2 deletions packages/devtools_server/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A server that supports Dart DevTools.

# Note: this version should only be updated by running tools/update_version.dart
# that updates all versions of packages from packages/devtools.
version: 2.4.0
version: 2.5.0

homepage: https://github.com/flutter/devtools

Expand All @@ -13,7 +13,7 @@ environment:
dependencies:
args: ^2.0.0
browser_launcher: ^1.0.0
devtools_shared: 2.4.0
devtools_shared: 2.5.0
intl: '>=0.16.1 <0.18.0'
path: ^1.8.0
sse: ^4.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools_shared/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Package of shared structures between devtools_app and devtools_serv

# Note: this version should only be updated by running tools/update_version.dart
# that updates all versions of packages from packages/devtools.
version: 2.4.0
version: 2.5.0

homepage: https://github.com/flutter/devtools

Expand Down
6 changes: 3 additions & 3 deletions packages/devtools_testing/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ name: devtools_testing
description: Package of shared testing code for Dart DevTools.
# Note: this version should only be updated by running tools/update_version.dart
# that updates all versions of packages from packages/devtools.
version: 2.4.0
version: 2.5.0

homepage: https://github.com/flutter/devtools

environment:
sdk: '>=2.3.0 <3.0.0'

dependencies:
devtools_app: 2.4.0
devtools_shared: 2.4.0
devtools_app: 2.5.0
devtools_shared: 2.5.0
flutter:
sdk: flutter
flutter_riverpod: ^0.14.0+3
Expand Down
2 changes: 1 addition & 1 deletion tool/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: devtools_repo
description: A repo management tool for DevTools.

environment:
sdk: '>=2.12.0 <3.0.0'
Copy link
Member

@kenzieschmoll kenzieschmoll Aug 2, 2021

Choose a reason for hiding this comment

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

is this change necessary? looks like this may be what is causing the bots to fail

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Certainly caused bots to not work. However, update_version.sh would not run without the sdk change e.g.


tool/update_version.dart:50:7: Error: Null safety features are disabled for this library.
Try removing the package language version or setting the language version to 2.12 or higher.
String? incrementVersion(String oldVersion) {

sdk: '>=2.14.0-368.0.dev <3.0.0'

dependencies:
args: ^2.0.0
Expand Down