@v4fire/client
Version:
V4Fire client core library
64 lines (39 loc) • 1.2 kB
Markdown
Changelog
=========
**Tags:**
- :boom: [Breaking Change]
- :rocket: [New Feature]
- :bug: [Bug Fix]
- :memo: [Documentation]
- :house: [Internal]
- :nail_care: [Polish]
# v3.47.4 (2023-05-29)
### :bug: Bug Fix
* Fixed a bug when observing fields that are redefined from props
# v3.47.2 (2023-05-18)
### :bug: Bug Fix
* Fixed a bug when the overridden getter with cache had a value equal to the parent's getter value
# v3.0.0-rc.199 (2021-06-16)
### :bug: Bug Fix
* Fixed a bug when the `cache: false` predicate is ignored if provided `dependencies`
# v3.0.0-rc.88 (2020-10-13)
### :rocket: New Feature
* Added `functionalWatching` to field decorators
# v3.0.0-rc.84 (2020-10-09)
### :house: Internal
* Now all tied fields are collected within `meta.tiedFields`
# v3.0.0-rc.37 (2020-07-20)
### :boom: Breaking Change
* Now all accessors with dependencies are cacheable by default
### :rocket: New Feature
* Added support of mounted watchers
```js
class bFoo {
@computed({watchable: true})
get remoteState(): typeof anotherWatcher {
return anotherWatcher;
}
}
```
### :house: Internal
* Fixed ESLint warnings