html-editor-enhanced
html-editor-enhanced copied to clipboard
[FEATURE] Dependency Conflict: html_editor_enhanced Incompatible with file_picker ^8.1.5 and lints ^5.1.0
Is your feature request related to a problem? Please describe.
I am facing a dependency conflict issue while resolving packages in my Flutter project. Specifically, the conflict arises between html_editor_enhanced, file_picker, and lints.
When running flutter pub get, I encounter the following error:
Resolving dependencies...
Because html_editor_enhanced >=2.4.0 <2.5.0 depends on file_picker ^4.2.0 and no versions of html_editor_enhanced match >2.5.1 <2.6.0, html_editor_enhanced
>=2.4.0 <2.5.0-∞ or >2.5.1 <2.6.0-∞ requires file_picker ^4.2.0.
And because html_editor_enhanced >=2.5.0 <2.5.1 depends on file_picker ^4.6.0 and html_editor_enhanced >=2.6.0 depends on lints ^4.0.0, html_editor_enhanced
>=2.4.0 <2.5.1-∞ or >2.5.1 requires lints ^4.0.0 or file_picker ^4.2.0.
And because html_editor_enhanced 2.5.1 depends on file_picker ^5.2.0+1 and quest depends on file_picker ^8.1.5, html_editor_enhanced >=2.4.0 requires lints
^4.0.0.
So, because quest depends on both html_editor_enhanced ^2.4.0 and lints ^5.1.0, version solving failed.
Failed to update packages.
Describe the solution you'd like I would like to:
Ensure that html_editor_enhanced is compatible with the latest version of file_picker (^8.1.5) and lints (^5.1.0).
Have updated dependency constraints in html_editor_enhanced to avoid similar conflicts in future updates.
Additional context
My project depends on the following versions:
html_editor_enhanced: ^2.4.0
file_picker: ^8.1.5
lints: ^5.1.0
This issue blocks me from using the latest versions of the dependencies.