Skip to content

Releases: infernojs/inferno

Inferno v7.4.0

28 Jan 19:05

Choose a tag to compare

Inferno-server

  • Adds support for rendering array from Component root. 9396ade

Inferno-compat

  • Removed always truthy conditions from Children methods fb9d5fe

Inferno v7.3.3

19 Nov 18:42

Choose a tag to compare

Inferno Router

  • History package updated to v4.10.1

Inferno Redux

  • Provider component typings fixed #1495

All internal dependencies updated

Inferno v7.3.2

08 Oct 19:02

Choose a tag to compare

Inferno core

  • Fixes an issue where inferno does not load in IE8 #1491

Inferno v7.3.1

22 Aug 15:05

Choose a tag to compare

Inferno-hydration

  • Fixes an issue where hydrating forwardRef Component crashed #1486 646753c

Inferno v7.3.0

13 Aug 19:43

Choose a tag to compare

Inferno-core

Inferno v7.2.1

25 Jul 19:48

Choose a tag to compare

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

24 Jul 14:29

Choose a tag to compare

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

30 May 19:01

Choose a tag to compare

Inferno-core

  • Fixes a bug where extending forwardRef component was not possible #1473

Inferno-devtools

  • Fixes a bug where inferno-devtools did not start #1479

Inferno 7.1.12

24 Apr 21:07

Choose a tag to compare

Inferno core

  • Fixes an issue where value of Inferno.createRef() did not update correctly #1465 #1466
  • Fixes an issue where <select> element selectIndex attribute was rendered to DOM #1468

Inferno v7.1.11

24 Mar 08:32

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;