Skip to content

Releases: infernojs/inferno

Inferno v7.3.0

13 Aug 19:43
Compare
Choose a tag to compare

Inferno-core

Inferno v7.2.1

25 Jul 19:48
Compare
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
Compare
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
Compare
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
Compare
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
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