1. 05 Aug, 2022 1 commit
  2. 25 Jul, 2022 1 commit
  3. 07 Jul, 2022 1 commit
  4. 06 Jul, 2022 1 commit
  5. 17 Jun, 2022 1 commit
  6. 27 May, 2022 1 commit
  7. 26 May, 2022 1 commit
  8. 14 May, 2022 1 commit
    • Chris Bracken's avatar
      Roll dependendencies (#103771) · 27c6cdb4
      Chris Bracken authored
      Roll dependendencies
      
      This rolls depdendencies to latest using
      flutter update-packages --force-upgrade
      
      This change includes three code changes:
      
      * Removes charcode from the dependencies allowlist since it no longer
        appears in the transitive closure of dependencies of the flutter,
        flutter_test, flutter_driver, flutter_localizations, and
        integration_test packages.
      
      * Uses Resolver.create instead of the deprecated Resolver constructor.
        The default Resolver constructor has been deprecated in favour of the
        static Resolver.create() factory function, which unfortunately happens
        to be async. Propagated the async-ness up the chain.
        This change was partially reverted and the deprecation ignored in this
        patch until package:coverage can be rolled internally at Google.
      
      * Eliminates the use of the deprecated packagesPath parameter to
        HitMap.parseJson. This parameter was deprecated and replaced with
        packagePath in https://github.com/dart-lang/coverage/pull/370 which
        was part of the overall deprecation of the .packages file in Dart
        itself https://github.com/dart-lang/sdk/issues/48272. The overall goal
        being that end-user code shouldn't need to know about implementation
        details such as whether dependency information is stored in a
        .packages file or a package_info.json file, but rather use the
        package_config package to obtain the package metadata and perform
        other functions such as resolving its dependencies to filesystem
        paths. packagesPath was replaced by packagePath, which takes the path
        to the package directory itself. Internally, package:coverage then
        uses package_config to do the rest of the package/script URI
        resolution to filesystem paths.
        This change was partially reverted and the deprecation ignored in this
        patch until package:coverage can be rolled internally at Google.
      
      This is a pre-update prior to updating flutter_template_images in
      https://github.com/flutter/flutter/pull/103739
      
      Issue: https://github.com/flutter/flutter/issues/103371
      Issue: https://github.com/flutter/flutter/issues/103775
      Issue: https://github.com/flutter/flutter/issues/103830
      
      When re-applying the partially-reverted changes to code coverage,
      we'll need to patch host_entrypoint.dart internally to await the Future
      that we'll be returning rather than a non-async value.
      27c6cdb4
  9. 10 May, 2022 1 commit
  10. 08 Apr, 2022 1 commit
  11. 29 Mar, 2022 1 commit
  12. 25 Mar, 2022 1 commit
  13. 10 Mar, 2022 1 commit
  14. 07 Mar, 2022 1 commit
  15. 03 Feb, 2022 1 commit
  16. 02 Feb, 2022 1 commit
    • Pierre-Louis's avatar
      Update packages (#97592) · a22cf5d6
      Pierre-Louis authored
      * update packages
      
      * implement
      
      * remove trailing spaces
      
      * Revert "remove trailing spaces"
      
      This reverts commit d3bffbef57d142a4a5d98dea4c3e9b6db856c9bb.
      
      * Revert "implement"
      
      This reverts commit 6b6172a827c84985c5fe09e676096878fba43306.
      a22cf5d6
  17. 10 Jan, 2022 1 commit
  18. 14 Dec, 2021 1 commit
  19. 01 Dec, 2021 1 commit
  20. 24 Nov, 2021 1 commit
  21. 12 Nov, 2021 1 commit
  22. 05 Nov, 2021 1 commit
  23. 28 Sep, 2021 1 commit
    • Greg Spencer's avatar
      Add smoke tests for all the examples, fix 17 broken examples. (#89021) · ab2b0851
      Greg Spencer authored
      This adds a smoke test for every single API example. It also fixes 17 tests that had bugs in them, or were otherwise broken, and even fixes one actual bug in the framework, and one limitation in the framework.
      
      The bug in the framework is that NetworkImage's _loadAsync method had await response.drain<List<int>>();, but if the response is null, it will throw a cryptic exception saying that Null can't be assigned to List<int>. The fix was just to use await response.drain<void>(); instead.
      
      The limitation is that RelativePositionedTransition takes an Animation<Rect> rect parameter, and if you want to use a RectTween with it, the value emitted there is Rect?, and one of the examples was just casting from Animation<Rect> to Animation<Rect?>, which is invalid, so I modified RelativePositionedTransition to take a Rect? and just use Rect.zero if the rect is null.
      ab2b0851
  24. 16 Sep, 2021 1 commit
  25. 18 Aug, 2021 1 commit
  26. 16 Aug, 2021 1 commit
  27. 03 Aug, 2021 1 commit
  28. 14 Jul, 2021 1 commit
  29. 09 Jul, 2021 1 commit
  30. 15 Jun, 2021 1 commit
  31. 27 May, 2021 1 commit
  32. 13 May, 2021 1 commit
  33. 28 Apr, 2021 1 commit
  34. 31 Mar, 2021 1 commit
  35. 16 Feb, 2021 1 commit
  36. 04 Feb, 2021 1 commit
  37. 28 Jan, 2021 1 commit
  38. 16 Dec, 2020 1 commit
  39. 19 Nov, 2020 1 commit
  40. 09 Nov, 2020 1 commit
    • Yuqian Li's avatar
      Reland migration (#69996) · 8e7748e7
      Yuqian Li authored
      This reverts ae0a9cb5 and therefore relands #69629.
      
      Additionally, `flutter update-packages --force-upgrade` has been run to update `pubspec.yaml` to resolve the analyze test failures.
      8e7748e7