Skip to content

Commit 74f45b9

Browse files
authored
feat: Upgrade parse_server_sdk to 5.x.x (#868)
1 parent 8dce6fc commit 74f45b9

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

examples/flutter_example/pubspec.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ dependencies:
1616
sembast: ^3.0.0+4
1717
shared_preferences: ^2.0.5
1818

19+
dependency_overrides:
20+
# Override to local mono-repo path so devs can test this repo
21+
# against changes that they're making to other mono-repo packages.
22+
parse_server_sdk:
23+
path: ../../dart
24+
1925
dev_dependencies:
2026
flutter_lints: ^1.0.4
2127
flutter_test:

examples/fluttter_example_livelist/pubspec.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ dependencies:
1515

1616
cupertino_icons: ^1.0.2
1717

18+
dependency_overrides:
19+
# Override to local mono-repo path so devs can test this repo
20+
# against changes that they're making to other mono-repo packages.
21+
parse_server_sdk:
22+
path: ../../dart
23+
1824
dev_dependencies:
1925
flutter_lints: ^1.0.4
2026
flutter_test:

packages/flutter/CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
1-
## [5.0.0](https://github.com/parse-community/Parse-SDK-Flutter/compare/flutter-4.0.0...flutter-5.0.0) (UNRELEASED)
1+
## [5.0.0](https://github.com/parse-community/Parse-SDK-Flutter/compare/flutter-4.0.0...flutter-5.0.0) (2023-05-14)
22

33
### BREAKING CHANGES
44

5-
* The minimum required Dart SDK version is 2.18.0 ([#867](https://github.com/parse-community/Parse-SDK-Flutter/pull/867))
5+
* The minimum required Dart SDK version is 2.18.0. ([#867](https://github.com/parse-community/Parse-SDK-Flutter/pull/867))
6+
* Upgrades the dependency `parse_server_sdk` to `5.x.x`. ([#868](https://github.com/parse-community/Parse-SDK-Flutter/pull/868))
67
* The deprecated parameter `vsync` from `AnimatedSize` is removed. ([#864](https://github.com/parse-community/Parse-SDK-Flutter/pull/864))
78

9+
### Features
10+
11+
* Upgrade `parse_server_sdk` to `5.x.x` ([#868](https://github.com/parse-community/Parse-SDK-Flutter/pull/868))
12+
813
### Bug Fixes
914

1015
* Incorrect Dart and Flutter SDKs compatibility range ([#867](https://github.com/parse-community/Parse-SDK-Flutter/pull/867))

packages/flutter/pubspec.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies:
1010
flutter:
1111
sdk: flutter
1212

13-
parse_server_sdk: ^4.0.0
13+
parse_server_sdk: ^5.0.0
1414
# Uncomment for local testing
1515
#parse_server_sdk:
1616
# path: ../dart
@@ -28,7 +28,6 @@ dependencies:
2828
sembast: ^3.4.0+6
2929
sembast_web: ^2.1.0+4
3030
path: ^1.8.2 # required for transitive use only
31-
platform: ^3.1.0
3231

3332
dev_dependencies:
3433
flutter_lints: ^2.0.1

0 commit comments

Comments
 (0)