Skip to content

Releases: odoo/owl

[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

[REL] v1.0.12

20 Oct 15:35
Compare
Choose a tag to compare

Owl v1.0.12

Bug fixes

  • fix: properly handle named t-slots inside named t-slots
  • fix: do not render comments as text in t-raw
  • fix: allow dynamic template in t-call
  • fix: correctly handle top-level t-call with body
  • fix: correct cause of non determinism in tests

Tooling improvements

  • setup github actions for CI
  • improve owl bundling pipeline
  • add enableTransitions flag in owl configuration
  • add prettier to github CI

v1.0.11

08 Oct 08:51
Compare
Choose a tag to compare

Owl v1.0.11

  • improve release script to make sure we get correct code on npm

v1.0.10

18 Sep 13:18
Compare
Choose a tag to compare

v1.0.10

Bug fixes!

  • qweb fix: scoping issue with t-call in t-foreach
  • qweb fix: issue with t-set with a body in a t-call
  • qweb fix: handle input value attribute as a property
  • qweb fix: allow t-call on arbitrary nodes
  • qweb fix: add "indeterminate" to special input properties
  • component fix: allow using t-model with bracketed expression
  • component fix: properly validate multiple props
  • component fix: issue with higher order component, and t-keys
  • component fix: issue with unmounted children that should be destroyed
  • component fix: make concurrent renderings more robust in some cases
  • component fix: allow using vars with body as props
  • observer fix: do not proxify promises
  • test infrastructure: stop mocking requestanimation frame

v1.0.9

02 Jun 08:40
Compare
Choose a tag to compare

v1.0.9

  • qweb fix: add support for svg namespace in t-raw
  • qweb fix: properly handle subtemplates in shared templates

v1.0.8

18 May 07:09
Compare
Choose a tag to compare

v1.0.8

  • qweb fix: do not override t-att-class with class attribute in some cases
  • component fix: refuse to mount a destroyed component
  • hooks type improvement: useRef is now generic, and can capture the type of a component
  • qweb fix: t-esc inside t-call using outside t-set

v1.0.7

17 Apr 13:53
Compare
Choose a tag to compare

v1.0.7

This release only add the iife (immediately invoked function expression) build
to the npm package. This is useful when another project want to directly link
to the iife build, instead of the commonjs version.