Skip to content

feat: Downgrade collection dependency to ^1.16.0 for compatibility with Flutter >=3.3 #880

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
May 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/dart/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [5.1.0](https://github.com/parse-community/Parse-SDK-Flutter/compare/dart-5.0.0...dart-5.1.0) (2023-05-14)

### Features

* Downgrade collection dependency to ^1.16.0 for compatibility with Flutter >=3.3 ([#880](https://github.com/parse-community/Parse-SDK-Flutter/pull/880))

## [5.0.0](https://github.com/parse-community/Parse-SDK-Flutter/compare/dart-4.0.2...dart-5.0.0) (2023-05-14)

### BREAKING CHANGES
Expand Down
2 changes: 1 addition & 1 deletion packages/dart/lib/src/base/parse_constants.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
part of flutter_parse_sdk;

// Library
const String keySdkVersion = '5.0.0';
const String keySdkVersion = '5.1.0';
const String keyLibraryName = 'Flutter Parse SDK';

// End Points
Expand Down
4 changes: 2 additions & 2 deletions packages/dart/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: parse_server_sdk
description: The Dart SDK for Parse Platform (https://parseplatform.org)
version: 5.0.0
version: 5.1.0
homepage: https://github.com/parse-community/Parse-SDK-Flutter

environment:
Expand All @@ -24,7 +24,7 @@ dependencies:
mime_type: ^1.0.0
timezone: ^0.9.1
universal_io: ^2.2.0
collection: ^1.17.1
collection: ^1.16.0

dev_dependencies:
lints: ^2.0.1
Expand Down