-
-
Notifications
You must be signed in to change notification settings - Fork 981
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
fix: remove explicit folly version #2148
Merged
j-piasecki
merged 1 commit into
main
from
@kacperkapusciak/remove-explicit-folly-version
Jul 28, 2022
Merged
fix: remove explicit folly version #2148
j-piasecki
merged 1 commit into
main
from
@kacperkapusciak/remove-explicit-folly-version
Jul 28, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
j-piasecki
approved these changes
Jul 28, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️
6 tasks
tomekzaw
added a commit
to software-mansion/react-native-reanimated
that referenced
this pull request
Aug 22, 2022
## Description This PR bumps the following dependencies in Reanimated's FabricExample app: * `react-native-gesture-handler`: 2.5.0 + software-mansion/react-native-gesture-handler#2148 + software-mansion/react-native-gesture-handler#2126 (patch-package) * `react-native-screens`: software-mansion/react-native-screens@dfc90db (3.16.0 crashes on Android) * `react-native-safe-area-context`: 4.3.3 The motivation behind this PR is to finally fix our CI builds of FabricExample app on Android. Also, the MacOS runner image was upgraded to `macos-12` to fix `kLSNoExecutableErr: The executable is missing` error. <!-- Description and motivation for this PR. Inlude Fixes #<number> if this is fixing some issue. Fixes # . --> ## Changes <!-- Please describe things you've changed here, make a **high level** overview, if change is simple you can omit this section. For example: - Added `foo` method which add bouncing animation - Updated `about.md` docs - Added caching in CI builds --> <!-- ## Screenshots / GIFs Here you can add screenshots / GIFs documenting your change. You can add before / after section if you're changing some behavior. ### Before ### After --> ## Test code and steps to reproduce <!-- Please include code that can be used to test this change and short description how this example should work. This snippet should be as minimal as possible and ready to be pasted into editor (don't exclude exports or remove "not important" parts of reproduction example) --> ## Checklist - [ ] Included code example that can be used to test this change - [ ] Updated TS types - [ ] Added TS types tests - [ ] Added unit / integration tests - [ ] Updated documentation - [ ] Ensured that CI passes
fluiddot
pushed a commit
to wordpress-mobile/react-native-reanimated
that referenced
this pull request
Jun 5, 2023
## Description This PR bumps the following dependencies in Reanimated's FabricExample app: * `react-native-gesture-handler`: 2.5.0 + software-mansion/react-native-gesture-handler#2148 + software-mansion/react-native-gesture-handler#2126 (patch-package) * `react-native-screens`: software-mansion/react-native-screens@dfc90db (3.16.0 crashes on Android) * `react-native-safe-area-context`: 4.3.3 The motivation behind this PR is to finally fix our CI builds of FabricExample app on Android. Also, the MacOS runner image was upgraded to `macos-12` to fix `kLSNoExecutableErr: The executable is missing` error. <!-- Description and motivation for this PR. Inlude Fixes #<number> if this is fixing some issue. Fixes # . --> ## Changes <!-- Please describe things you've changed here, make a **high level** overview, if change is simple you can omit this section. For example: - Added `foo` method which add bouncing animation - Updated `about.md` docs - Added caching in CI builds --> <!-- ## Screenshots / GIFs Here you can add screenshots / GIFs documenting your change. You can add before / after section if you're changing some behavior. ### Before ### After --> ## Test code and steps to reproduce <!-- Please include code that can be used to test this change and short description how this example should work. This snippet should be as minimal as possible and ready to be pasted into editor (don't exclude exports or remove "not important" parts of reproduction example) --> ## Checklist - [ ] Included code example that can be used to test this change - [ ] Updated TS types - [ ] Added TS types tests - [ ] Added unit / integration tests - [ ] Updated documentation - [ ] Ensured that CI passes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
As a version of folly can change between versions of React-native we need to remove an explicit version of
folly_version
from our libraries to let RN infer the correct version.Change based on th3rdwave/react-native-safe-area-context@eb111ff
Changes
Removed explicit folly version from RNGestureHandler.podspec
Test code and steps to reproduce
Build FabricExample/
Checklist