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

[Gutenberg] - React Native 0.69.4 Upgrade #19326

Merged
merged 36 commits into from
Dec 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
b6fbfa2
Gutenberg - Add React-Codegen and React-bridging
Sep 19, 2022
40a17c8
Update Gutenberg ref
Sep 20, 2022
825d981
Updated gutenberg ref
derekblank Oct 6, 2022
b4c32e0
Merge remote-tracking branch 'origin' into gutenberg/react-native-0.69
derekblank Oct 7, 2022
e10b4f5
Update gutenberg ref
derekblank Oct 7, 2022
2afb6b7
Update gutenberg ref
derekblank Oct 7, 2022
05ffef5
Update gutenberg ref
derekblank Oct 7, 2022
55c8d92
Update gutenberg ref
derekblank Oct 7, 2022
7c6b301
Update podfile.lock
derekblank Oct 10, 2022
7059de2
Update gutenberg ref
derekblank Oct 10, 2022
d902346
Update podfile.lock
derekblank Oct 10, 2022
1d45acd
Update gutenberg ref and Podfile dependencies
derekblank Oct 12, 2022
40c8f42
Update gutenberg ref and Podfile.lock
derekblank Oct 13, 2022
9f544bf
Merge branch 'trunk' into gutenberg/react-native-0.69
Oct 14, 2022
23fe149
Update gutenberg ref
derekblank Oct 19, 2022
cefe45e
Update Podfile.lock
derekblank Oct 19, 2022
8703d69
Merge branch 'trunk' into gutenberg/react-native-0.69
Oct 19, 2022
541601c
Restore bundle config
Oct 20, 2022
1444a45
Merge branch 'trunk' into gutenberg/react-native-0.69
Oct 21, 2022
b696f88
Update Podfile to include Gutenberg pods in shared_test_pods
Oct 21, 2022
6d06c03
Merge with trunk
Oct 27, 2022
5c0d3fb
Update Gutenberg ref
Nov 3, 2022
f911080
Merge branch 'trunk' into gutenberg/react-native-0.69
Nov 3, 2022
f3f9fc7
Update logic for GutenbergViewController to fix media upload statuses
derekblank Nov 9, 2022
30e2cfb
Update Gutenberg ref
derekblank Nov 15, 2022
03e3a7b
Update Podfile.lock
derekblank Nov 16, 2022
6fcdba9
Merge pull request #19573 from wordpress-mobile/gutenberg/stop-upload…
Nov 16, 2022
dd97b20
Merge branch 'trunk' into gutenberg/react-native-0.69
Nov 29, 2022
c8279b3
Update gutenberg ref and update dependencies
derekblank Dec 5, 2022
19c1285
Merge branch 'trunk' into gutenberg/react-native-0.69
derekblank Dec 5, 2022
9549a4d
Update Podfile.lock dependencies
derekblank Dec 5, 2022
d1d21c1
Update gutenberg tag to 1.86.0-alpha1
derekblank Dec 5, 2022
5d8f97f
Update gutenberg tag reference to v1.86.0-alpha1
derekblank Dec 6, 2022
4605509
Fix gutenberg tag reference
derekblank Dec 6, 2022
c067ffd
Update project dependencies
derekblank Dec 6, 2022
2fe3aad
Add gutenberg_pods back after merging with trunk
Dec 7, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bundle/config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
BUNDLE_PATH: "vendor/bundle"
BUNDLE_JOBS: "16"
BUNDLE_WITHOUT: "screenshots"
BUNDLE_WITHOUT: "screenshots"
9 changes: 8 additions & 1 deletion Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ end
def shared_test_pods
pod 'OHHTTPStubs/Swift', '~> 9.1.0'
pod 'OCMock', '~> 3.4.3'
gutenberg_pods
end

def shared_with_extension_pods
Expand All @@ -89,6 +90,10 @@ def shared_style_pods
pod 'Gridicons', '~> 1.1.0'
end

def gutenberg_pods
gutenberg tag: 'v1.86.0-alpha1'
end

def gutenberg(options)
options[:git] = 'https://github.com/wordpress-mobile/gutenberg-mobile.git'
options[:submodules] = true
Expand Down Expand Up @@ -153,6 +158,8 @@ def gutenberg_dependencies(options)
RNCMaskedView
RNCClipboard
RNFastImage
React-Codegen
React-bridging
]
if options[:path]
podspec_prefix = options[:path]
Expand All @@ -179,7 +186,7 @@ abstract_target 'Apps' do
## Gutenberg (React Native)
## =====================
##
gutenberg tag: 'v1.85.1'
gutenberg_pods

## Third party libraries
## =====================
Expand Down
Loading