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 5.0.7 to 9.1.1 #23

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

Conversation

q1blue
Copy link
Collaborator

@q1blue q1blue commented May 17, 2024

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


Snyk has created this PR to upgrade react-redux from 5.0.7 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.


Warning: This is a major version upgrade, and may be a breaking change.

  • The recommended version is 72 versions ahead of your current version.
  • The recommended version was released a month 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

  • 9.0.4 - 2023-12-11

    This bugfix release updates the React Native peer dependency to be >= 0.69, to better reflect the need for React 18 compat and (hopefully) resolve issues with the npm package manager throwing peer dep errors on install.

    What's Changed

    • Allow react-native newer than 0.69 as peer dependency by @ R3DST0RM in #2107

    Full Changelog: v9.0.3...v9.0.4

  • 9.0.3 - 2023-12-10

    This bugfix release drops the ReactDOM / React Native specific use of render batching, as React 18 now automatically batches, and updates the React types dependencies

    Changelog

    Batching Dependency Updates

    React-Redux has long depended on React's unstable_batchedUpdates API to help batch renders queued by Redux updates. It also re-exported that method as a util named batch.

    However, React 18 now auto-batches all queued renders in the same event loop tick, so unstable_batchedUpdates is effectively a no-op.

    Using unstable_batchedUpdates has always been a pain point, because it's exported by the renderer package (ReactDOM or React Native), rather than the core react package. Our prior implementation relied on having separate batch.ts and batch.native.ts files in the codebase, and expecting React Native's bundler to find the right transpiled file at app build time. Now that we're pre-bundling artifacts in React-Redux v9, that approach has become a problem.

    Given that React 18 already batches by default, there's no further need to continue using unstable_batchedUpdates internally, so we've removed our use of that and simplified the internals.

    We still export a batch method, but it's effectively a no-op that just immediately runs the given callback, and we've marked it as @ deprecated.

    We've also updated the build artifacts and packaging, as there's no longer a need for an alternate-renderers entry point that omits batching, or a separate artifact that imports from "react-native".

    What's Changed

    Full Changelog: v9.0.2...v9.0.3

  • 9.0.2 - 2023-12-05

    This bugfix release makes additional tweaks to the React Native artifact filename to help resolve import and bundling issues with RN projects.

    What's Changed

    Full Changelog: v9.0.1...v9.0.2

  • 9.0.1 - 2023-12-04

    This bugfix release updates the package to include a new react-redux.react-native.js bundle that specifically imports React Native, and consolidates all of the 'react' imports into one file to save on bundle size (and enable some tricky React Native import handling).

    What's Changed

    Full Changelog: v9.0.0...v9.0.1

  • 9.0.0 - 2023-12-04
    Read more
  • 9.0.0-rc.0 - 2023-11-16

    This release candidate improves tree-shaking behavior in v9 to account for changes in bundling setup.

    Note that we hope to release Redux Toolkit 2.0, Redux core 5.0, and React-Redux 9.0 by the start of December! (If we don't hit that, we'll aim for January, after the holidays.)

    See the preview Redux Toolkit 2.0 + Redux core 5.0 Migration Guide for an overview of breaking changes in RTK 2.0 and Redux core.

    to package.json in v9 by @ markerikson in #2079
  • Inline react-is utils to fix tree-shaking in 9.0 by @ markerikson in #2085

Full Changelog: v9.0.0-beta.0...v9.0.0-rc.0

  • 9.0.0-beta.0 - 2023-10-01

    This beta release fixes the imports of use-sync-external-store when used in an ESM environment, and includes the fixes in v8.1.3.

    Redux Toolkit 2.0 release when it is ready.

    What's Changed

    Full Changelog: v9.0.0-alpha.1...v9.0.0-beta.0

  • 9.0.0-alpha.1 - 2023-08-26
  • 9.0.0-alpha.0 - 2023-08-23
  • 8.1.3 - 2023-10-01
    Read more
  • 8.1.2 - 2023-07-29
  • 8.1.1 - 2023-06-21
  • 8.1.0 - 2023-06-13
  • 8.0.7 - 2023-05-31
  • 8.0.6 - 2023-05-30
  • 8.0.5 - 2022-11-04
  • 8.0.4 - 2022-09-23
  • 8.0.3 - 2022-09-23
  • 8.0.2 - 2022-05-22
  • 8.0.1 - 2022-04-20
  • 8.0.0 - 2022-04-16
  • 8.0.0-rc.1 - 2022-04-13
  • 8.0.0-rc.0 - 2022-04-10
  • 8.0.0-beta.4 - 2022-04-02
  • 8.0.0-beta.3 - 2022-02-06
  • 8.0.0-beta.2 - 2021-12-22
  • 8.0.0-beta.1 - 2021-11-20
  • 8.0.0-beta.0 - 2021-11-19
  • 8.0.0-alpha.1 - 2021-11-02
  • 8.0.0-alpha.0 - 2021-10-03
  • 7.2.9 - 2022-09-23
  • 7.2.8 - 2022-04-01
  • 7.2.7 - 2022-03-31
  • 7.2.6 - 2021-10-25
  • 7.2.5 - 2021-09-04
  • 7.2.4 - 2021-04-24
  • 7.2.3 - 2021-03-23
  • 7.2.2 - 2020-10-26
  • 7.2.1 - 2020-07-25
  • 7.2.0 - 2020-02-18
  • 7.1.3 - 2019-11-06
  • 7.1.2 - 2019-11-06
  • 7.1.2-alpha.0 - 2019-11-05
  • 7.1.1 - 2019-08-26
  • 7.1.0 - 2019-06-11
  • 7.1.0-rc.1 - 2019-05-30
  • 7.1.0-alpha.5 - 2019-05-20
  • 7.1.0-alpha.4 - 2019-05-01
  • 7.1.0-alpha.3 - 2019-04-28
  • 7.1.0-alpha.2 - 2019-04-28
  • 7.1.0-alpha.1 - 2019-04-22
  • 7.1.0-alpha.0 - 2019-04-22
  • 7.0.3 - 2019-04-28
  • 7.0.2 - 2019-04-12
  • 7.0.1 - 2019-04-09
  • 7.0.0 - 2019-04-09
  • 7.0.0-beta.1 - 2019-04-04
  • 7.0.0-beta.0 - 2019-03-22
  • 6.0.1 - 2019-02-20
  • 6.0.0 - 2018-12-05
  • 6.0.0-beta.3 - 2018-11-23
  • 6.0.0-beta.2 - 2018-11-06
  • 6.0.0-beta.1 - 2018-11-06
  • 6.0.0-alpha.ede6245 - 2018-09-20
  • 6.0.0-alpha.2a2f108 - 2018-09-20
  • 6.0.0-alpha.9210282 - 2018-09-20
  • 5.1.2 - 2019-10-08
  • 5.1.1 - 2018-11-10
  • 5.1.0 - 2018-10-25
  • 5.1.0-test.1 - 2018-06-21
  • 5.0.7 - 2018-02-16
  • 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