All Versions
14
Latest Version
Avg Release Cycle
54 days
Latest Release
1329 days ago

Changelog History
Page 1

  • v5.0.0-beta.1 Changes

    August 29, 2020

    ๐Ÿ’ฅ BREAKING CHANGES:

    • โœ‚ removed oldLocationChangePayload flag

      import { createReduxHistoryContext, reachify } from "redux-first-history";import { createWouterHook } from "redux-first-history/wouter";import { createBrowserHistory } from "history";const { createReduxHistory, routerMiddleware, routerReducer } = createReduxHistoryContext({ history: createBrowserHistory(), });export const history = createReduxHistory(store);export const reachHistory = reachify(history);export const wouterUseLocation = createWouterHook(history);

  • v4.6.0-beta.1 Changes

    February 02, 2020
    • ๐Ÿ‘Œ support history v5.0.0
    • ๐Ÿ‘Œ support react-router v6.0.0 (add listenObject: true options )
      ๐Ÿš€ https://github.com/ReactTraining/react-router/releases/tag/v6.0.0-alpha.1

      import { createReduxHistoryContext, reachify } from "redux-first-history";import { createWouterHook } from "redux-first-history/wouter";import { createBrowserHistory } from "history";const { createReduxHistory, routerMiddleware, routerReducer } = createReduxHistoryContext({ history: createBrowserHistory(), listenObject: true, // support react-router v6.0 });export const history = createReduxHistory(store);export const reachHistory = reachify(history);export const wouterUseLocation = createWouterHook(history);

  • v4.5.0 Changes

    January 24, 2020
    • ๐Ÿ‘Œ support imperatively navigate from @reach/routerimport { navigate } from '@reach/router'`

    usage:

    import { createBrowserHistory } from 'history';import { globalHistory } from '@reach/router';const { createReduxHistory, routerMiddleware, routerReducer } = createReduxHistoryContext({ history: createBrowserHistory(), //others options if needed reachGlobalHistory: globalHistory });
    
  • v4.2.6 Changes

    January 16, 2020

    ๐Ÿ›  fixed #25

  • v4.2.5 Changes

    November 23, 2019

    ๐Ÿ‘Œ support batch options:
    โšก๏ธ a batch function for batching states updates with history updates. Prevent some "edge case" top-down updates on react : usage import { unstable_batchedUpdates } from 'react-dom'; batch = unstable_batchedUpdates

  • v4.2.0 Changes

    November 13, 2019
    • โž• add option "savePreviousLocations", see readme.
    • โž• add ESM build with rollup
    • ๐Ÿ›  fix @reach/router types
  • v4.1.1 Changes

    October 18, 2019

    v4.1.1 - fix history.block

  • v4.1.0 Changes

    October 09, 2019
  • v4.0.5 Changes

    August 27, 2019

    โšก๏ธ update babel - fix eslint

  • v4.0.4 Changes

    June 08, 2019

    โฌ†๏ธ upgrade to babel7