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-native from 0.63.3 to 0.70.0 #752

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

Conversation

snyk-bot
Copy link

Snyk has created this PR to upgrade react-native from 0.63.3 to 0.70.0.

ℹ️ 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 68 versions ahead of your current version.
  • The recommended version was released 22 days ago, on 2022-09-05.

The recommended version fixes:

Severity Issue PriorityScore (*) Exploit Maturity
Remote Code Execution (RCE)
SNYK-JS-SHELLQUOTE-1766506
619/1000
Why? Has a fix available, CVSS 8.1
No Known Exploit
Regular Expression Denial of Service (ReDoS)
SNYK-JS-REACTNATIVE-1298632
619/1000
Why? Has a fix available, CVSS 8.1
No Known Exploit
Out-of-Bounds
SNYK-JS-HERMESENGINE-1727253
619/1000
Why? Has a fix available, CVSS 8.1
No Known Exploit
Use After Free
SNYK-JS-HERMESENGINE-1309667
619/1000
Why? Has a fix available, CVSS 8.1
No Known Exploit
Regular Expression Denial of Service (ReDoS)
SNYK-JS-WS-1296835
619/1000
Why? Has a fix available, CVSS 8.1
Proof of Concept
Prototype Pollution
SNYK-JS-SIMPLEPLIST-2413671
619/1000
Why? Has a fix available, CVSS 8.1
Proof of Concept
Denial of Service
SNYK-JS-NODEFETCH-674311
619/1000
Why? Has a fix available, CVSS 8.1
No Known Exploit
Information Exposure
SNYK-JS-NODEFETCH-2342118
619/1000
Why? Has a fix available, CVSS 8.1
No Known Exploit
Out-of-Bounds
SNYK-JS-HERMESENGINE-629748
619/1000
Why? Has a fix available, CVSS 8.1
No Known Exploit
Denial of Service (DoS)
SNYK-JS-HERMESENGINE-629268
619/1000
Why? Has a fix available, CVSS 8.1
No Known Exploit
Prototype Pollution
SNYK-JS-HERMESENGINE-608850
619/1000
Why? Has a fix available, CVSS 8.1
No Known Exploit
Denial of Service (DoS)
SNYK-JS-HERMESENGINE-2342071
619/1000
Why? Has a fix available, CVSS 8.1
No Known Exploit
Cross-site Scripting (XSS)
SNYK-JS-HERMESENGINE-1015406
619/1000
Why? Has a fix available, CVSS 8.1
No Known Exploit

(*) Note that the real score may have changed since the PR was raised.

Release notes
Package name: react-native
  • 0.70.0 - 2022-09-05

    0.70 stable is out!

    This release includes 493 commits with 88 contributors! Thank you to all our contributors new and old! See the highlights of the release in our release blog post.


    You can participate in the conversation on the status of this release in this discussion


    To help you upgrade to this version, you can use the upgrade helper ⚛️


    You can find the whole changelog history in the changelog.md file.

  • 0.70.0-rc.4 - 2022-08-22

    Changed

    Android specific

    Fixed


    • You can participate in the conversation on the status of this release in the working group.

    • To help you upgrade to this version, you can use the upgrade helper ⚛️

    • See changes from this release in the changelog PR


    Help us testing 🧪

    RC4 is going to be the last RC before 0.70.0 - unless blocking issues arise. To help us catch them, test it by running:

    npx react-native init RN070RC4 --version 0.70.0-rc.4
    

    And play around with the fresh app - let us know how it went by posting a comment in the working group discussion! Please specify with system you tried it on (ex. macos, windows).

    Bonus points: It would be even better if you could swap things around: instead of using a fresh new app, use a more complex one!

  • 0.70.0-rc.3 - 2022-08-15

    Changed

    Android specific

    iOS specific

    Fixed

    Android specific


    • You can participate in the conversation on the status of this release in the working group.

    • To help you upgrade to this version, you can use the upgrade helper ⚛️

    • See changes from this release in the changelog PR


    Help us testing 🧪

    To test it, run:

    npx react-native init RN070RC3 --version 0.70.0-rc.3
    

    And play around with the fresh app - let us know how it went by posting a comment in the working group discussion! Please specify with system you tried it on (ex. macos, windows).

    Bonus points: It would be even better if you could swap things around: instead of using a fresh new app, use a more complex one!

  • 0.70.0-rc.2 - 2022-08-04

    To try it, run:

    npx react-native init RN070RC2 --version 0.70.0-rc.2


    • You can participate in the conversation on the status of this release in the working group

    • To help you upgrade to this version, you can use the upgrade helper ⚛️

    • The full list of changes in release can read in the changelog PR


    Help us testing 🧪

    We need your help testing one feature in particular with this RC (autolinking of TurboModules from libraries)! Here is what you have to do:

    1. generate a new app (as per command above)
    2. turn on the new architecture:
      1. iOS
        1. cd ios
        2. bundle install && RCT_NEW_ARCH_ENABLED=1 bundle exec pod install(or RCT_NEW_ARCH_ENABLED=1 pod install)
        3. cd ..
        4. yarn ios
      2. Android
        1. go into gradle.properties
        2. switch the flag newArchEnabled to true
        3. yarn android
      3. verify that the app is running new arch by checking the Metro log for something along the lines of LOG Running "RN070RC1" with {"fabric":true,"initialProps":{"concurrentRoot":true},"rootTag":1}
    3. add a library that has the new TM implementation (such as https://github.com/th3rdwave/react-native-safe-area-context) via yarn add <lib>
    4. rerun the app again (remember to do a new RCT_NEW_ARCH_ENABLED=1 pod install for iOS), verify that the lib added works correctly
    5. check in the file android/app/build/generated/rncli/src/main/jni/Android-rncli.mk that there's a reference to the library added, something along the lines of
      include <path>/node_modules/react-native-safe-area-context/android/build/generated/source/codegen/jni/Android.mk

      import-codegen-modules :=
      libreact_codegen_safeareacontext

    6. let us know how it went by posting a comment in the working group discussion! Please specify with system you tried it on (ex. macos, windows).

    Bonus points: It would be even better if you could swap things around: instead of using a fresh new app, use a more complex one - or use a different library that is already leveraging the new architecture!

  • 0.70.0-rc.1 - 2022-07-28

    To test it, run:

    npx react-native init RN070RC1 --version 0.70.0-rc.1


    You can participate in the conversation on the status of this release in the working group.


    To help you upgrade to this version, you can use the upgrade helper ⚛️


    See changes from this release in the changelog PR

  • 0.70.0-rc.0 - 2022-07-15
  • 0.69.5 - 2022-08-25

    Changed

    Android specific

    • Replaced reactnativeutilsjni with reactnativejni in the build process to reduce size (54a4fcbfdc by @ SparshaSaha)

    Fixed


    You can participate in the conversation on the status of this release in this discussion


    To help you upgrade to this version, you can use the upgrade helper ⚛️


    You can find the whole changelog history in the changelog.md file

  • 0.69.4 - 2022-08-08

    Changed

    Android specific


    You can participate in the conversation on the status of this release in this discussion


    To help you upgrade to this version, you can use the upgrade helper ⚛️


    You can find the whole changelog history in the changelog.md file.

  • 0.69.3 - 2022-07-25
  • 0.69.2 - 2022-07-20
  • 0.69.1 - 2022-06-29
  • 0.69.0 - 2022-06-22
  • 0.69.0-rc.6 - 2022-06-01
  • 0.69.0-rc.5 - 2022-05-31
  • 0.69.0-rc.4 - 2022-05-31
  • 0.69.0-rc.3 - 2022-05-24
  • 0.69.0-rc.2 - 2022-05-20
  • 0.69.0-rc.1 - 2022-05-11
  • 0.69.0-rc.0 - 2022-04-28
  • 0.68.3 - 2022-08-08

    Changed

    Android specific

    Fixed

    • Use monotonic clock for performance.now() (114d31feee)

    Android specific

    • Logging a soft error when ReactRootView has an id other than -1 instead of crashing the app in hybrid apps (1ca2c24930 by @ Kunal-Airtel2022)

    You can participate in the conversation on the status of this release in this discussion


    To help you upgrade to this version, you can use the upgrade helper ⚛️


    You can find the whole changelog history in the changelog.md file.

  • 0.68.2 - 2022-05-09
  • 0.68.1 - 2022-04-13
  • 0.68.0 - 2022-03-30
  • 0.68.0-rc.4 - 2022-03-25
  • 0.68.0-rc.3 - 2022-03-17
  • 0.68.0-rc.2 - 2022-02-24
  • 0.68.0-rc.1 - 2022-02-03
  • 0.68.0-rc.0 - 2022-01-28
  • 0.67.4 - 2022-03-18
  • 0.67.3 - 2022-02-22
  • 0.67.2 - 2022-01-31
  • 0.67.1 - 2022-01-20
  • 0.67.0 - 2022-01-18
  • 0.67.0-rc.6 - 2021-12-14
  • 0.67.0-rc.5 - 2021-12-06
  • 0.67.0-rc.4 - 2021-11-30
  • 0.67.0-rc.3 - 2021-11-05
  • 0.67.0-rc.2 - 2021-10-25
  • 0.67.0-rc.1 - 2021-10-22
  • 0.67.0-rc.0 - 2021-10-16
  • 0.66.4 - 2021-12-09
  • 0.66.3 - 2021-11-10
  • 0.66.2 - 2021-11-04
  • 0.66.1 - 2021-10-15
  • 0.66.0 - 2021-10-01
  • 0.66.0-rc.4 - 2021-09-24
  • 0.66.0-rc.3 - 2021-09-17
  • 0.66.0-rc.2 - 2021-09-10
  • 0.66.0-rc.1 - 2021-09-01
  • 0.66.0-rc.0 - 2021-08-27
  • 0.65.2 - 2021-11-04
  • 0.65.1 - 2021-08-19
  • 0.65.0 - 2021-08-17
  • 0.65.0-rc.4 - 2021-08-11
  • 0.65.0-rc.3 - 2021-07-23
  • 0.65.0-rc.2 - 2021-06-18
  • 0.65.0-rc.1 - 2021-06-17
  • 0.65.0-rc.0 - 2021-06-09
  • 0.64.3 - 2021-11-04
  • 0.64.2 - 2021-06-03
  • 0.64.1 - 2021-05-05
  • 0.64.0 - 2021-03-12
  • 0.64.0-rc.4 - 2021-03-01
  • 0.64.0-rc.3 - 2021-02-05
  • 0.64.0-rc.2 - 2020-12-18
  • 0.64.0-rc.1 - 2020-11-25
  • 0.64.0-rc.0 - 2020-11-23
  • 0.63.4 - 2020-11-30
  • 0.63.3 - 2020-09-29
from react-native GitHub release notes
Commit messages
Package name: react-native

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.

1 participant