parse-community / Parse-SDK-Flutter

The Dart/Flutter SDK for Parse Platform
https://parseplatform.org
Apache License 2.0
573 stars 188 forks source link

Update parse_server_sdk http version from ^0.13.5 to last version(http: ^1.2.1) #988

Closed Kora3 closed 6 months ago

Kora3 commented 6 months ago

New Feature / Enhancement Checklist

Current Limitation

Version 0.13.5 of flutter http is more than a year old, because of this it is impossible to install other packages using a newer version of http, like for example pro_image_editor cannot install because parse_server_sdk_flutter uses an old version of http, and we cannot install recent versions of flutter_map, google_fonts, flutter_native_splash because of the same reason.

Feature / Enhancement Description

Update parse_server_sdk_flutter http to last (http: ^1.2.1)

Example Use Case

Alternatives / Workarounds

parse-github-assistant[bot] commented 6 months ago

Thanks for opening this issue!

mbfakourii commented 6 months ago

According to our support policy, we currently cannot cancel our support for versions below 3 darts (Until May 2024).

My suggestion is to use dependency_overrides. like this

dependency_overrides:
  http: ^1.2.1
Kora3 commented 6 months ago

Oki thanks

Kora3 commented 6 months ago

I tried and it's work👍, thank you