Daily updates from Odoo
Wednesday, October 9, 2019
2 changes
Enhancements to existing features
Odoo now prevents internal reference IDs from being saved with spaces, which helps avoid problems when data is imported, exported, or linked across the system. This improves data reliability by blocking a known source of errors before it can affect business processes.
Original PR description
This introduces a new constraint to the `ir.model.data` model, to disallow external IDs containing spaces. Those cases may cause issues and should be avoided. For more information about why an external ID containing spaces is a bad idea, see: - https://github.com/odoo/odoo/commit/3c568aec0b46 - https://github.com/odoo/odoo/issues/25408 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This updates Odoo's required image-processing library to match the version available in the current Debian release. It keeps deployments aligned with supported system packages and prepares Odoo to use newer image-handling capabilities in future improvements.
Original PR description
[IMP] packages: match PIL to debian version https://packages.debian.org/buster/python-pil As of today, python-pillow is at 5.4 in the latest debian release This allows to update the deprecate the older versions Newer versions have new features like the exif_transpose method in 6.0 as discussed at #37448 Forward-Port-Of: odoo/odoo#38189