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.
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
[Gutenberg] - React Native 0.69.4 Upgrade #17066
[Gutenberg] - React Native 0.69.4 Upgrade #17066
Changes from all commits
3be6f11
67db3c8
52acffc
650ad55
cc396b9
8d352e6
91efb5f
0aab584
e2c4645
5d16496
14fed3f
037f3de
5dfcaf9
432afbf
863a75c
45d4231
64602e1
ab9b05c
9ca0844
ccd15ef
4ca7bdd
5dad8d5
00cb4ce
8c53322
f884bfd
b411bda
14d60e6
48b3019
b31f20d
ec3cd62
1483a61
9de67b2
d0b256f
b8ecbfc
ee6e2ac
a3e0f2f
e3e505d
24eb8f5
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Are these the libraries not included in the React Native and Hermes binaries? I'm wondering if we'd need to define them here or if they could be part of the libraries required by Gutenberg Mobile, could we have them as dependencies in the
react-native-bridge
build gradle file?I noticed that we are also setting the React Native version, is this required? Would be a way to let the Gutenberg Mobile library to define this?
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.
Since we encountered issues with using the
debug
artifacts for both Hermes and React Native instead of therelease
ones, when excluding them and including them again some libraries needed to be referenced again.I'm working on a draft PR as a follow-up to improve these, although to be able to force the release artifacts for all builds like (Jalapeno Debug) which are the builds PRs generate, we will have to keep a few implementations. 😅
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.
I think we haven't updated the Aztec version, so I'm wondering why we need to add this dependency if we didn't have it before 🤔, what changed with the RN upgrade to producing this?
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.
This comment is also related for this question.
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.
👋 @geriux @fluiddot !
I also stumbled upon this just now, that is, while working on the
org.jsoup:jsoup
dependency update (see here). I just removed this dependency from thelibs:editor
module (it being unused and all) and the WPAndroid seems to be building/working just fine.Should I refrain from removing dependency and ignore this for now, that is, at least until this work above is done? Or maybe it is already done but I can't connect the dots just yet, not sure? 🤔
Thanking you in advance for your advise here! 🙏
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.
Does the editor open correctly after this change?
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.
👋 @geriux and thanks for the reply!
Yes, I am able to open the editor correctly after this change (both the
Classic
andBlock
editor). Unless of course, I am missing something obvious here... 🤔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.
FYI: I just pushed this removal commit, feel free to test this PR yourself and let me know if everything works as you would have expected.
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.
Looks like the dependency
org.jsoup:jsoup
is used by Aztec-Android (reference).In fact, we set the version of that dependency here in Gutenberg. I'm not sure whether it can be removed or not, in any case, this could be tested by checking if the editor can be built and works as expected.