Monday, July 15, 2024
3 changes · saas-17.3
Resolved issues and error corrections
Users who enter a new password that is shorter than the required minimum now see a clear error message instead of an unexpected system traceback. This improves the password change experience and avoids confusing error screens.
Original PR description
Before this PR: Attempting to change a password to a length shorter than the minimum requirement resulted in a traceback due to a syntax error in the validation message in commit [1]. After this PR: Setting a password shorter than the minimum length now throws a UserError. [1]: https://github.com/odoo/odoo/commit/c1f277a7d04d9d6035413e315556b41a44d0b5b2 task-3930129
This fixes an unreliable automated test in the Point of Sale area by removing a timing-sensitive check that was not needed. The change helps reduce false test failures, making development and releases more stable without changing customer-facing behavior.
Original PR description
The test was failing because it was trying to check if the line is to refund but sometime the test run the check to fast. We remove this check since the "Refund" button is clicked just after. So the check isn't necessary. RB err: 66471
The live chat window no longer shows the unread message banner when a chatbot is handling the conversation. This reduces unnecessary visual clutter because chatbot flows already pause for the visitor's next response.
Original PR description
The unread message banner helps users keep track of which messages they have read in a conversation. However, this does not make sense with the chat bot: the bot waits for the visitor's input at each step, so users do not need to remember where they left off when returning to the discussion. In this case, the banner is just unnecessary visual noise. This PR removes the banner when the chat bot handles the discussion with the visitor.