[pve-devel] [PATCH pve_flutter_frontend 4/4] chore: add upper bound flutter constraint and update dart sdk constraint
Dominik Csapak
d.csapak at proxmox.com
Fri Sep 26 11:25:05 CEST 2025
On 9/24/25 12:37 PM, Shan Shaji wrote:
> Starting form language version 3.9, the flutter constrain upper bound is
> now respected in the root package. Setting the flutter constraint can be
> usefull to ensure everyone will use the same SDK.
>
> Signed-off-by: Shan Shaji <s.shaji at proxmox.com>
> ---
> pubspec.lock | 2 +-
> pubspec.yaml | 3 ++-
> 2 files changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/pubspec.lock b/pubspec.lock
> index 862241e..4f51e63 100644
> --- a/pubspec.lock
> +++ b/pubspec.lock
> @@ -909,4 +909,4 @@ packages:
> version: "3.1.3"
> sdks:
> dart: ">=3.9.0 <4.0.0"
> - flutter: ">=3.35.0"
> + flutter: "3.35.0"
> diff --git a/pubspec.yaml b/pubspec.yaml
> index a4d5b69..e447377 100644
> --- a/pubspec.yaml
> +++ b/pubspec.yaml
> @@ -15,7 +15,8 @@ publish_to: none
> version: 1.8.1+46
>
> environment:
> - sdk: '>=3.0.0 <4.0.0'
> + sdk: '>=3.9.0 <4.0.0'
> + flutter: 3.35.0
>
not sure if we want to make it that hard of a requirement
maybe having
flutter: '>=3.35.0 <3.36.0'
would be better ?
then we don't have to update this on every minor patch version?
> dependencies:
> flutter:
More information about the pve-devel
mailing list