Skip to content

Releases: odoo/owl

[REL] v1.4.0

06 Jul 08:28
Compare
Choose a tag to compare

v1.4.0

This release is larger than usual: lot of small fixes, and a few improvements as
well.

  • config: change debug mode warning to info
  • fix: add support for callable expression in event handler (for example, t-on-click="some.function")
  • fix: allow specific props to override generic props (in t-props)
  • fix: add support for short object description in inline expressions: { hey }
  • fix: add support for t-att-value on <textarea/> and <select/>
  • fix: slots: issue with scoping in nested loops
  • fix: slots: default slot is not lost in some cases
  • fix: do not shadow an error in case the finalizing code fails
  • imp: qweb: allow multiple class in class attribute object notation: t-att-class="{'a b': value}"
  • imp: better detection for dynamic component change (less need for t-key)
  • fix: router: allow querystrings in path
  • fix: qweb: add support for template strings
  • fix: qweb: make sure nodes with t-transition are removed in all cases

[REL] v1.3.2

18 Jun 08:42
Compare
Choose a tag to compare

v1.3.2

Fixes

  • components: correctly propagate errors to parent

[REL] v1.3.1

10 Jun 08:36
Compare
Choose a tag to compare

v1.3.1

Fixes

  • components: fix issue with t-call in nested t-slot (parent component was incorrect)

[REL] v1.3.0

04 Jun 12:19
Compare
Choose a tag to compare

v1.3.0

Improvements

  • qweb: add support for t-tag directive

[REL] v1.2.6

19 May 10:28
Compare
Choose a tag to compare

v1.2.6

Fixes

  • router: add support for arbitrary param placements in paths

[REL] v1.2.5

18 May 08:01
Compare
Choose a tag to compare

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

10 Feb 13:24
Compare
Choose a tag to compare

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

19 Jan 14:28
Compare
Choose a tag to compare

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

14 Jan 08:10
Compare
Choose a tag to compare

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

08 Jan 14:26
Compare
Choose a tag to compare

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