1. 12 May, 2021 1 commit
  2. 09 Apr, 2021 1 commit
  3. 06 Apr, 2021 1 commit
  4. 05 Apr, 2021 1 commit
  5. 24 Mar, 2021 1 commit
  6. 05 Mar, 2021 1 commit
  7. 02 Mar, 2021 1 commit
  8. 19 Feb, 2021 1 commit
  9. 17 Feb, 2021 1 commit
  10. 12 Feb, 2021 1 commit
  11. 11 Feb, 2021 1 commit
  12. 08 Feb, 2021 1 commit
  13. 05 Feb, 2021 1 commit
  14. 04 Feb, 2021 1 commit
    • Jonah Williams's avatar
      [flutter_tools] move process manager into tool (#75350) · 8b6baae4
      Jonah Williams authored
      Our current top crasher is an unclear error when ProcessManager fails to resolve an executable path. To fix this, we'd like to being adjusting the process resolution logic and adding more instrumentation to track failures. In order to begin the process, the ProcessManager has been folded back into the flutter tool
      8b6baae4
  15. 27 Jan, 2021 2 commits
  16. 20 Jan, 2021 1 commit
  17. 14 Jan, 2021 1 commit
  18. 04 Dec, 2020 1 commit
  19. 01 Dec, 2020 1 commit
  20. 11 Nov, 2020 1 commit
  21. 06 Nov, 2020 1 commit
  22. 05 Nov, 2020 1 commit
  23. 27 Oct, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] document flutter root initialization (#67884) · 9e5e763e
      Jonah Williams authored
      Moves the flutter root initialization to a static method on the cache. This is a small step towards making this functionality non-static and instead injected like normal members - however, completely removing all of the static-ness at once was too large of a change.
      
      Instead document and add unit tests and change existing code as little as possible.
      
      #47161
      9e5e763e
  24. 23 Oct, 2020 1 commit
    • 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
  25. 14 Oct, 2020 1 commit
  26. 13 Oct, 2020 2 commits
    • Jonah Williams's avatar
      [flutter_tools] do not measure progress timeout (#67959) · 9e70180f
      Jonah Williams authored
      Remove "This is taking a long time" progress timeout and TimeoutConfiguration.
      9e70180f
    • Jonah Williams's avatar
      [flutter_tools] verify checksum of downloaded artifacts (#67839) · ac751cc5
      Jonah Williams authored
      All of the network requests from google cloud storage include an x-goog-hash header which contains an MD5 checksum. If present, use to validate that the downloaded binary is valid. This will rule out corrupt files as the cause of getting started crashers in the flutter_tool.
      
      #38980
      
      This does not fully resolve the above issue, because while we can check if the checksum matches what was expected from cloud storage, this A) may not necessarily be present and B) may not match up to what should be uploaded as part of the engine build process.
      
      But when life gives you lemons you hash those lemons using an outdated hashing algorithm.
      ac751cc5
  27. 12 Oct, 2020 1 commit
  28. 07 Oct, 2020 2 commits
  29. 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
  30. 05 Oct, 2020 1 commit
  31. 30 Sep, 2020 1 commit
  32. 24 Sep, 2020 1 commit
  33. 23 Sep, 2020 1 commit
  34. 17 Sep, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] use flutter tool handler for dwds resources and precache tool... · 3e838da9
      Jonah Williams authored
      [flutter_tools] use flutter tool handler for dwds resources and precache tool pub dependencies (#65814)
      
      If the tool is downloaded from a precompiled snapshot, or if the backing source files in the pub cache are deleted, the dwds debugging functionality will break as the client.js file cannot be located. Instead use the PackageConfig to verify that package location, downloading if it is missing.
      
      Override the dwds middleware to avoid Isolate.resolvePackageUri
      
      Fixes #53644
      Fixes #65475
      3e838da9
  35. 16 Sep, 2020 1 commit
  36. 15 Sep, 2020 2 commits