Releases: odoo/owl
Releases · odoo/owl
[REL] v1.2.6
v1.2.6
Fixes
- router: add support for arbitrary param placements in paths
[REL] v1.2.5
v1.2.5
Fixes
- qweb: correct order for component class lookup (most specific to least specific)
v1.2.4: [FIX] component: various issues while mounting manually components
v1.2.4
Fixes
- misc documentation fixes
- qweb: prevent collision with builtin object properties
- components: handle properly some situations where components are unmounted/remounted
Improvements
- add
setup
lifecycle hook (very useful in odoo to allow monkeypatching components) - component can now trigger event handlers even if unmounted
v1.2.3: [FIX] crash when rendering component before mounting
v1.2.3
This is just another small bug fix release, because we need it in Odoo.
Fix: prevent crash when rendering a component before mounting it
[REL] v1.2.2
v1.2.2
This is just a small bug fix release, because we need it in Odoo.
Bug fix: allow renderings for detached components. Before this release, Owl
ignored renderings in some cases if a component is detached. We now still render
it, because it is important in some cases.
[REL] v1.2.1
Owl v1.2.1
Changes
- fix: issue with components with shouldUpdate and remounting not rendering
- fix: issue with connected components using onUpdate callback not rendering
- fix: error in todoapp example code
[REL] v1.2.0
Owl v1.2.0
Changes
- translation fix for terms surrounded by spaces
- fix: properly remount components with shouldUpdate=false
- add: add two new generic hooks:
useEnv
anduseComponent
- fix: do not skip rendering in components using store and local state (in some cases)
Note that the last change is a pretty significant change: component connected to
a store should be very careful if the data that they represent is deleted, because
they will always be rendered with the current state of the store.
[REL] v1.1.1
Owl v1.1.1
Changes
- export
browser
object to make utility functions testable - minor doc improvements and corrections
- fix: make sure owl does not crash in iframe in private mode
v1.1.0: [IMP] qweb: the t-slot directive is now dynamic
Owl v1.1.0
Improvements
- owl: add a new
mount
method - qweb: the t-slot directive is now dynamic
[REL] v1.0.13
Owl v1.0.13
Bug fixes
- fix: slots: prevent infinite loop in some cases