1. 22 May, 2023 2 commits
  2. 20 May, 2023 1 commit
  3. 19 May, 2023 6 commits
  4. 17 May, 2023 2 commits
  5. 16 May, 2023 3 commits
  6. 15 May, 2023 3 commits
  7. 11 May, 2023 3 commits
  8. 10 May, 2023 1 commit
  9. 08 May, 2023 6 commits
    • Kevin Moore's avatar
      tool/web: tiniest tweak to wasm help content (#126284) · 8c5a1ea7
      Kevin Moore authored
      Missing "tick"
      Unverified
      8c5a1ea7
    • fzyzcjy's avatar
      Fix that `flutter test` does not understand `concurrency` (#125942) · 742a1b49
      fzyzcjy authored
      Close https://github.com/flutter/flutter/issues/125940
      
      I will add tests if this PR looks roughly OK :)
      
      The fix mainly mimics https://github.com/flutter/flutter/pull/115160 - just remove the default argument.
      
      p.s. I ran into this bug when wanting to set concurrency in my dart_test.yaml for one set of my tests which I need to be executed without parallalization.
      Unverified
      742a1b49
    • Loïc Sharma's avatar
      [Tool] Output help on 'flutter pub' (#126211) · 472a0ab3
      Loïc Sharma authored
      This change makes `flutter pub` show the help usage:
      
      ```
      PS > flutter pub
      Commands for managing Flutter packages.
      
      Global options:
      -h, --help                  Print this usage information.
      -v, --verbose               Noisy logging, including all shell commands executed.
                                  If used with "--help", shows hidden options. If used with "flutter
                                  doctor", shows additional diagnostic information. (Use "-vv" to force
                                  verbose logging in those cases.)
      -d, --device-id             Target device id or name (prefixes allowed).
          --version               Reports the version of this tool.
          --suppress-analytics    Suppress analytics reporting for the current CLI invocation.
          --disable-telemetry     Disable telemetry reporting when this command runs.
      
      Usage: flutter pub <subcommand> [arguments]
      -h, --help    Print this usage information.
      
      Available subcommands:
        add         Add a dependency to pubspec.yaml.
        cache       Work with the Pub system cache.
        deps        Print package dependencies.
        downgrade   Downgrade packages in a Flutter project.
        get         Get the current package's dependencies.
        global      Work with Pub global packages.
        login       Log into pub.dev.
        logout      Log out of pub.dev.
        outdated    Analyze dependencies to find which ones can be upgraded.
        pub         Pass the remaining arguments to Dart's "pub" tool.
        publish     Publish the current package to pub.dartlang.org.
        remove      Removes a dependency from the current package.
        run         Run an executable from a package.
        test        Run the "test" package.
        token       Manage authentication tokens for hosted pub repositories.
        upgrade     Upgrade the current package's dependencies to latest versions.
        uploader    Manage uploaders for a package on pub.dev.
        version     Print Pub version.
      
      Run "flutter help" to see global options.
      ```
      
      Previously it showed an error message:
      
      ```
      PS > flutter pub
      Missing subcommand for "flutter pub".
      
      Run 'flutter -h' (or 'flutter <command> -h') for available flutter commands and options.
      ```
      
      Addresses https://github.com/flutter/flutter/issues/110025
      Unverified
      472a0ab3
    • Jackson Gardner's avatar
      Always use `--concurrency=1` for web tests. (#126179) · 4439fd41
      Jackson Gardner authored
      This should fix https://github.com/flutter/flutter/issues/126178
      
      When we don't pass a `--concurrency` flag to the test package, it uses a default based on the number of cores that are on the machine. However, the web test platform itself serializes all these requests anyway, which can lead to the test package timing out. This is because from the test package's perspective, it has already started the loading process on a number of suites which are simply waiting for other test suites to compile and run. The ones that wait the longest can run up against the test packages 12 minute timeout for loading a given suite, even though they haven't actually started to try to load.
      
      Instead, we should always pass `--concurrency=1` to the test package so that it doesn't attempt to start loads concurrently in the first place.
      Unverified
      4439fd41
    • Elias Yishak's avatar
      Clearer text about what happens with `--disable-telemetry` + enable-telemetry command (#125995) · 0d587527
      Elias Yishak authored
      Fixes:
      - https://github.com/flutter/flutter/issues/124411
      
      This PR is cleaning up the `--disable-telemetry` help message to make it clear that opting out will opt out of all telemetry collection for flutter and dart commands. It is also adding the opposite flag `--enable-telemetry` which will enable telemetry collection
      Unverified
      0d587527
    • Pierre-Louis's avatar
      Update packages (#126140) · 65dfb555
      Pierre-Louis authored
      In particular, update pin for `material_color_utilities` to `0.5.0`.
      Unverified
      65dfb555
  10. 05 May, 2023 4 commits
  11. 04 May, 2023 3 commits
  12. 03 May, 2023 5 commits
  13. 02 May, 2023 1 commit