Skip to content

Latest commit

 

History

History
82 lines (62 loc) · 2.01 KB

CHANGELOG.md

File metadata and controls

82 lines (62 loc) · 2.01 KB

Changelog

v3.4.0

  • Add a shouldUpdate option, which can control when and if an async computed property updates.

v3.3.0

  • New feature: lazily computed properties.

v3.2.1

  • Fix bugs with dev dependencies and the new package-lock.json file.
  • Tests on Travis now also run on Node 8.

v3.2.0

  • Introduce watch feature.

v3.1.3

  • Fix a bug where extra properties on Object.prototype would be considered relevent to vue-async-computed.

v3.1.1

  • Fix bug where vue-async-computed wouldn't find async computed properties that were further up the prototype chain.

v3.1.0

  • Add option for setting a global default value
  • Improve test coverage
  • Async computed properties that return a non-promise value no longer cause an error to be thrown. Instead that value is automaticly promoted to a promise with Promise.resolve.

v3.0.1

  • More test cases

v3.0.0

  • Pass the raw error to the error handler when passed the useRawError option.
  • Allow default values to be given as functions.

v2.1.1

  • Automatic installation when used in a script tag.

v2.1.0

  • Allow object syntax for defining computed properties.
  • Enable custom default values.

v2.0.0

  • Now compatible with Vue 2.0.

v1.4.0

  • Add CommonJS support.

v1.2.0

  • Use the same strategy to merge asyncComputed objects as regular computed objects.

v1.1.0

  • Handle errors in async computed properties.

v1.0.0

  • Initial public version of the library.