Skip to content

Releases: infernojs/inferno

Inferno v7.1.11

24 Mar 08:32
Compare
Choose a tag to compare

Inferno-core

  • Adds feature to silent lifecycle deprecation messages #1461 #1458

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

11 Mar 16:33
Compare
Choose a tag to compare

Inferno-test-utils

Removed props.children from snapshot when using inferno-compat. Fixes #1451

Inferno v7.1.9

20 Feb 17:44
Compare
Choose a tag to compare

Inferno core

  • Changed opencollective script to use opencollective-postinstall package to reduce inferno package size #1450

Inferno v7.1.8

19 Feb 20:40
Compare
Choose a tag to compare

Inferno core

  • Fixes an issue where vNode key could change after multiple normalizations #1447

Inferno v7.1.7

11 Feb 11:32
Compare
Choose a tag to compare

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

Inferno v7.1.2

06 Feb 20:16
Compare
Choose a tag to compare

Inferno core

  • Moved isPropagationStopped & isDefaultPrevented methods from inferno-compat to inferno-core synthetic events only. This fixes compatibility issue between inferno-compat and video.js - e6666bd

Inferno router

  • Fixes an issue where Switch component did not render nested-array children correctly #1441

Inferno v7.1.1

27 Jan 23:05
Compare
Choose a tag to compare

Inferno core

  • Optimizes LIS algorithm performance #1438

Inferno v7.1.0

21 Jan 20:02
Compare
Choose a tag to compare

Inferno core

  • Non synthetic events are now using addEventListener API instead of directly assigning event callbacks to html node. This adds support for events which have non standard inline API for example: transitionend
    https://developer.mozilla.org/en-US/docs/Web/Events/transitionend
  • Fixes a bug where forwardRef -Component got wrong ref parmeter during patch. #1436
  • Adds support for selectIndex -property for select elements. #1425
  • All internal dependencies updated and minor code clean up

Inferno v7.0.5

27 Dec 10:03
Compare
Choose a tag to compare

Typescript

  • Fixes an issue where Functional component props.children was not assignable to JSX node #1428

Internal

  • Dependencies updated
  • Typo fixed in Readme #1427

Inferno v7.0.4

13 Dec 18:35
Compare
Choose a tag to compare

Inferno core

  • This release fixes an issue where vNode tree might get re-mounted when VNode is passed as reference. #1426
  • Internal development dependencies updated