Skip to content

Commit 088bfbc

Browse files
authored
feat: Add support for Dart 3.1, remove support for Dart 2.18 (#969)
1 parent 1ae0808 commit 088bfbc

File tree

6 files changed

+35
-26
lines changed

6 files changed

+35
-26
lines changed

.github/workflows/ci.yml

+14-15
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ on:
33
push:
44
branches:
55
- "master"
6-
- "development"
76
paths-ignore:
87
- "**/README.md"
98
pull_request:
@@ -16,31 +15,31 @@ jobs:
1615
matrix:
1716
include:
1817
# Dart framework may contain breaking changes in minor version releases, not following semver.
19-
- name: Dart 3.0, Ubuntu
18+
# The latest Dart framework (below) is tested on all architectures (Ubuntu, macOS, Windows).
19+
- name: Dart 3.1, Ubuntu
2020
os: ubuntu-latest
21-
sdk: 3.0.0
22-
- name: Dart 3.0, macOS
21+
sdk: 3.1.2
22+
- name: Dart 3.1, macOS
2323
os: macos-latest
24-
sdk: 3.0.0
25-
- name: Dart 3.0, Windows
24+
sdk: 3.1.2
25+
- name: Dart 3.1, Windows
2626
os: windows-latest
27-
sdk: 3.0.0
28-
# Only the latest Dart framework version (above) is tested with all architectures. Previous
29-
# Dart framework versions (below) are only tested with Ubuntu to reduce CI resource usage.
27+
sdk: 3.1.2
28+
# Older Dart framework versions (below) are only tested with Ubuntu to reduce CI resource usage.
29+
- name: Dart 3.0
30+
os: ubuntu-latest
31+
sdk: 3.0.7
3032
- name: Dart 2.19
3133
os: ubuntu-latest
3234
sdk: 2.19.6
33-
- name: Dart 2.18
34-
os: ubuntu-latest
35-
sdk: 2.18.7
3635
- name: Dart beta
3736
os: ubuntu-latest
3837
sdk: beta
3938
fail-fast: false
4039
name: Test ${{ matrix.name }}
4140
steps:
4241
- name: Checkout code
43-
uses: actions/checkout@v3
42+
uses: actions/checkout@v4
4443
- name: Setup dart
4544
uses: dart-lang/setup-dart@v1.5.0
4645
with:
@@ -77,6 +76,7 @@ jobs:
7776
matrix:
7877
include:
7978
# Flutter framework may contain breaking changes in minor version releases, not following semver.
79+
# The latest Flutter framework (below) is tested on all architectures (Ubuntu, macOS, Windows).
8080
- name: Flutter 3.13, Ubuntu
8181
os: ubuntu-latest
8282
sdk: 3.13.6
@@ -86,8 +86,7 @@ jobs:
8686
- name: Flutter 3.13, Windows
8787
os: windows-latest
8888
sdk: 3.13.6
89-
# Only the latest Flutter framework version (above) is tested with all architectures. Previous
90-
# Flutter framework versions (below) are only tested with Ubuntu to reduce CI resource usage.
89+
# Older Flutter framework versions (below) are only tested with Ubuntu to reduce CI resource usage.
9190
- name: Flutter 3.10
9291
os: ubuntu-latest
9392
sdk: 3.10.6

packages/dart/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## [6.0.0](https://github.com/parse-community/Parse-SDK-Flutter/compare/dart-5.1.3...dart-6.0.0) (2023-10-16)
2+
3+
### BREAKING CHANGES
4+
5+
* This release removes support for Dart 2.18 ([#969](https://github.com/parse-community/Parse-SDK-Flutter/pull/969))
6+
7+
### Features
8+
9+
* Add support for Dart 3.1, remove support for Dart 2.18 ([#969](https://github.com/parse-community/Parse-SDK-Flutter/pull/969))
10+
111
## [5.1.3](https://github.com/parse-community/Parse-SDK-Flutter/compare/dart-5.1.2...dart-5.1.3) (2023-07-18)
212

313
### Bug Fixes

packages/dart/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,13 @@ This library gives you access to the powerful Parse Server backend from your Dar
2828

2929
## Compatibility
3030

31-
The Parse Dart SDK is continuously tested with the most recent release of the Dart framework to ensure compatibility. To give developers time to upgrade their app to the newest Dart framework, previous Dart framework releases are supported for at least 1 year after their [release date](https://dart.dev/get-dart/archive).
31+
The Parse Dart SDK is continuously tested with the most recent release of the Dart framework to ensure compatibility. To give developers time to upgrade their app to a newer Dart framework, previous Dart framework releases are supported for at least 1 year after the [release date](https://dart.dev/get-dart/archive) of the next higher significant version.
3232

33-
| Version | Latest Version | End of Support | Compatible |
34-
|-----------|----------------|----------------|----------------------------------------------|
35-
| Dart 3.0 | 3.0.0 | May 2024 | ✅ Yes |
36-
| Dart 2.19 | 2.19.6 | Mar 2024 | ✅ Yes |
37-
| Dart 2.18 | 2.18.7 | Jan 2024 | ✅ Yes |
38-
| Dart 2.17 | 2.17.7 | Aug 2023 | ❌ No (Parse Dart SDK requires Dart >=2.18.0) |
33+
| Version | Latest Version | End of Support | Compatible |
34+
|-----------|----------------|----------------|------------|
35+
| Dart 3.1 | 3.1.2 | Sep 2024 | ✅ Yes |
36+
| Dart 3.0 | 3.0.7 | May 2024 | ✅ Yes |
37+
| Dart 2.19 | 2.19.6 | Mar 2024 | ✅ Yes |
3938

4039
## Getting Started
4140

@@ -51,3 +50,4 @@ We want to make contributing to this project as easy and transparent as possible
5150

5251
[guide]: https://docs.parseplatform.org/dart/guide/
5352
[open-collective-link]: https://opencollective.com/parse-server
53+

packages/dart/example/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ publish_to: 'none'
55
version: 1.0.0
66

77
environment:
8-
sdk: ">=2.18.0 <4.0.0"
8+
sdk: ">=2.19.6 <4.0.0"
99

1010
dependencies:
1111
parse_server_sdk:

packages/dart/lib/src/base/parse_constants.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
part of flutter_parse_sdk;
22

33
// Library
4-
const String keySdkVersion = '5.1.3';
4+
const String keySdkVersion = '6.0.0';
55
const String keyLibraryName = 'Flutter Parse SDK';
66

77
// End Points

packages/dart/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: parse_server_sdk
22
description: The Dart SDK to connect to Parse Server. Build your apps faster with Parse Platform, the complete application stack.
3-
version: 5.1.3
3+
version: 6.0.0
44
homepage: https://parseplatform.org
55
repository: https://github.com/parse-community/Parse-SDK-Flutter
66
issue_tracker: https://github.com/parse-community/Parse-SDK-Flutter/issues
@@ -18,7 +18,7 @@ topics:
1818
- backend
1919

2020
environment:
21-
sdk: ">=2.18.0 <4.0.0"
21+
sdk: ">=2.19.6 <4.0.0"
2222

2323
dependencies:
2424
# Networking

0 commit comments

Comments
 (0)