Skip to content

Releases: odoo/owl

[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

[REL] v1.2.0

14 Dec 12:24
Compare
Choose a tag to compare

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 and useComponent
  • 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

20 Nov 10:02
Compare
Choose a tag to compare

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

31 Oct 10:20
Compare
Choose a tag to compare

Owl v1.1.0

Improvements

  • owl: add a new mount method
  • qweb: the t-slot directive is now dynamic

[REL] v1.0.13

26 Oct 07:32
Compare
Choose a tag to compare

Owl v1.0.13

Bug fixes

  • fix: slots: prevent infinite loop in some cases