-
-
Notifications
You must be signed in to change notification settings - Fork 661
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Fixed: Deprecated API usage #911
Conversation
Are there any further points which need to be clarified to merge this? |
@erdzan12 I am not a repo contributor but I can approve only 😂 |
No, that's the only thing. |
Would be nice to see this progressing. Any way I can help? |
Any idea why this is not progressing? |
@renefloor Could you check this PR? Thanks |
any update on this? |
+1 When will this be merged and released in a new version? |
@renefloor @amorenew any chance this project gets some love? |
This fix being applied would be wonderful. It eliminates an enormous number of errors in image-heavy flutter web sites. |
Package is abandoned. |
@amorenew @amrgetment is not a maintainer I just tried to approve but as both accounts are not a collaborator then it won’t affect the PR |
We need this merged ... fix is simple and no risk. Needs to go in! |
@BeMacized or @martijn00 since this repository is part of Baseflow, can you help out here? |
Ok awesome -- we have 2 reviews here! --- Now we "just" need to press the "Merge" button and make a release .... Anyone? |
@mvanbeusekom we need a review and merge for this PR |
This comment was marked as off-topic.
This comment was marked as off-topic.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Please tell, which stable release version that will have this fix included? |
It has been released in version 1.2.0 of the cached_network_image_web package. This as a dependency of the cached_network_image, so running |
@mvanbeusekom this looks wrong to me since the current version released is v3.3.1 which is from december 31, 2023. I guess the correct tag version would be Also the v1.2.0 tag is named chached_network_image_web_v1.2.0 which is not a valid semversion |
Hi @c-seeger, The cached_network_image package (current version 3.3.1) internally relies on the cached_network_image_web package (current version 1.2.0) to provide support for the web platform. If you check the pubspec.yaml of the cached_network_image package you'll see the following dependency: dependencies:
...
cached_network_image_web: ^1.1.1 The Regarding the tag, this is just a tag and since the repository contains multiple packages we need to differentiate between which version of which package is updated, hence the name of the package in front of the version number in the tag name. If you want to know more of how this works exactly read up on the Federated architecture on the Flutter documentation. |
Awesome thank you for clarifying this 👍 |
✨ What kind of change does this PR introduce? (Bug fix, feature, docs update...)
Removed deprecated method
webOnlyInstantiateImageCodecFromUrl
, usedcreateImageCodecFromUrl
Warning, about to remove
webOnlyInstantiateImageCodecFromUrl
method🆕 What is the new behavior (if this is a feature change)?
Replaced with
createImageCodecFromUrl
💥 Does this PR introduce a breaking change?
No
🐛 Recommendations for testing
Yes
📝 Links to relevant issues/docs
#906
🤔 Checklist before submitting