fix: pin intl dependency version in pubspec.yaml #342

Closed
opened 2026-06-01 15:49:02 +00:00 by guettlibot · 1 comment
guettlibot commented 2026-06-01 15:49:02 +00:00 (Migrated from codeberg.org)

Problem

In pubspec.yaml line 36:

intl: any

any allows any version including breaking ones. The intl package has had breaking API changes between major versions (e.g. DateFormat, Intl.message signatures). A future flutter pub get could silently pull in a breaking release.

Fix

Pin to the current locked version from pubspec.lock:

intl: ^0.20.2

(Adjust to whatever version is in pubspec.lock — just replace any with a proper constraint.)

## Problem In `pubspec.yaml` line 36: ```yaml intl: any ``` `any` allows any version including breaking ones. The `intl` package has had breaking API changes between major versions (e.g. `DateFormat`, `Intl.message` signatures). A future `flutter pub get` could silently pull in a breaking release. ## Fix Pin to the current locked version from `pubspec.lock`: ```yaml intl: ^0.20.2 ``` (Adjust to whatever version is in pubspec.lock — just replace `any` with a proper constraint.)
guettlibot commented 2026-06-01 15:49:40 +00:00 (Migrated from codeberg.org)

agentloop: the agent run did not complete (no result was produced).

agentloop: the agent run did not complete (no result was produced).
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: guettli/sharedinbox#342