Releases: infernojs/inferno
Releases · infernojs/inferno
Inferno v7.3.0
Inferno-core
- Adds root level array support to
createPortal
- Synthetic events are now propagated from shadow-dom #1430 This requires browser to support shadow-dom https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_shadow_DOM
- Code clean up
Inferno v7.2.1
Inferno-core
- Fixes an issue caused by Release 7.2.0 where events were not updated correctly be677f9
- Simplified and optimized Synthetic event patch routines
Inferno v7.2.0
Inferno-core
- Adds support for defaultHooks when using forwardRef functional components
- Fixes performance regression between 7.0.2 and 7.1.13
General
- All dependencies updated
- UglifyJS has been replaced with TerserJS
Inferno v7.1.13
Inferno 7.1.12
Inferno v7.1.11
Inferno-core
Example:
class Foo extends Component {
// just added to force the warnings
static getDerivedStateFromProps() { }
componentWillMount() { }
componentWillReceiveProps() { }
componentWillUpdate() { }
render() {
return <div>Foo</div>;
}
}
Foo.prototype.componentWillMount.__suppressDeprecationWarning = true;
Foo.prototype.componentWillReceiveProps.__suppressDeprecationWarning = true;
Foo.prototype.componentWillUpdate.__suppressDeprecationWarning = true;
Inferno v7.1.10
Inferno-test-utils
Removed props.children
from snapshot when using inferno-compat. Fixes #1451
Inferno v7.1.9
Inferno core
- Changed opencollective script to use
opencollective-postinstall
package to reduce inferno package size #1450
Inferno v7.1.8
Inferno core
- Fixes an issue where vNode key could change after multiple normalizations #1447
Inferno v7.1.7
All packages
Fixes an issue where not all typing information was published to npm
- versions 7.1.3 - 7.1.6 skipped due to this error