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: 5fd5f74dce46
Choose a base ref
...
head repository: flutter/packages
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e401aeb3aae4
Choose a head ref
  • 4 commits
  • 26 files changed
  • 3 contributors

Commits on Oct 2, 2025

  1. [shared_preferences] updates build files to use JVM 17 (#10131)

    Update minimum flutter version to 3.35 to force a minimum AGP version to something that requires java 17. 
    part of [#176027](flutter/flutter#176027)
    
    All dart code changes were formatter changes. 
    
    ## Pre-Review Checklist
    
    **Note**: The Flutter team is currently trialing the use of [Gemini Code Assist for GitHub](https://developers.google.com/gemini-code-assist/docs/review-github-code). Comments from the `gemini-code-assist` bot should not be taken as authoritative feedback from the Flutter team. If you find its comments useful you can update your code accordingly, but if you are unsure or disagree with the feedback, please feel free to wait for a Flutter team member's review for guidance on which automated comments should be addressed.
    
    [^1]: Regular contributors who have demonstrated familiarity with the repository guidelines only need to comment if the PR is not auto-exempted by repo tooling.
    AbdeMohlbi authored Oct 2, 2025
    Configuration menu
    Copy the full SHA
    23a950e View commit details
    Browse the repository at this point in the history
  2. [webview_flutter] updates build files to use JVM 17 (#10129)

    part of [#176027](flutter/flutter#176027).
    All dart code changes were formatter changes.
    ## Pre-Review Checklist
    
    **Note**: The Flutter team is currently trialing the use of [Gemini Code Assist for GitHub](https://developers.google.com/gemini-code-assist/docs/review-github-code). Comments from the `gemini-code-assist` bot should not be taken as authoritative feedback from the Flutter team. If you find its comments useful you can update your code accordingly, but if you are unsure or disagree with the feedback, please feel free to wait for a Flutter team member's review for guidance on which automated comments should be addressed.
    
    [^1]: Regular contributors who have demonstrated familiarity with the repository guidelines only need to comment if the PR is not auto-exempted by repo tooling.
    AbdeMohlbi authored Oct 2, 2025
    Configuration menu
    Copy the full SHA
    24deb02 View commit details
    Browse the repository at this point in the history
  3. [Camera] Add lens type information (iOS) (#7653)

    This PR adds lens type information. The goal is to identify whether the lens type is wide, ultra-wide, telephoto, etc., as discussed in flutter/flutter#119908. The iOS implementation is complete, so lens data will now be populated on iOS.
    
    - Introduces a new CameraLensType enum to provide lens type information about the camera (e.g.: ultra-wide, telephoto, ...)
    - Adds lensType in the PlatformCameraDescription and CameraDescription classes 
    - Implements utility functions to convert between PlatformCameraLensType and CameraLensType.
    - Updates auto-generated code (using Pigeon) to reflect these changes.
    
    **Current CameraDescription for iPhone 11**
    ```
    [
        CameraDescription(
            com.apple.avfoundation.avcapturedevice.built-in_video:0,
            CameraLensDirection.back,
            90
        ),
        CameraDescription(
            com.apple.avfoundation.avcapturedevice.built-in_video:1,
            CameraLensDirection.front,
            90
        ),
        CameraDescription(
            com.apple.avfoundation.avcapturedevice.built-in_video:5,
            CameraLensDirection.back,
            90
        )
    ]
    ```
    
    **New CameraDescription for iPhone 11**
    ```
    [
        CameraDescription(
            com.apple.avfoundation.avcapturedevice.built-in_video:0,
            CameraLensDirection.back,
            90,
            CameraLensType.wide
        ),
        CameraDescription(
            com.apple.avfoundation.avcapturedevice.built-in_video:1,
            CameraLensDirection.front,
            90,
            CameraLensType.wide
        ),
        CameraDescription(
            com.apple.avfoundation.avcapturedevice.built-in_video:5,
            CameraLensDirection.back,
            90,
            CameraLensType.ultraWide
        )
    ]
    ```
    
    Fixes flutter/flutter#174390
    lenzpaul authored Oct 2, 2025
    Configuration menu
    Copy the full SHA
    32be41d View commit details
    Browse the repository at this point in the history
  4. Roll Flutter from 7811e8982355 to 65aca3661b8f (12 revisions) (#10161)

    flutter/flutter@7811e89...65aca36
    
    2025-10-02 [email protected] Roll Skia from 257c1f94afaa to 05c1f5803415 (4 revisions) (flutter/flutter#176402)
    2025-10-02 [email protected] [ Widget Preview ] Fix resolution for workspace "hosted" dependencies (flutter/flutter#176358)
    2025-10-02 [email protected] Roll Skia from b5d8ae8d3410 to 257c1f94afaa (6 revisions) (flutter/flutter#176389)
    2025-10-02 [email protected] Delete Skia-specific performance overlay implementation (flutter/flutter#176364)
    2025-10-02 [email protected] Roll Fuchsia Linux SDK from 1Ai6VL4vb_GdGnWhg... to Vnoygds8HtDUvGLCK... (flutter/flutter#176381)
    2025-10-01 [email protected] [ Widget Preview ] Persist "Filter by Selected File" toggle (flutter/flutter#176289)
    2025-10-01 [email protected] Roll Skia from c44a36470d07 to b5d8ae8d3410 (5 revisions) (flutter/flutter#176367)
    2025-10-01 [email protected] Reapply "Update the AccessibilityPlugin::Announce method to account f… (flutter/flutter#176107)
    2025-10-01 [email protected] Roll Dart SDK from 8ffec1435cf3 to 4f90a06328cb (3 revisions) (flutter/flutter#176369)
    2025-10-01 [email protected] [ Tool / l10n ] Fix issue where localization generator assumed current directory was the target project (flutter/flutter#175881)
    2025-10-01 [email protected] Make sure that a DateRangePickerDialog doesn't crash in 0x0 environments (flutter/flutter#173754)
    2025-10-01 [email protected] Make sure that a DrawerButton doesn't crash in 0x0 environment (flutter/flutter#172948)
    
    If this roll has caused a breakage, revert this CL and stop the roller
    using the controls here:
    https://autoroll.skia.org/r/flutter-packages
    Please CC [email protected] on the revert to ensure that a human
    is aware of the problem.
    
    To file a bug in Packages: https://github.com/flutter/flutter/issues/new/choose
    
    To report a problem with the AutoRoller itself, please file a bug:
    https://issues.skia.org/issues/new?component=1389291&template=1850622
    
    Documentation for the AutoRoller is here:
    https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
    engine-flutter-autoroll authored Oct 2, 2025
    Configuration menu
    Copy the full SHA
    e401aeb View commit details
    Browse the repository at this point in the history
Loading