From ba54de256a1a71820381e982a209a67796c1238c Mon Sep 17 00:00:00 2001 From: "verified-commit[bot]" <180343340+verified-commit[bot]@users.noreply.github.com> Date: Sat, 14 Jun 2025 16:11:39 +0200 Subject: [PATCH] chore(release): update flutter dependencies in version.json for 3.32.4 (#353) Co-authored-by: verified-commit[bot] <180343340+verified-commit[bot]@users.noreply.github.com> --- config/flutter_version.json | 4 ++-- config/version.json | 4 ++-- readme.md | 22 +++++++++++----------- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/config/flutter_version.json b/config/flutter_version.json index a4c1908..46a0e52 100644 --- a/config/flutter_version.json +++ b/config/flutter_version.json @@ -1,7 +1,7 @@ { "flutter": { "channel": "stable", - "commit": "5c1433509f997e9059d230942bdf83f1b88a179e", - "version": "3.32.3" + "commit": "6fba2447e95c451518584c35e25f5433f14d888c", + "version": "3.32.4" } } diff --git a/config/version.json b/config/version.json index 41f95f8..e292543 100644 --- a/config/version.json +++ b/config/version.json @@ -1,8 +1,8 @@ { "flutter": { "channel": "stable", - "commit": "5c1433509f997e9059d230942bdf83f1b88a179e", - "version": "3.32.3" + "commit": "6fba2447e95c451518584c35e25f5433f14d888c", + "version": "3.32.4" }, "android": { "platforms": [ diff --git a/readme.md b/readme.md index 7fd7edf..efdb799 100644 --- a/readme.md +++ b/readme.md @@ -23,7 +23,7 @@ The images includes the minimum tools to run Flutter and build apps. The version ## Features -* Installed Flutter SDK 3.32.3. +* Installed Flutter SDK 3.32.4. * Analytics disabled by default, opt-in if `ENABLE_ANALYTICS` environment variable is passed when running the container. * Rootless user `flutter:flutter`, with permissions to run on Github workflows and GitLab CI. * Cached Fastlane gem 2.228.0. @@ -40,15 +40,15 @@ Predownloaded SDKs and tools in Android: | Registry | flutter-android | | ------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -| Docker Hub | [gmeligio/flutter-android:3.32.3](https://hub.docker.com/r/gmeligio/flutter-android) | -| GitHub Container Registry | [ghcr.io/gmeligio/flutter-android:3.32.3](https://github.com/gmeligio/flutter-docker-image/pkgs/container/flutter-android) | -| Quay | [quay.io/gmeligio/flutter-android:3.32.3](https://quay.io/repository/gmeligio/flutter-android) | +| Docker Hub | [gmeligio/flutter-android:3.32.4](https://hub.docker.com/r/gmeligio/flutter-android) | +| GitHub Container Registry | [ghcr.io/gmeligio/flutter-android:3.32.4](https://github.com/gmeligio/flutter-docker-image/pkgs/container/flutter-android) | +| Quay | [quay.io/gmeligio/flutter-android:3.32.4](https://quay.io/repository/gmeligio/flutter-android) | On the terminal: ```bash # From GitHub Container Registry -docker run --rm -it ghcr.io/gmeligio/flutter-android:3.32.3 bash +docker run --rm -it ghcr.io/gmeligio/flutter-android:3.32.4 bash ``` On a workflow in GitHub Actions: @@ -58,7 +58,7 @@ jobs: build: runs-on: ubuntu-22.04 container: - image: ghcr.io/gmeligio/flutter-android:3.32.3 + image: ghcr.io/gmeligio/flutter-android:3.32.4 steps: - name: Checkout uses: actions/checkout@v2 @@ -70,7 +70,7 @@ On a `.gitlab-ci.yml` in GitLab CI: ```yaml build: - image: ghcr.io/gmeligio/flutter-android:3.32.3 + image: ghcr.io/gmeligio/flutter-android:3.32.4 script: - flutter build apk ``` @@ -91,20 +91,20 @@ bundle exec fastlane Every new tag on the flutter stable channel gets built. The tag is composed of the Flutter version used to build the image: -* Docker image: gmeligio/flutter-android:3.32.3 -* Flutter version: 3.32.3 +* Docker image: gmeligio/flutter-android:3.32.4 +* Flutter version: 3.32.4 ## Building Locally The android.Dockerfile expects a few arguments: -* `flutter_version `: The version of Flutter to use when building. Example: 3.32.3 +* `flutter_version `: The version of Flutter to use when building. Example: 3.32.4 * `android_build_tools_version `: The version of the Android SDK Build Tools to install. Example: 34.0.0 * `android_platform_versions `: The versions of the Android SDK Platforms to install, separated by spaces. Example: 35 ```bash # Android -docker build --target android --build-arg flutter_version=3.32.3 --build-arg fastlane_version=2.228.0 --build-arg android_build_tools_version=34.0.0 --build-arg android_platform_versions="35" -t android-test . +docker build --target android --build-arg flutter_version=3.32.4 --build-arg fastlane_version=2.228.0 --build-arg android_build_tools_version=34.0.0 --build-arg android_platform_versions="35" -t android-test . ``` ## Roadmap