Compare commits

..

3 Commits

Author SHA1 Message Date
verified-commit[bot] 47fde777f9 chore(release): prepare for 3.41.5 2026-03-21 23:19:07 +00:00
verified-commit[bot] 984bd43ec3 chore(release): upgrade flutter to 3.41.5 (#430) 2026-03-22 00:18:53 +01:00
renovate[bot] 2bcda57469 chore(deps): update mcr.microsoft.com/windows/servercore:ltsc2025 docker digest to a4d6cb8 (#428) 2026-03-19 20:27:08 +01:00
5 changed files with 21 additions and 16 deletions
+5
View File
@@ -1,3 +1,8 @@
## [3.41.5] - 2026-03-21
### ⚙️ Miscellaneous Tasks
- *(release)* Upgrade flutter to 3.41.5 (#430)
## [3.41.4] - 2026-03-19
### ⚙️ Miscellaneous Tasks
+2 -2
View File
@@ -1,7 +1,7 @@
{
"flutter": {
"channel": "stable",
"commit": "ff37bef603469fb030f2b72995ab929ccfc227f0",
"version": "3.41.4"
"commit": "2c9eb20739dfec95e2c74bd3dfa4601b0a8a36aa",
"version": "3.41.5"
}
}
+2 -2
View File
@@ -1,8 +1,8 @@
{
"flutter": {
"channel": "stable",
"commit": "ff37bef603469fb030f2b72995ab929ccfc227f0",
"version": "3.41.4"
"commit": "2c9eb20739dfec95e2c74bd3dfa4601b0a8a36aa",
"version": "3.41.5"
},
"android": {
"platforms": [
+11 -11
View File
@@ -23,7 +23,7 @@ The images includes the minimum tools to run Flutter and build apps. The version
## Features
* Installed Flutter SDK 3.41.4.
* Installed Flutter SDK 3.41.5.
* 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.232.2.
@@ -40,15 +40,15 @@ Predownloaded SDKs and tools in Android:
| Registry | flutter-android |
| ------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
| Docker Hub | [gmeligio/flutter-android:3.41.4](https://hub.docker.com/r/gmeligio/flutter-android) |
| GitHub Container Registry | [ghcr.io/gmeligio/flutter-android:3.41.4](https://github.com/gmeligio/flutter-docker-image/pkgs/container/flutter-android) |
| Quay | [quay.io/gmeligio/flutter-android:3.41.4](https://quay.io/repository/gmeligio/flutter-android) |
| Docker Hub | [gmeligio/flutter-android:3.41.5](https://hub.docker.com/r/gmeligio/flutter-android) |
| GitHub Container Registry | [ghcr.io/gmeligio/flutter-android:3.41.5](https://github.com/gmeligio/flutter-docker-image/pkgs/container/flutter-android) |
| Quay | [quay.io/gmeligio/flutter-android:3.41.5](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.41.4 bash
docker run --rm -it ghcr.io/gmeligio/flutter-android:3.41.5 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.41.4
image: ghcr.io/gmeligio/flutter-android:3.41.5
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.41.4
image: ghcr.io/gmeligio/flutter-android:3.41.5
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.41.4
* Flutter version: 3.41.4
* Docker image: gmeligio/flutter-android:3.41.5
* Flutter version: 3.41.5
## Building Locally
The android.Dockerfile expects a few arguments:
* `flutter_version <string>`: The version of Flutter to use when building. Example: 3.41.4
* `flutter_version <string>`: The version of Flutter to use when building. Example: 3.41.5
* `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.41.4 --build-arg fastlane_version=2.232.2 --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.41.5 --build-arg fastlane_version=2.232.2 --build-arg android_build_tools_version=35.0.0 --build-arg android_platform_versions="36" -t android-test .
```
## Roadmap
+1 -1
View File
@@ -1,6 +1,6 @@
# escape=`
FROM mcr.microsoft.com/windows/servercore:ltsc2025@sha256:79aa6a176b2e4f1786eb29c4facd33077769eddde4c4a650aea552f6320893c7 as flutter
FROM mcr.microsoft.com/windows/servercore:ltsc2025@sha256:a4d6cb8427e90fd15e39bef29e0e800465989793d2a0826d3b7ceba78af0fe34 as flutter
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]