Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: reduxjs/react-redux
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.0.4
Choose a base ref
...
head repository: reduxjs/react-redux
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.0.5
Choose a head ref
  • 14 commits
  • 10 files changed
  • 5 contributors

Commits on Oct 6, 2022

  1. Provider: pass state (S) generic through to ProviderProps

    This is necessary to catch mistakes such as this, where the type of `serverState` does not match the type of the state in the provided `store`.
    
    ```tsx
    import { Provider } from 'react-redux';
    import { Store } from 'redux';
    
    declare const store: Store<{ foo: string }>;
    <Provider store={store} serverState={"oops"}>foo</Provider>
    ```
    OliverJAsh authored Oct 6, 2022
    Configuration menu
    Copy the full SHA
    b50f392 View commit details
    Browse the repository at this point in the history
  2. Add type test

    OliverJAsh committed Oct 6, 2022
    Configuration menu
    Copy the full SHA
    e7017ed View commit details
    Browse the repository at this point in the history
  3. any -> unknown

    OliverJAsh committed Oct 6, 2022
    Configuration menu
    Copy the full SHA
    9e09869 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2022

  1. chore(docs): added custom equalityFn example

    Enger Then committed Oct 28, 2022
    Configuration menu
    Copy the full SHA
    54d8096 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8cf538c View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2022

  1. Configuration menu
    Copy the full SHA
    ad40b97 View commit details
    Browse the repository at this point in the history
  2. wrap type in

    phryneas authored and markerikson committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    3b06061 View commit details
    Browse the repository at this point in the history
  3. also update TypedUseSelectorHook

    phryneas authored and markerikson committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    401250e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fc3954a View commit details
    Browse the repository at this point in the history
  5. Add typetests

    markerikson committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    bafe55e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5082af7 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    ff7d96b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    32e40e4 View commit details
    Browse the repository at this point in the history
  9. Release 8.0.5

    markerikson committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    8d03182 View commit details
    Browse the repository at this point in the history
Loading