-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Add support for provider version 6 #548
Conversation
This issue is so frustrating. Lots of plugin having the same error. |
@Ahmadre is there any update on this issue, since I too am overriding Provider to If you need another person to release updates to this library on your behalf and/or review PRs, then I'll be glad to volunteer. Please reach out to me at [email protected], since I already have a pub.dev account. |
Guys please take a look at the PR when you find time. |
@Ahmadre just a gentle reminder that this PR is awaiting approval, merging, and eventual release. Thank you in advance. |
@Ahmadre Really hoping this PR can be approved and merged soon, can't upgrade some of our dependencies cause of this single package. |
@Ahmadre can we please get another pub.dev release as a result of this change? Thanks in advance. |
@Ahmadre , any chance we can get another pub.dev release for this provider dependency update? I have several conflicts that are starting to arise due to this. |
@FCView and others interested. You can reference the commit also in your pubspec.yaml like this:
Not perfect but works until the next version is released. |
could you publish a new release, please? |
Please release! |
any news on when 1.2.3 will be released? |
@brianegan Please release. |
Allows Provider version 6 to be used in conjunction with Chewie.
Some libraries are starting to update to use v6 of provider (such as
flutter_bloc: ^7.2.0
) which throws the following error onpub get
:The breaking changes in the provider changelog only talk about optional providers of which Chewie doesn't use any so it should be safe to use provider 6 with chewie. Example app still appears to work as expected with provider v6. Have added
<7
to safeguard against breaking changes in future unreleased versions of Provider.Closes #530