Store normalized vnodes in the dom element. Add render tests. (#2266)

* Store normalized vnodes in the dom element. Add render tests.

* Add entry to change-log
This commit is contained in:
spacejack 2018-10-28 17:17:24 -04:00 committed by Isiah Meadows
parent b9c3c6c9c8
commit ea0ce7f762
3 changed files with 29 additions and 2 deletions

View file

@ -60,6 +60,7 @@
- render/hooks: fixed an ommission that caused `oninit` to be called unnecessarily in some cases [#1992](https://github.com/MithrilJS/mithril.js/issues/1992)
- docs: tweaks: ([#2104](https://github.com/MithrilJS/mithril.js/pull/2104) [@mikeyb](https://github.com/mikeyb), [#2205](https://github.com/MithrilJS/mithril.js/pull/2205), [@cavemansspa](https://github.com/cavemansspa), [#2265](https://github.com/MithrilJS/mithril.js/pull/2265), [@isiahmeadows](https://github.com/isiahmeadows))
- render/core: avoid touching `Object.prototype.__proto__` setter with `key: "__proto__"` in certain situations ([#2251](https://github.com/MithrilJS/mithril.js/pull/2251))
- render/core: Vnodes stored in the dom node supplied to `m.render()` are now normalized [#2266](https://github.com/MithrilJS/mithril.js/pull/2266)
---