TL;DR
A compatibility issue arose when the plugin datasette-export-database was pinned to an outdated version of Datasette, causing it to fail with newer versions. The plugin was updated to specify compatibility with datasette>=1.0a27, allowing it to work with all subsequent versions.
✦ Why It Matters
Engineers can now update Datasette without risking compatibility issues with the datasette-export-database plugin.
Key Takeaways
Full Summary
The datasette-export-database plugin, which facilitates exporting databases from Datasette, has released version 0.3a2. The previous version mistakenly pinned the dependency to datasette==1.0a27, making it incompatible with other versions of Datasette.
This update modifies the dependency to datasette>=1.0a27, allowing for broader compatibility. Such changes are crucial for developers who rely on plugins to ensure they can work with the latest features and fixes in Datasette.
This minor release highlights the importance of accurate dependency management in software development. By correcting this issue, users can now seamlessly integrate the plugin with various Datasette versions without encountering compatibility problems.
Related