Compare commits

...

2 Commits

Author SHA1 Message Date
verified-commit[bot] 560211cd91 chore(release): prepare for 3.38.3 2025-11-24 08:07:28 +00:00
verified-commit[bot] 33ce70a0e4 chore(release): upgrade flutter to 3.38.3 (#401)
Co-authored-by: verified-commit[bot] <180343340+verified-commit[bot]@users.noreply.github.com>
2025-11-24 09:07:16 +01:00
4 changed files with 22 additions and 17 deletions
+5
View File
@@ -1,3 +1,8 @@
## [3.38.3] - 2025-11-24
### ⚙️ Miscellaneous Tasks
- *(release)* Upgrade flutter to 3.38.3 (#401)
## [3.38.2] - 2025-11-19
### ⚙️ Miscellaneous Tasks
+2 -2
View File
@@ -1,7 +1,7 @@
{
"flutter": {
"channel": "stable",
"commit": "f5a8537f90d143abd5bb2f658fa69c388da9677b",
"version": "3.38.2"
"commit": "19074d12f7eaf6a8180cd4036a430c1d76de904e",
"version": "3.38.3"
}
}
+3 -3
View File
@@ -1,8 +1,8 @@
{
"flutter": {
"channel": "stable",
"commit": "f5a8537f90d143abd5bb2f658fa69c388da9677b",
"version": "3.38.2"
"commit": "19074d12f7eaf6a8180cd4036a430c1d76de904e",
"version": "3.38.3"
},
"android": {
"platforms": [
@@ -27,6 +27,6 @@
}
},
"fastlane": {
"version": "2.228.0"
"version": "2.229.0"
}
}
+12 -12
View File
@@ -23,10 +23,10 @@ The images includes the minimum tools to run Flutter and build apps. The version
## Features
* Installed Flutter SDK 3.38.2.
* Installed Flutter SDK 3.38.3.
* 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.
* Cached Fastlane gem 2.229.0.
* Minimal image with predownloaded SDKs and tools ready to run `flutter` commands for the Android platform.
Predownloaded SDKs and tools in Android:
@@ -40,15 +40,15 @@ Predownloaded SDKs and tools in Android:
| Registry | flutter-android |
| ------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
| Docker Hub | [gmeligio/flutter-android:3.38.2](https://hub.docker.com/r/gmeligio/flutter-android) |
| GitHub Container Registry | [ghcr.io/gmeligio/flutter-android:3.38.2](https://github.com/gmeligio/flutter-docker-image/pkgs/container/flutter-android) |
| Quay | [quay.io/gmeligio/flutter-android:3.38.2](https://quay.io/repository/gmeligio/flutter-android) |
| Docker Hub | [gmeligio/flutter-android:3.38.3](https://hub.docker.com/r/gmeligio/flutter-android) |
| GitHub Container Registry | [ghcr.io/gmeligio/flutter-android:3.38.3](https://github.com/gmeligio/flutter-docker-image/pkgs/container/flutter-android) |
| Quay | [quay.io/gmeligio/flutter-android:3.38.3](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.38.2 bash
docker run --rm -it ghcr.io/gmeligio/flutter-android:3.38.3 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.38.2
image: ghcr.io/gmeligio/flutter-android:3.38.3
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.38.2
image: ghcr.io/gmeligio/flutter-android:3.38.3
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.38.2
* Flutter version: 3.38.2
* Docker image: gmeligio/flutter-android:3.38.3
* Flutter version: 3.38.3
## Building Locally
The android.Dockerfile expects a few arguments:
* `flutter_version <string>`: The version of Flutter to use when building. Example: 3.38.2
* `flutter_version <string>`: The version of Flutter to use when building. Example: 3.38.3
* `android_build_tools_version <string>`: The version of the Android SDK Build Tools to install. Example: 35.0.0
* `android_platform_versions <list>`: The versions of the Android SDK Platforms to install, separated by spaces. Example: 36
```bash
# Android
docker build --target android --build-arg flutter_version=3.38.2 --build-arg fastlane_version=2.228.0 --build-arg android_build_tools_version=35.0.0 --build-arg android_platform_versions="36" -t android-test .
docker build --target android --build-arg flutter_version=3.38.3 --build-arg fastlane_version=2.229.0 --build-arg android_build_tools_version=35.0.0 --build-arg android_platform_versions="36" -t android-test .
```
## Roadmap