Odoo Release Updates
Every commit to Odoo Community and Enterprise, parsed and categorized. Never miss a bug fix, improvement, or new feature.
Activity
2026-04-28
2026-04-24
[FIX] *: fix typo: "occured" -> "occurred"
2026-04-20
2026-04-15
[FIX] web_studio: reportEditor: prevent auto inserts between layout's sections
2026-04-14
2026-04-13
2026-04-10
[FIX] *: remove undeterministicTour key
2026-04-07
[IMP] web_enterprise, *: enable command palette via home menu on touch
[REF] html_editor, *: improve createBaseContainer handling of empty blocks
2026-04-06
[FIX] web_studio: prevent error on saving empty xml in report source editor
2026-04-03
2026-04-02
[REF] *: rename remaining t-ref into t-custom-ref
2026-03-28
[FIX] {test_}web_studio: fix studio export of properties
[FIX] web_studio: Remove o_web_studio_approval_more from mobile device
[FIX] *: pass fill model correctly when creating fields
2026-03-23
This commit refactors Odoo's tracking API to simplify how addons generate and log field changes across models. It introduces new methods like _track_add (for manual tracking on current model) and _track_record (for logging changes to parent models), removes low-level data manipulation requirements, and adds a mail.track.mixin to allow tracking without inheriting from mail.thread. The changes include comprehensive tests covering various tracking use cases and API documentation updates to reduce confusion around tracking structures.
[IMP] mail: cleanup and test tracking usage
This commit systematically adds `.this` prefixes to template variable references across multiple Odoo modules in preparation for OWL3 framework compatibility. The migration changes unqualified component properties, state variables, and method references in XML templates to explicitly use `.this` notation, ensuring templates correctly target component instance members rather than template scope variables. This is a large-scale refactoring applied across accounting, documents, appointment, and knowledge modules to maintain compatibility with OWL3's stricter variable scoping requirements.
[REF] *: run rendering context migration script entire codebase
2026-03-20
This commit systematically adds ".this" prefix to all template variable references across multiple Odoo modules in preparation for OWL3 framework migration. The changes ensure that component instance variables (props, state, methods) are properly scoped by explicitly referencing "this" in inline XML templates, which will become a requirement in OWL3 to avoid variable resolution ambiguity and improve template clarity.
[REF] *: run rendering context migration script on inline xml