Thursday, March 6, 2025
3 changes · master
Resolved issues and error corrections
Users can now paste attachments into a Knowledge article comment without triggering a server error. This ensures the comment thread is prepared before the attachment upload starts, making the commenting experience smoother and more reliable.
Original PR description
Steps to Reproduce =============== 1. Go to the knowledge article 2. Insert a comment for any text 3. Paste an attachment It raises a server error Technical =============== As for the knowledge first comment's attachments, we patch the uploadData of attachment uploader hook. But the paste flow directly calls the uploadFiles. After this commit, we patch the uploadFiles to create thread before the attachments are uploaded. Follow-up fix of https://github.com/odoo/enterprise/pull/74871 Task-4331677
This update adjusts permissions so Odoo can properly remove the Worldline payment terminal support folder during IoT handler cleanup. It helps avoid maintenance or upgrade issues related to leftover Worldline files, with no expected change to everyday user workflows.
This fix reduces unnecessary repeated server requests in Odoo Studio when several actions happen close together. It helps keep the interface responsive and avoids extra backend load caused by small timing delays.
Original PR description
The community commit, adds an `onWillStart` to the `useService` hook that causes a very small delay. This commit modifies the `batched` function to prevent redundant server calls that could occur when multiple requests are made within a short time frame. Related to odoo/odoo#198539