All Versions
36
Latest Version
Avg Release Cycle
111 days
Latest Release
1556 days ago

Changelog History
Page 1

  • v6.1.0 Changes

    June 08, 2020

    ๐Ÿ”‹ Features

    • 0๏ธโƒฃ Re-add Helmet as a default export (#547)
      • Note: You may now choose import Helmet or import {Helmet}
    • โšก๏ธ Updates react-fast-compare to get support for Preact (#559)
  • v6.0.0 Changes

    January 03, 2019

    ๐Ÿ”‹ Features

    • ๐Ÿšš Bundle with Rollup instead of Webpack - As a result, the default export was removed and Helmet must now be imported as a named component - import {Helmet} from "react-helmet" (#395)
    • Replace deepEqual with isEqual (#402)
  • v6.0.0-beta.2 Changes

    January 27, 2020
  • v6.0.0-beta Changes

    December 07, 2018
  • v5.2.0 Changes

    August 29, 2017

    ๐Ÿ”‹ Features

    • โšก๏ธ Adds support for synchronously updated tags (#297) (6a3d3bf), closes #291

    ๐Ÿ› Bug Fixes

    • ๐Ÿšš Remove unexpected comma in server-rendered title (#289) (66b8212), closes #286
    • Replace requestIdleCallback with requestAnimationFrame for a more consistent DOM write cycle. (#307) (a2323ad)
  • v5.1.3 Changes

    May 18, 2017

    ๐Ÿ› Bug Fixes

    • โž• Add support for renderable Arrays of strings (#275) (aad5457), closes #272
  • v5.0.3 Changes

    April 10, 2017

    ๐Ÿ› Bug Fixes

  • v5.0.2 Changes

    March 28, 2017

    ๐Ÿ› Bug Fixes

  • v5.0.1 Changes

    March 24, 2017

    ๐Ÿ› Bug Fixes

    • ๐Ÿ– handle falsy children values (#256) (4a60765)
  • v5.0.0 Changes

    March 21, 2017

    ๐Ÿ”‹ Features

    • New Simplified API (fully backward-compatible) - Helmet now takes plain HTML tags for the majority of the API with just a few remaining props for Helmet - retaining titleTemplate, defaultTitle, onChangeClientState, and one new - encodeSpecialCharacters - refer to README for details. Directly passing Helmet props will be deprecated in the future. (#246)
    • requestIdleCallback utilized to consolidate DOM changes and makes these non-blocking for things like animations. Fixes first client-side render not matching server-side render. Maintains one DOM change between route changes on the client-side as well. (#248)
    • On server-side, Helmet.renderStatic() aliased to Helmet.rewind() for more clarity. rewind will be deprecated in the future.
    • Yarn support