Skip to content

Commit 3c51614

Browse files
authored
feat(repo): bump min flutter version to 3.27.4 (#2108)
1 parent 52a279b commit 3c51614

File tree

21 files changed

+52
-26
lines changed

21 files changed

+52
-26
lines changed

.github/actions/pana/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ runs:
3232
- name: Install Flutter
3333
uses: subosito/flutter-action@v2
3434
with:
35-
# Forcing to 3.24.5 for right now as pana has an issue with Dart 3.6 https://github.com/dart-lang/dartdoc/issues/3947
36-
flutter-version: "3.24.5"
3735
cache: true
36+
channel: stable
37+
flutter-version: "3.x"
3838
cache-key: flutter-:os:-:channel:-:version:-:arch:-:hash:-${{ hashFiles('**/pubspec.lock') }}
3939

4040
- name: Install Pana

.github/workflows/legacy_version_analyze.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: legacy_version_analyze
33
env:
44
# Note: The versions below should be manually updated after a new stable
55
# version comes out.
6-
flutter_version: "3.24.5"
6+
flutter_version: "3.27.4"
77

88
on:
99
push:

melos.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ command:
1818
bootstrap:
1919
# Dart and Flutter environment used in the project.
2020
environment:
21-
sdk: ^3.5.4
21+
sdk: ^3.6.2
2222
# We are not using carat '^' syntax here because flutter don't follow semantic versioning.
23-
flutter: ">=3.24.5"
23+
flutter: ">=3.27.4"
2424

2525
# List of all the dependencies used in the project.
2626
dependencies:

packages/stream_chat/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Upcoming
2+
3+
🔄 Changed
4+
5+
- Updated minimum Flutter version to 3.27.4 for the SDK.
6+
17
## 9.3.0
28

39
✅ Added

packages/stream_chat/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ version: 1.0.0+1
1717
# 2. Add it to the melos.yaml file for future updates.
1818

1919
environment:
20-
sdk: ^3.5.4
21-
flutter: ">=3.24.5"
20+
sdk: ^3.6.2
21+
flutter: ">=3.27.4"
2222

2323
dependencies:
2424
cupertino_icons: ^1.0.3

packages/stream_chat/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ issue_tracker: https://github.com/GetStream/stream-chat-flutter/issues
1818
# 2. Add it to the melos.yaml file for future updates.
1919

2020
environment:
21-
sdk: ^3.5.4
21+
sdk: ^3.6.2
2222

2323
dependencies:
2424
async: ^2.11.0

packages/stream_chat_flutter/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Upcoming
2+
3+
🔄 Changed
4+
5+
- Updated minimum Flutter version to 3.27.4 for the SDK.
6+
17
## 9.3.0
28

39
✅ Added

packages/stream_chat_flutter/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ version: 1.0.0+1
1616
# 2. Add it to the melos.yaml file for future updates.
1717

1818
environment:
19-
sdk: ^3.5.4
20-
flutter: ">=3.24.5"
19+
sdk: ^3.6.2
20+
flutter: ">=3.27.4"
2121

2222
dependencies:
2323
collection: ^1.17.2

packages/stream_chat_flutter/lib/src/attachment/builder/voice_recording_attachment_builder/stream_voice_recording_loading.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class StreamVoiceRecordingLoading extends StatelessWidget {
2323
height: theme.size!.height,
2424
width: theme.size!.width,
2525
child: CircularProgressIndicator(
26+
// ignore: unnecessary_null_checks
2627
strokeWidth: theme.strokeWidth!,
2728
color: theme.color,
2829
),

packages/stream_chat_flutter/lib/src/message_input/stream_message_text_field.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -705,6 +705,7 @@ class _StreamMessageTextFieldState extends State<StreamMessageTextField>
705705
autofillHints: widget.autofillHints,
706706
clipBehavior: widget.clipBehavior,
707707
restorationId: widget.restorationId,
708+
// ignore: deprecated_member_use
708709
scribbleEnabled: widget.scribbleEnabled,
709710
enableIMEPersonalizedLearning: widget.enableIMEPersonalizedLearning,
710711
contentInsertionConfiguration: widget.contentInsertionConfiguration,

0 commit comments

Comments
 (0)