Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: flutter/packages
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ea35fc6fb86a
Choose a base ref
...
head repository: flutter/packages
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3379e51a042a
Choose a head ref
  • 6 commits
  • 42 files changed
  • 6 contributors

Commits on Jul 10, 2024

  1. [image_picker]: Bump androidx.core:core from 1.10.1 to 1.13.1 in /pac…

    …kages/image_picker/image_picker_android/android (#6648)
    
    Bumps androidx.core:core from 1.10.1 to 1.13.1.
    
    [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=androidx.core:core&package-manager=gradle&previous-version=1.10.1&new-version=1.13.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
    
    ---
    
    <details>
    <summary>Dependabot commands and options</summary>
    <br />
    
    You can trigger Dependabot actions by commenting on this PR:
    - `@dependabot rebase` will rebase this PR
    - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
    - `@dependabot merge` will merge this PR after your CI passes on it
    - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
    - `@dependabot cancel merge` will cancel a previously requested merge and block automerging
    - `@dependabot reopen` will reopen this PR if it is closed
    - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
    - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    
    </details>
    dependabot[bot] authored Jul 10, 2024
    Configuration menu
    Copy the full SHA
    0ae6dda View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2024

  1. [ci][web] Run tests in canvaskit mode. (#6879)

    Configures the flutter/packages CI to run web tests using the `canvaskit` renderer, which is the new default for web apps.
    
    It also does some minor changes:
    
    * Skips tests on the web for `package:palette_generator` (cleanup issue created below)
      * Makes the `palette_generator` example run on the web. This was used to manually verify that the package still works as expected with canvaskit.
    * Tweaks the README of the `pointer_interceptor` example apps, so they match what's happening in there.
    
    ## Issues
    
    * Fixes flutter/flutter#143543
    
    Co-authored-by: David Iglesias <[email protected]>
    mdebbar and ditman authored Jul 11, 2024
    Configuration menu
    Copy the full SHA
    da04812 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    21e3340 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2024

  1. [ios]Fix compile error when conforming UIApplication to Launcher due …

    …to MainActor annotation (#7100)
    
    iOS 18 Beta 3 added `@MainActor @Sendable` for openURL's completion handler: 
    
    ```
        @available(iOS 10.0, *)
        open func open(_ url: URL, options: [UIApplication.OpenExternalURLOptionsKey : Any] = [:], completionHandler completion: (@mainactor @sendable (Bool) -> Void)? = nil)
    ```
    
    The addition of `@MainActor` is the one that caused the compile error. It was not there for Beta 1. 
    
    This PR we simply use a `DefaultLauncher` wrapper. As expected, passing in a **non-isolated closure** to a function that expects a **main-actor isolated closure** is fine, since non-isolated closure can be called in any isolation context; plus the minimal concurrency checking also silences the Sendable warning.
     
    But we should check again in newer betas if we can revert this change. Because this compile error forces some libraries to update for swift concurrency, which seems to be against the whole idea of having 3 different levels of concurrency checking. So I suspect that Apple is still hashing things out and may change it back (either by removing `@MainActor` from signature, or compiler change to allow this conformance under minimal checking) 
    
    *List which issues are fixed by this PR. You must list at least one issue.*
    Fixes flutter/flutter#151467
    hellohuanlin authored Jul 12, 2024
    Configuration menu
    Copy the full SHA
    33caf1d View commit details
    Browse the repository at this point in the history
  2. [ci] Split build_all_packages by JDK version. (#7106)

    This PR introduces a new `android_build_all_packages_legacy` in `master`
    and `stable` to build only the "legacy" version of an Android project
    using JDK11.
    
    This PR is required to resume rolling the flutter framework, like here:
    
    * #7099
    ditman authored Jul 12, 2024
    Configuration menu
    Copy the full SHA
    2677981 View commit details
    Browse the repository at this point in the history
  3. [pigeon] Fix C++ enum naming (#7094)

    The C++ generator wasn't adjusting enum value names, so they were just using the Dart camelCase style. This makes them style-guide compliant by adding the `k` prefix and making the first actual letter upper-case.
    
    Fixes flutter/flutter#147328
    stuartmorgan-g authored Jul 12, 2024
    Configuration menu
    Copy the full SHA
    3379e51 View commit details
    Browse the repository at this point in the history
Loading