Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Upgrade react-redux from 9.1.0 to 9.1.1 #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

nejidevelops
Copy link
Owner

This PR was automatically created by Snyk using the credentials of a real user.


Snyk has created this PR to upgrade react-redux from 9.1.0 to 9.1.1.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


  • The recommended version is 1 version ahead of your current version.
  • The recommended version was released 22 days ago, on 2024-04-14.
Release notes
Package name: react-redux
  • 9.1.1 - 2024-04-14

    This bugfix release fixes an issue with connect and React Native caused by changes to our bundling setup in v9. Nested connect calls should work correctly now.

    What's Changed

    Full Changelog: v9.1.0...v9.1.1

  • 9.1.0 - 2024-01-12

    This minor release adds a new syntax for pre-typing hooks.

    .withTypes

    Previously, the approach for "pre-typing" hooks with your app settings was a little varied. The result would look something like the below:

    import type { TypedUseSelectorHook } from "react-redux"
    import { useDispatch, useSelector, useStore } from "react-redux"
    import type { AppDispatch, AppStore, RootState } from "./store"

    export const useAppDispatch: () => AppDispatch = useDispatch
    export const useAppSelector: TypedUseSelectorHook<RootState> = useSelector
    export const useAppStore = useStore as () => AppStore

    React Redux v9.1.0 adds a new .withTypes method to each of these hooks, analogous to the .withTypes method found on Redux Toolkit's createAsyncThunk.

    The setup now becomes:

    import { useDispatch, useSelector, useStore } from "react-redux"
    import type { AppDispatch, AppStore, RootState } from "./store"

    export const useAppDispatch = useDispatch.withTypes<AppDispatch>()
    export const useAppSelector = useSelector.withTypes<RootState>()
    export const useAppStore = useStore.withTypes<AppStore>()

    What's Changed

    New Contributors

    Full Changelog: v9.0.4...v9.1.0

from react-redux GitHub release notes
Commit messages
Package name: react-redux
  • 0396da3 Merge pull request #2156 from aryaemami59/fix-RN-useIsomorphicLayoutEffect-issue
  • fd2c5c6 Remove `useIsomorphicLayoutEffect.native.ts`
  • 691b1a2 Remove nested ternary
  • 5ba0d93 Fix `useIsomorphicLayoutEffect` in React Native environments
  • 05b55c0 Remove `no-resolution` flag and add `--exclude-entrypoints` when running `are-the-types-wrong` during CI (#2155)
  • 098f862 Use the right type
  • 1c9bd5d Add `.gitattributes` file to make line endings more consistent (#2134)
  • 1de9d66 Bump follow-redirects from 1.14.4 to 1.15.6 in /website (#2143)
  • 16dc0ed Cache the examples and speed up test runs (#2140)
  • 4d0b645 Upgrade to Yarn 4 (#2135)
  • c0106e8 Merge pull request #2139 from aryaemami59/update-ts-to-5.4
  • 70b9449 Add TypeScript 5.4 to TS versions to test against during CI
  • 64f1ff9 Bump TypeScript to 5.4
  • 1439923 Add TypeScript 5.3 to CI (#2130)
  • 2abd620 Merge pull request #2119 from aryaemami59/add-rn-and-expo-to-ci
  • bf71dcf Merge branch 'add-rn-and-expo-to-ci' of https://github.com/aryaemami59/react-redux; branch 'master' of https://github.com/reduxjs/react-redux into add-rn-and-expo-to-ci
  • 35d7ae8 Merge pull request #2125 from aryaemami59/format-things
  • 271b7f6 remove another semicolon
  • 1f026d6 Merge branch 'master' of https://github.com/reduxjs/react-redux into add-rn-and-expo-to-ci
  • 02b6b1c Remove semicolon inside of code snippet in `connect.md`
  • fa9d61d Run `format` command
  • e450f2b Merge pull request #2124 from aryaemami59/migrate-to-vitest
  • c29ce2f Remove `babel.config.js`
  • 83fb16b Remove `rollup.config.js`

Compare


Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

🧐 View latest project report

🛠 Adjust upgrade PR settings

🔕 Ignore this dependency or unsubscribe from future upgrade PRs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants