-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1669 from GetStream/release/v6.6.0
- Loading branch information
Showing
43 changed files
with
236 additions
and
307 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: legacy_version_analyze | ||
|
||
env: | ||
# Note: The versions below should be manually updated after a new stable | ||
# version comes out. | ||
flutter_version: "3.7.12" | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
paths: | ||
- 'packages/**' | ||
- '.github/workflows/legacy_version_analyze.yml' | ||
pull_request: | ||
branches: | ||
- master | ||
- develop | ||
paths: | ||
- 'packages/**' | ||
- '.github/workflows/legacy_version_analyze.yml' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
# Does a sanity check that packages at least pass analysis on the N-1 | ||
# versions of Flutter stable if the package claims to support that version. | ||
# This is to minimize accidentally making changes that break old versions | ||
# (which we don't commit to supporting, but don't want to actively break) | ||
# without updating the constraints. | ||
analyze_legacy_versions: | ||
timeout-minutes: 15 | ||
if: github.event.pull_request.draft == false | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Git Checkout" | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: "Install Flutter" | ||
uses: subosito/flutter-action@v2 | ||
with: | ||
cache: true | ||
flutter-version: ${{ env.flutter_version }} | ||
|
||
- name: "Install Tools" | ||
run: flutter pub global activate melos | ||
|
||
- name: "Bootstrap Workspace" | ||
run: melos bootstrap --verbose | ||
|
||
# Only analyze lib/; non-client code doesn't need to work on | ||
# all supported legacy version. | ||
- name: "Stream Chat Analyze" | ||
run: cd packages/stream_chat/lib && dart analyze --fatal-infos . | ||
|
||
- name: "Stream Chat Flutter Core Analyze" | ||
run: cd packages/stream_chat_flutter_core/lib && dart analyze --fatal-infos . | ||
|
||
- name: "Stream Chat Flutter Analyze" | ||
run: cd packages/stream_chat_flutter/lib && dart analyze --fatal-infos . | ||
|
||
- name: "Stream Chat Persistence Analyze" | ||
run: cd packages/stream_chat_persistence/lib && dart analyze --fatal-infos . | ||
|
||
- name: "Stream Chat Localizations Analyze" | ||
run: cd packages/stream_chat_localizations/lib && dart analyze --fatal-infos . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
## 6.5.0 | ||
|
||
🔄 Changed | ||
|
||
- Updated minimum supported `SDK` version to Dart 2.19 | ||
|
||
## 6.4.0 | ||
|
||
🐞 Fixed | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
name: stream_chat | ||
homepage: https://getstream.io/ | ||
description: The official Dart client for Stream Chat, a service for building chat applications. | ||
version: 6.4.0 | ||
version: 6.5.0 | ||
repository: https://github.com/GetStream/stream-chat-flutter | ||
issue_tracker: https://github.com/GetStream/stream-chat-flutter/issues | ||
|
||
environment: | ||
sdk: '>=2.17.0 <4.0.0' | ||
sdk: '>=2.19.0 <4.0.0' | ||
|
||
dependencies: | ||
async: ^2.10.0 | ||
collection: ^1.17.0 | ||
dio: ^5.2.0 | ||
dio: ^5.2.1+1 | ||
equatable: ^2.0.5 | ||
freezed_annotation: ^2.2.0 | ||
http_parser: ^4.0.2 | ||
jose: ^0.3.3 | ||
json_annotation: ^4.8.0 | ||
logging: ^1.1.1 | ||
json_annotation: ^4.8.1 | ||
logging: ^1.2.0 | ||
meta: ^1.8.0 | ||
mime: ^1.0.4 | ||
rate_limiter: ^1.0.0 | ||
rxdart: ^0.27.7 | ||
synchronized: ^3.0.0 | ||
synchronized: ^3.1.0 | ||
uuid: ^3.0.7 | ||
web_socket_channel: ^2.3.0 | ||
web_socket_channel: ^2.4.0 | ||
|
||
dev_dependencies: | ||
build_runner: ^2.3.3 | ||
freezed: ^2.3.2 | ||
json_serializable: ^6.6.1 | ||
freezed: ^2.4.0 | ||
json_serializable: ^6.6.2 | ||
mocktail: ^0.3.0 | ||
test: ^1.24.1 | ||
test: ^1.24.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.