Thursday, May 29, 2025
3 changes · master
Enhancements to existing features
This update refreshes sample HR data used in salary configuration, referrals, and country-specific payroll demos. It makes demo environments more consistent by reusing standard HR job roles instead of creating duplicate local payroll jobs.
Original PR description
- Added demo data in hr_contract_salary - Added more utm_source data in hr_referral - Archived Experienced Developer US job position in l10n_us_hr_payroll - Some additional demo data added in hr_contract_salary and removed job Technical Lead US and Experienced Developer US in l10n_us_payroll task-4677938
The WhatsApp module's security test was updated to stay aligned with a related change in how message authors are handled. This helps keep automated checks reliable and reduces the risk of false test failures during future updates.
Original PR description
PR community: https://github.com/odoo/odoo/pull/211868 Task-4675767
Grid view column headers now use locale-aware date formatting, so dates appear in the correct word order and punctuation for each language. This improves readability for international users, such as French users seeing “19 mai” instead of the English-style “mai 19”.
Original PR description
The headers of the columns in the Grid view use a fixed format, which is too restrictive for languages where the order of words changes, or where additional literals like commas may or may not be present. With this commit, we use the Intl API to ensure that we produce a valid result in all languages. For instance, French becomes: > lun. 19 mai instead of: > lun., mai 19 Task-4801503