Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating the supported platforms page #11271

Merged
merged 10 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions src/_data/platforms.yml
Original file line number Diff line number Diff line change
@@ -1,50 +1,50 @@
- platform: 'Android SDK'
chipsets: 'x64, Arm32, Arm64'
supported: '21 to 34'
besteffort: 'N/A'
ci-tested: '21 to 34'
unsupported: '20 and earlier'
- platform: 'iOS'
chipsets: 'Arm64'
supported: '17'
besteffort: '12 to 16, 18'
supported: '12 to 18'
ci-tested: '17'
unsupported: '11 and earlier'
- platform: 'macOS'
chipsets: 'x64, Arm64'
supported: '<abbr title="Ventura">13</abbr>, <abbr title="Sonoma">14</abbr>'
besteffort: '<abbr title="Mojave">10.14</abbr> to <abbr title="Monterey">12</abbr>, <abbr title="Sequoia">15</abbr>'
unsupported: '<abbr title="High Sierra">10.13</abbr> and earlier'
supported: 'Mojave (10.14) to Sequoia (15)'
ci-tested: 'Ventura (13), Sonoma (14)'
unsupported: 'High Sierra (10.13) and earlier'
- platform: 'Windows'
chipsets: 'x64, Arm64'
supported: '10'
besteffort: '11'
supported: '10, 11'
ci-tested: '10'
unsupported: '8 and earlier'
- platform: 'Debian (Linux)'
chipsets: 'x64, Arm64'
supported: '11, 12'
besteffort: '10'
supported: '10, 11, 12'
ci-tested: '11, 12'
unsupported: '9 and earlier'
- platform: 'Ubuntu (Linux)'
chipsets: 'x64, Arm64'
supported: '20.04 LTS, 22.04 LTS'
sfshaza2 marked this conversation as resolved.
Show resolved Hide resolved
besteffort: '24.04 LTS'
ci-tested: '96 unil Latest 2'
sfshaza2 marked this conversation as resolved.
Show resolved Hide resolved
unsupported: '23.10 and earlier non-LTS'
- platform: 'Chrome (Web)'
chipsets: 'N/A'
supported: '[Latest 2](https://chromereleases.googleblog.com/search/label/Stable%20updates)'
sfshaza2 marked this conversation as resolved.
Show resolved Hide resolved
besteffort: '96 to latest 2'
ci-tested: '119 (Engine), 125 (Framework)'
unsupported: '95 and earlier'
- platform: 'Firefox (Web)'
chipsets: 'N/A'
supported: '[Latest 2](https://www.mozilla.org/en-US/firefox/releases/)'
besteffort: '99 to latest 2'
ci-tested: '106'
unsupported: '98 and earlier'
- platform: 'Safari (Web)'
chipsets: 'N/A'
supported: '[Latest 2](https://developer.apple.com/documentation/safari-release-notes/)'
besteffort: '15.6 to latest 2'
ci-tested: 'If on latest MacOS 13, then Safari 18'
sfshaza2 marked this conversation as resolved.
Show resolved Hide resolved
unsupported: '15.5 and earlier'
- platform: 'Edge (Web)'
chipsets: 'N/A'
supported: '[Latest 2](https://learn.microsoft.com/en-us/deployedge/microsoft-edge-relnote-stable-channel)'
besteffort: '96 to latest 2'
ci-tested:
sfshaza2 marked this conversation as resolved.
Show resolved Hide resolved
unsupported: '95 and earlier'
16 changes: 8 additions & 8 deletions src/content/reference/supported-platforms.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@ description: The platforms that Flutter supports by platform version.
---

As of Flutter {{site.appnow.flutter}},
Flutter supports deploying apps the following combinations of
Flutter supports deploying apps on the following combinations of
hardware architectures and operating system versions.
These combinations are called _platforms_.

Flutter supports platforms in three tiers:
Flutter categorizes platforms as follows:

* **Supported**: The Flutter team tests these platforms on every commit.
* **Best effort**: The Flutter team intends to support these platforms
through coding practices. The team tests these platforms on an ad-hoc basis.
* **Supported**: The platforms and versions that the Flutter team supports.
* **CI-tested**: The Flutter team tests these platforms on every commit.
* **Unsupported**: The Flutter team doesn't test or support these platforms.

Based on these tiers, Flutter supports deploying to the following platforms.
Based on these categories,
Flutter supports deploying to the following platforms.

{% assign opsys = platforms %}

| Target Platform | Hardware architectures | Supported versions | Best effort versions | Unsupported versions |
| Target platform | Hardware architectures | Supported versions | CI-tested versions | Unsupported versions |
|---|:---:|:---:|:---:|:---:|
{%- for platform in opsys %}
| {{platform.platform}} | {{platform.chipsets}} | {{platform.supported}} | {{platform.besteffort}} | {{platform.unsupported}} |
| {{platform.platform}} | {{platform.chipsets}} | {{platform.supported}} | {{platform.ci-tested}} | {{platform.unsupported}} |
{%- endfor %}

{:.table .table-striped}
Loading