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

Test - Aztec version #6881

Draft
wants to merge 2 commits into
base: trunk
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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 gutenberg
Submodule gutenberg updated 90 files
+58 −0 .github/workflows/check-backport-changelog.yml
+16 −0 backport-changelog/readme.md
+2 −2 docs/reference-guides/data/data-core-block-editor.md
+38 −7 lib/class-wp-rest-global-styles-controller-gutenberg.php
+74 −0 lib/class-wp-theme-json-resolver-gutenberg.php
+0 −10 lib/compat/wordpress-6.5/rest-api.php
+97 −0 lib/compat/wordpress-6.6/class-gutenberg-rest-global-styles-revisions-controller-6-6.php
+11 −0 lib/compat/wordpress-6.6/rest-api.php
+3 −0 lib/experimental/editor-settings.php
+12 −0 lib/experiments-page.php
+1 −0 lib/global-styles-and-settings.php
+1 −0 lib/load.php
+1 −1 lib/theme.json
+9 −7 packages/block-editor/src/components/block-list/block.js
+1 −5 packages/block-editor/src/components/colors-gradients/control.js
+11 −2 packages/block-editor/src/components/global-styles/background-panel.js
+6 −3 packages/block-editor/src/components/global-styles/border-panel.js
+2 −4 packages/block-editor/src/components/global-styles/color-panel.js
+5 −0 packages/block-editor/src/components/global-styles/hooks.js
+1 −0 packages/block-editor/src/components/global-styles/index.js
+11 −5 packages/block-editor/src/components/global-styles/shadow-panel-components.js
+66 −0 packages/block-editor/src/components/global-styles/test/theme-file-uri-utils.js
+77 −0 packages/block-editor/src/components/global-styles/theme-file-uri-utils.js
+10 −5 packages/block-editor/src/components/global-styles/typography-panel.js
+5 −0 packages/block-editor/src/components/global-styles/use-global-styles-output.js
+9 −16 packages/block-editor/src/components/inner-blocks/use-nested-settings-update.js
+16 −2 packages/block-editor/src/components/inserter/block-patterns-tab/pattern-category-preview-panel.js
+0 −4 packages/block-editor/src/components/inserter/menu.js
+17 −11 packages/block-editor/src/hooks/text-align.js
+11 −4 packages/block-editor/src/store/actions.js
+1 −46 packages/block-editor/src/store/get-block-settings.js
+24 −11 packages/block-editor/src/store/reducer.js
+2 −3 packages/block-library/src/form-submit-button/save.js
+2 −3 packages/block-library/src/form/save.js
+116 −60 packages/block-library/src/media-text/edit.js
+1 −1 packages/block-library/src/query-no-results/save.js
+1 −1 packages/block-library/src/query/save.js
+8 −2 packages/block-library/src/search/edit.js
+14 −10 packages/components/src/palette-edit/test/index.tsx
+2 −2 packages/components/src/slot-fill/bubbles-virtually/slot-fill-provider.tsx
+2 −2 packages/components/src/slot-fill/provider.tsx
+0 −0 packages/dataviews/src/layouts.ts
+17 −10 packages/dataviews/src/style.scss
+8 −8 packages/dataviews/src/types.ts
+67 −12 packages/dataviews/src/view-actions.tsx
+1 −1 packages/dataviews/src/view-grid.tsx
+3 −2 packages/dataviews/src/view-table.tsx
+18 −17 packages/e2e-test-utils-playwright/src/admin/visit-site-editor.ts
+3 −0 packages/edit-site/src/components/global-styles/background-panel.js
+17 −1 packages/edit-site/src/components/global-styles/root-menu.js
+6 −0 packages/edit-site/src/components/global-styles/screen-revisions/index.js
+1 −0 packages/edit-site/src/components/global-styles/screen-revisions/use-global-styles-revisions.js
+13 −0 packages/edit-site/src/components/global-styles/screen-shadows.js
+158 −0 packages/edit-site/src/components/global-styles/shadow-utils.js
+558 −0 packages/edit-site/src/components/global-styles/shadows-edit-panel.js
+141 −0 packages/edit-site/src/components/global-styles/shadows-panel.js
+54 −0 packages/edit-site/src/components/global-styles/style.scss
+251 −0 packages/edit-site/src/components/global-styles/test/shadow-utils.spec.js
+9 −0 packages/edit-site/src/components/global-styles/ui.js
+2 −0 packages/edit-site/src/components/global-styles/variations/variation.js
+1 −0 packages/edit-site/src/components/page-patterns/style.scss
+22 −2 packages/editor/README.md
+124 −0 packages/editor/src/components/blog-title/index.js
+4 −0 packages/editor/src/components/blog-title/style.scss
+12 −0 packages/editor/src/components/document-bar/index.js
+10 −0 packages/editor/src/components/editor-notices/index.js
+9 −2 packages/editor/src/components/global-styles-provider/index.js
+4 −4 packages/editor/src/components/post-actions/actions.js
+1 −0 packages/editor/src/components/post-schedule/panel.js
+1 −0 packages/editor/src/components/post-template/block-theme.js
+0 −13 packages/editor/src/components/post-trash/panel.js
+101 −0 packages/editor/src/components/posts-per-page/index.js
+4 −0 packages/editor/src/components/posts-per-page/style.scss
+4 −6 packages/editor/src/components/provider/use-block-editor-settings.js
+8 −17 packages/editor/src/components/sidebar/post-summary.js
+138 −0 packages/editor/src/components/site-discussion/index.js
+19 −0 packages/editor/src/components/site-discussion/style.scss
+15 −6 packages/editor/src/components/template-areas/index.js
+3 −0 packages/editor/src/style.scss
+17 −10 packages/interactivity-router/src/head.ts
+79 −40 packages/interactivity-router/src/index.ts
+1 −1 packages/interactivity/src/store.ts
+4 −4 packages/react-native-editor/ios/GutenbergDemo.xcodeproj/project.pbxproj
+2 −0 packages/react-native-editor/ios/Podfile
+15 −7 packages/react-native-editor/ios/Podfile.lock
+24 −2 phpunit/class-wp-rest-global-styles-controller-gutenberg-test.php
+87 −0 phpunit/class-wp-theme-json-resolver-test.php
+1 −1 schemas/json/theme.json
+ test/emptytheme/img/1024x768_emptytheme_test_image.jpg
+5 −0 test/emptytheme/styles/variation.json
2 changes: 2 additions & 0 deletions ios-xcframework/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ GUTENBERG_PATH = '../gutenberg'
REACT_NATIVE_PATH = File.join(GUTENBERG_PATH, 'node_modules', 'react-native')
require_relative File.join(REACT_NATIVE_PATH, 'scripts', 'react_native_pods')

pod 'WordPress-Aztec-iOS', :git => 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS.git', :commit => '75317479fc203f96fa1f033dee23510e59631503'

HERMES_ENABLED = ENV.fetch('HERMES_ENABLED', true)

puts "[Gutenberg] Installing pods with Hermes #{HERMES_ENABLED ? 'enabled' : 'disabled'}"
Expand Down
12 changes: 9 additions & 3 deletions ios-xcframework/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1184,6 +1184,7 @@ DEPENDENCIES:
- RNScreens (from `../third-party-podspecs/RNScreens.podspec.json`)
- RNSVG (from `../third-party-podspecs/RNSVG.podspec.json`)
- RNTAztecView (from `../gutenberg/packages/react-native-aztec`)
- WordPress-Aztec-iOS (from `https://github.com/wordpress-mobile/WordPress-Aztec-iOS.git`, commit `75317479fc203f96fa1f033dee23510e59631503`)
- Yoga (from `../gutenberg/node_modules/react-native/ReactCommon/yoga`)

SPEC REPOS:
Expand All @@ -1194,7 +1195,6 @@ SPEC REPOS:
- SDWebImage
- SDWebImageWebPCoder
- SocketRocket
- WordPress-Aztec-iOS

EXTERNAL SOURCES:
boost:
Expand Down Expand Up @@ -1325,13 +1325,19 @@ EXTERNAL SOURCES:
:podspec: "../third-party-podspecs/RNSVG.podspec.json"
RNTAztecView:
:path: "../gutenberg/packages/react-native-aztec"
WordPress-Aztec-iOS:
:commit: 75317479fc203f96fa1f033dee23510e59631503
:git: https://github.com/wordpress-mobile/WordPress-Aztec-iOS.git
Yoga:
:path: "../gutenberg/node_modules/react-native/ReactCommon/yoga"

CHECKOUT OPTIONS:
RNReanimated:
:commit: 370beae83df674476e6917fe8ac4cea6b0179ad3
:git: https://github.com/wordpress-mobile/react-native-reanimated
WordPress-Aztec-iOS:
:commit: 75317479fc203f96fa1f033dee23510e59631503
:git: https://github.com/wordpress-mobile/WordPress-Aztec-iOS.git

SPEC CHECKSUMS:
boost: d3f49c53809116a5d38da093a8aa78bf551aed09
Expand Down Expand Up @@ -1403,9 +1409,9 @@ SPEC CHECKSUMS:
SDWebImage: a7f831e1a65eb5e285e3fb046a23fcfbf08e696d
SDWebImageWebPCoder: 908b83b6adda48effe7667cd2b7f78c897e5111d
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
WordPress-Aztec-iOS: 47311b8a342f2b12babb5b8a705ab20b281a83ae
WordPress-Aztec-iOS: a1fa47c2bfe692547b539ede532674be798680a2
Yoga: ff0382b894475dba0b4d2a5fda860bfee5a9afad

PODFILE CHECKSUM: fbfd4d8f52bfcf86e5e1fab197d349d6d2b8e72f
PODFILE CHECKSUM: 7af939686a11c1c1fbc5465696d10f7d80cd7145

COCOAPODS: 1.13.0
Loading