diff --git a/CHANGELOG.md b/CHANGELOG.md index 1544980a56..ceed58e4a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,10 @@ INTERNAL NOTE ## Flutter 3.32 Changes +### [3.32.1](https://github.com/flutter/flutter/releases/tag/3.32.1) + +- [flutter/156793](https://github.com/flutter/flutter/issues/156793) - Fix flaky crash when targeting web applications via IDEs using the DAP. + ### [3.32.0](https://github.com/flutter/flutter/releases/tag/3.32.0) Initial stable release. diff --git a/packages/flutter_tools/pubspec.yaml b/packages/flutter_tools/pubspec.yaml index 090aa0e8ea..4e3488dad0 100644 --- a/packages/flutter_tools/pubspec.yaml +++ b/packages/flutter_tools/pubspec.yaml @@ -12,7 +12,7 @@ dependencies: # https://github.com/flutter/flutter/blob/main/docs/infra/Updating-dependencies-in-Flutter.md archive: 3.6.1 args: 2.7.0 - dds: 5.0.0 + dds: 5.0.2 dwds: 24.3.10 code_builder: 4.10.1 completion: 1.0.1 @@ -78,7 +78,7 @@ dependencies: csslib: 1.0.2 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade" dap: 1.4.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade" dds_service_extensions: 2.0.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade" - devtools_shared: 11.2.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade" + devtools_shared: 11.2.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade" dtd: 2.5.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade" extension_discovery: 2.1.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade" fixnum: 1.1.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade" @@ -122,4 +122,4 @@ dartdoc: # Exclude this package from the hosted API docs. nodoc: true -# PUBSPEC CHECKSUM: c093 +# PUBSPEC CHECKSUM: 7396 diff --git a/packages/flutter_tools/test/integration.shard/debug_adapter/flutter_adapter_test.dart b/packages/flutter_tools/test/integration.shard/debug_adapter/flutter_adapter_test.dart index c14ec35db8..c85946ee8d 100644 --- a/packages/flutter_tools/test/integration.shard/debug_adapter/flutter_adapter_test.dart +++ b/packages/flutter_tools/test/integration.shard/debug_adapter/flutter_adapter_test.dart @@ -272,16 +272,18 @@ The relevant error-causing widget was: ); }); - testWithoutContext('correctly outputs colored exceptions when supported', () async { - final BasicProjectThatThrows project = BasicProjectThatThrows(); - final String output = await getExceptionOutput(project, noDebug: false, ansiColors: true); + testWithoutContext( + 'correctly outputs colored exceptions when supported', + () async { + final BasicProjectThatThrows project = BasicProjectThatThrows(); + final String output = await getExceptionOutput(project, noDebug: false, ansiColors: true); - // Frames in the stack trace that are the users own code will be unformatted, but - // frames from the framework are faint (starting with `\x1B[2m`). + // Frames in the stack trace that are the users own code will be unformatted, but + // frames from the framework are faint (starting with `\x1B[2m`). - expect( - output, - contains(''' + expect( + output, + contains(''' ════════ Exception caught by widgets library ═══════════════════════════════════ The following _Exception was thrown building App(dirty): Exception: c @@ -298,8 +300,10 @@ When the exception was thrown, this was the stack: ^ source: package:flutter/src/widgets/framework.dart \x1B[2m#3 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:1:1)\x1B[0m ^ source: package:flutter/src/widgets/framework.dart'''), - ); - }); + ); + }, + skip: true, // DAP URI parsing bug, https://github.com/dart-lang/sdk/issues/60797 + ); testWithoutContext('correctly outputs exceptions in noDebug mode', () async { final BasicProjectThatThrows project = BasicProjectThatThrows();