From 642fdf28a9c2c7d381271b349300ca06f69ae126 Mon Sep 17 00:00:00 2001 From: "verified-commit[bot]" <180343340+verified-commit[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 10:08:01 +0100 Subject: [PATCH] chore: update flutter dependencies in version.json for 3.24.5 (#263) Co-authored-by: verified-commit[bot] <180343340+verified-commit[bot]@users.noreply.github.com> --- config/version.json | 4 ++-- readme.md | 20 ++++++++++---------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/config/version.json b/config/version.json index 28acf7b..37851e8 100644 --- a/config/version.json +++ b/config/version.json @@ -1,8 +1,8 @@ { "flutter": { "channel": "stable", - "commit": "603104015dd692ea3403755b55d07813d5cf8965", - "version": "3.24.4" + "commit": "dec2ee5c1f98f8e84a7d5380c05eb8a3d0a81668", + "version": "3.24.5" }, "android": { "platforms": [ diff --git a/readme.md b/readme.md index 9b11b7d..487200c 100644 --- a/readme.md +++ b/readme.md @@ -10,7 +10,7 @@ The images includes the minimum tools to run Flutter and build apps. The version Features: -1. \[x\] Installed Flutter SDK 3.24.4 +1. \[x\] Installed Flutter SDK 3.24.5 2. \[x\] Analytics disabled by default, opt-in if `ENABLE_ANALYTICS` environment variable is passed when running the container. 3. \[x\] Rootless user `flutter:flutter`, with permissions to run on Github workflows and GitLab CI. 4. \[x\] Cached Fastlane gem 2.225.0 @@ -50,13 +50,13 @@ On the terminal: ```bash # From Docker Hub -docker run --rm -it gmeligio/flutter-android:3.24.4 bash +docker run --rm -it gmeligio/flutter-android:3.24.5 bash # From GitHub Container Registry -docker run --rm -it ghcr.io/gmeligio/flutter-android:3.24.4 bash +docker run --rm -it ghcr.io/gmeligio/flutter-android:3.24.5 bash # From Quay.io -docker run --rm -it quay.io/gmeligio/flutter-android:3.24.4 bash +docker run --rm -it quay.io/gmeligio/flutter-android:3.24.5 bash ``` On a workflow in GitHub Actions: @@ -66,7 +66,7 @@ jobs: build: runs-on: ubuntu-22.04 container: - image: ghcr.io/gmeligio/flutter-android:3.24.4 + image: ghcr.io/gmeligio/flutter-android:3.24.5 steps: - name: Checkout uses: actions/checkout@v2 @@ -78,7 +78,7 @@ On a `.gitlab-ci.yml` in GitLab CI: ```yaml build: - image: ghcr.io/gmeligio/flutter-android:3.24.4 + image: ghcr.io/gmeligio/flutter-android:3.24.5 script: - flutter build apk ``` @@ -101,8 +101,8 @@ There is no `latest` Docker tag on purpose. You need to specify the version of t The tag is composed of the Flutter version used to build the image. For example: -* Docker image: gmeligio/flutter-android:3.24.4 -* Flutter version: 3.24.4 +* Docker image: gmeligio/flutter-android:3.24.5 +* Flutter version: 3.24.5 ## Developing locally @@ -110,13 +110,13 @@ The tag is composed of the Flutter version used to build the image. For example: The Dockerfile expects a few parameters: -* `flutter_version `: The version of Flutter to use when building. Example: 3.24.4 +* `flutter_version `: The version of Flutter to use when building. Example: 3.24.5 * `android_build_tools_version `: The version of the Android SDK Build Tools to install. Example: 33.0.1 * `android_platform_versions `: The versions of the Android SDK Platforms to install, separated by spaces. Example: 28 31 33 ```bash # Android -docker build --target android --build-arg flutter_version=3.24.4 --build-arg fastlane_version=2.225.0 --build-arg android_build_tools_version=33.0.1 --build-arg android_platform_versions="34" -t android-test . +docker build --target android --build-arg flutter_version=3.24.5 --build-arg fastlane_version=2.225.0 --build-arg android_build_tools_version=33.0.1 --build-arg android_platform_versions="34" -t android-test . ``` ### Dockerfile stages