Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: parse-community/Parse-SDK-Flutter
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dart-5.0.0
Choose a base ref
...
head repository: parse-community/Parse-SDK-Flutter
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dart-5.1.0
Choose a head ref
  • 4 commits
  • 9 files changed
  • 3 contributors

Commits on May 13, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7faf800 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    518f768 View commit details
  3. refactor: Remove deprecated property window from dart:ui in favor…

    … of `PlatformDispatcher` (#878)
    Nidal-Bakir authored May 13, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9ca8721 View commit details

Commits on May 14, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8dce6fc View commit details
4 changes: 2 additions & 2 deletions .github/workflows/release-automated.yml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ jobs:
uses: actions/checkout@v3
- name: Publish dart package
if: ${{ startsWith(github.ref_name, 'dart') }}
uses: k-paxian/dart-package-publisher@v1.4
uses: k-paxian/dart-package-publisher@v1.5.1
with:
accessToken: ${{ secrets.PUBDEV_GOOGLE_ACCOUNT_ACCESS_TOKEN }}
refreshToken: ${{ secrets.PUBDEV_GOOGLE_ACCOUNT_REFRESH_TOKEN }}
@@ -19,7 +19,7 @@ jobs:
dryRunOnly: false
- name: Publish flutter package
if: ${{ startsWith(github.ref_name, 'flutter') }}
uses: k-paxian/dart-package-publisher@v1.4
uses: k-paxian/dart-package-publisher@v1.5.1
with:
accessToken: ${{ secrets.PUBDEV_GOOGLE_ACCOUNT_ACCESS_TOKEN }}
refreshToken: ${{ secrets.PUBDEV_GOOGLE_ACCOUNT_REFRESH_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/release-manual.yml
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ jobs:
ref: ${{ github.event.inputs.ref }}
- name: Publish dart package
if: github.event.inputs.package == 'dart'
uses: k-paxian/dart-package-publisher@v1.4
uses: k-paxian/dart-package-publisher@v1.5.1
with:
accessToken: ${{ secrets.PUBDEV_GOOGLE_ACCOUNT_ACCESS_TOKEN }}
refreshToken: ${{ secrets.PUBDEV_GOOGLE_ACCOUNT_REFRESH_TOKEN }}
@@ -37,7 +37,7 @@ jobs:
dryRunOnly: false
- name: Publish flutter package
if: github.event.inputs.package == 'flutter'
uses: k-paxian/dart-package-publisher@v1.4
uses: k-paxian/dart-package-publisher@v1.5.1
with:
accessToken: ${{ secrets.PUBDEV_GOOGLE_ACCOUNT_ACCESS_TOKEN }}
refreshToken: ${{ secrets.PUBDEV_GOOGLE_ACCOUNT_REFRESH_TOKEN }}
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
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
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:
@@ -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
2 changes: 2 additions & 0 deletions packages/flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,10 +3,12 @@
### BREAKING CHANGES

* The minimum required Dart SDK version is 2.18.0 ([#867](https://github.com/parse-community/Parse-SDK-Flutter/pull/867))
* The deprecated parameter `vsync` from `AnimatedSize` is removed. ([#864](https://github.com/parse-community/Parse-SDK-Flutter/pull/864))

### Bug Fixes

* Incorrect Dart and Flutter SDKs compatibility range ([#867](https://github.com/parse-community/Parse-SDK-Flutter/pull/867))
* Remove deprecated parameter `vsync` from `AnimatedSize` ([#864](https://github.com/parse-community/Parse-SDK-Flutter/pull/864))

## [4.0.0](https://github.com/parse-community/Parse-SDK-Flutter/compare/flutter-3.1.4...flutter-4.0.0) (2023-03-19)

6 changes: 4 additions & 2 deletions packages/flutter/lib/parse_server_sdk_flutter.dart
Original file line number Diff line number Diff line change
@@ -2,9 +2,9 @@ library flutter_parse_sdk_flutter;

import 'dart:async';
import 'dart:io';
import 'dart:ui' as ui;

import 'package:connectivity_plus/connectivity_plus.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:package_info_plus/package_info_plus.dart';
import 'package:parse_server_sdk/parse_server_sdk.dart' as sdk;
@@ -78,7 +78,9 @@ class Parse extends sdk.Parse
appVersion: appVersion,
appPackageName: appPackageName,
locale: locale ??
(sdk.parseIsWeb ? ui.window.locale.toString() : Platform.localeName),
(sdk.parseIsWeb
? PlatformDispatcher.instance.locale.toString()
: Platform.localeName),
liveQueryUrl: liveQueryUrl,
clientKey: clientKey,
masterKey: masterKey,
5 changes: 1 addition & 4 deletions packages/flutter/lib/src/utils/parse_live_list.dart
Original file line number Diff line number Diff line change
@@ -219,8 +219,7 @@ class ParseLiveListElementWidget<T extends sdk.ParseObject>
}

class _ParseLiveListElementWidgetState<T extends sdk.ParseObject>
extends State<ParseLiveListElementWidget<T>>
with SingleTickerProviderStateMixin {
extends State<ParseLiveListElementWidget<T>> {
late sdk.ParseLiveListElementSnapshot<T> _snapshot;
StreamSubscription<T>? _streamSubscription;

@@ -272,8 +271,6 @@ class _ParseLiveListElementWidgetState<T extends sdk.ParseObject>
sizeFactor: widget.sizeFactor,
child: AnimatedSize(
duration: widget.duration,
// ignore: deprecated_member_use
vsync: this,
child: widget.childBuilder(context, _snapshot),
),
);
2 changes: 1 addition & 1 deletion packages/flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: parse_server_sdk_flutter
description: The Flutter SDK for Parse Platform (https://parseplatform.org)
version: 4.0.0
version: 5.0.0
homepage: https://github.com/parse-community/Parse-SDK-Flutter

environment: