1. 15 Jan, 2021 1 commit
  2. 06 Jan, 2021 1 commit
  3. 05 Jan, 2021 1 commit
  4. 04 Jan, 2021 1 commit
  5. 23 Dec, 2020 1 commit
  6. 17 Dec, 2020 1 commit
  7. 16 Dec, 2020 1 commit
  8. 15 Dec, 2020 1 commit
  9. 04 Dec, 2020 2 commits
  10. 03 Dec, 2020 2 commits
  11. 01 Dec, 2020 1 commit
  12. 23 Nov, 2020 1 commit
  13. 20 Nov, 2020 1 commit
  14. 17 Nov, 2020 1 commit
  15. 14 Nov, 2020 1 commit
  16. 13 Nov, 2020 1 commit
  17. 12 Nov, 2020 1 commit
  18. 11 Nov, 2020 1 commit
  19. 10 Nov, 2020 2 commits
  20. 07 Nov, 2020 1 commit
  21. 06 Nov, 2020 1 commit
  22. 05 Nov, 2020 2 commits
  23. 04 Nov, 2020 1 commit
  24. 26 Oct, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] reland: drive service (#68887) · 183fe75d
      Jonah Williams authored
      Overhaul of flutter drive in order to deliver a better experience, namely:
      
      * flutter run and flutter drive now share more flags, so code paths that were previously only testable on run are now testable on drive.
      * Removes web-initialize-platform as this is no longer used
      * flutter drive correctly sets up a logger that shows native exceptions, by connecting to the vm service.
      * VM service connection now provides access to memory info without launching devtools (only for debug/profile mode)
      
      Web changes
      
      * Passes on the one test in the repo, otherwise the webdriver code has been isolated as much as possible
      
      Additional NNBD related bug fixes:
      
      No longer passes --enable-experiment to the test script. (FYI @blasten ). earlier we might have assumed that the flutter gallery benchmarks would be migrated along side the app and flutter driver, but only the app under test needs to be migrated. The test scripts should never be run with the experiment.
      183fe75d
  25. 23 Oct, 2020 2 commits
    • Jonah Williams's avatar
      [flutter_tools] Reland: simplify pub cache logic (#67589) · cb67513f
      Jonah Williams authored
      There have been some more additional reports of a missing 'package:characters' import after upgrading flutter. This has me concerned that our pub caching logic is incorrect. Instead of the tool attempting to guess when pub should be run, always delegate to pub.
      
      Also takes an opportunity to fix the kernel snapshot depending on the .packages or package_config. Due to the generated: date field this causes extra rebuilds. Instead when pub get is run, write out an additional file with just the package contents and version.
      
      Fixes #66777
      Fixes #65723
      cb67513f
    • Jonah Williams's avatar
      Revert "[flutter_tools] refactor drive launch into separate service, split by... · 1edec6fc
      Jonah Williams authored
      Revert "[flutter_tools] refactor drive launch into separate service, split by mobile+desktop and web (#68451)" (#68845)
      
      This reverts commit 2e75f52a.
      1edec6fc
  26. 22 Oct, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] refactor drive launch into separate service, split by... · 2e75f52a
      Jonah Williams authored
      [flutter_tools] refactor drive launch into separate service, split by mobile+desktop and web (#68451)
      
      Overhaul of flutter drive in order to deliver a better experience, namely:
      
      flutter run and flutter drive now share more flags, so code paths that were previously only testable on run are now testable on drive.
      Removes web-initialize-platform as this is no longer used
      flutter drive correctly sets up a logger that shows native exceptions, by connecting to the vm service.
      VM service connection now provides access to memory info without launching devtools (only for debug/profile mode)
      Web changes
      
      Passes on the one test in the repo, otherwise the webdriver code has been isolated as much as possible
      
      Additional NNBD related bug fixes:
      
      No longer passes --enable-experiment to the test script. (FYI @blasten ). earlier we might have assumed that the flutter gallery benchmarks would be migrated along side the app and flutter driver, but only the app under test needs to be migrated. The test scripts should never be run with the experiment.
      2e75f52a
  27. 16 Oct, 2020 1 commit
  28. 14 Oct, 2020 2 commits
  29. 12 Oct, 2020 1 commit
  30. 09 Oct, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] hot reload/restart update for asset manager change (#66742) · 9a3a0dc1
      Jonah Williams authored
      Do not upload all assets on initial devFS sync. This should increase the reliability of the initial connection, even in the face of flaky devfs behavior, in addition to a moderate perf improvement.
      
      Updates fast-start to build assets as part of the initial bundle
      
      Requires flutter/engine#21436
      Requires flutter/engine#21586
      Requires flutter/engine#21611
      9a3a0dc1
  31. 07 Oct, 2020 1 commit
  32. 06 Oct, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] handle case where file is deleted by other program or running... · c8466d04
      Jonah Williams authored
      [flutter_tools] handle case where file is deleted by other program or running on read only volume (#66708)
      
      * [flutter_tools] handle case where file is deleted by other program
      
      * Add test cases
      
      * Update file_system.dart
      
      * Update file_system_test.dart
      
      * fix import
      
      * make a static on ErrorHandligFS
      
      * add support for no exit on failure
      
      * address comments
      
      * update doc comment to file or directory
      c8466d04
  33. 05 Oct, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] disable source maps by default for release builds, enable for... · aa90dbe7
      Jonah Williams authored
      [flutter_tools] disable source maps by default for release builds, enable for run and with command line arg (#67331)
      
      Disables source map production by default for build web. For web builds performed as a part of flutter run --release, enable the source maps, or allow force enabling with --source-maps command line flag.
      
      fixes #67328
      aa90dbe7
  34. 03 Oct, 2020 1 commit
    • Jonah Williams's avatar
      [null-safety] add integration tests for sound null safety modes, add support... · ddb01a0c
      Jonah Williams authored
      [null-safety] add integration tests for sound null safety modes, add support for sound null safety in dart2js (#67171)
      
      Add integration tests to verify that ddc and dart2js can be built and run in sound mode. Updates dart2js compilation to insert a language version comment into the generated entrypoint if necessary.
      
      dart-lang/sdk#42253
      ddb01a0c