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

Release 1.76.1 #4875

Merged
merged 13 commits into from
May 23, 2022
Merged
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
7 changes: 6 additions & 1 deletion RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
Unreleased
---
* [*] Add drag & drop help guide in Help & Support screen [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4857]
* [*] [a11y] Improve text read by screen readers for BottomSheetSelectControl [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4854]

## 1.76.1
---
* [*] BlockList - Add internal onLayout from CellRendererComponent to BlockListItemCell [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4865]
* [*] Fix Drag & Drop Chip positioning issue with RTL languages [https://github.com/WordPress/gutenberg/pull/41053]
* [*] Add drag & drop help guide in Help & Support screen [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4857]
* [*] Fix drag mode not being enabled when long-pressing over Shortcode block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4872]

## 1.76.0
Expand Down
1 change: 1 addition & 0 deletions bundle/android/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@
translators: %s: Select control button label e.g. "Button width" -->
<string name="gutenberg_native_navigates_to_select_s" tools:ignore="UnusedResources">Navigates to select %s</string>
<string name="gutenberg_native_navigates_to_the_previous_content_sheet" tools:ignore="UnusedResources">Navigates to the previous content sheet</string>
<string name="gutenberg_native_new" tools:ignore="UnusedResources">NEW</string>
<string name="gutenberg_native_no_application_can_handle_this_request" tools:ignore="UnusedResources">No application can handle this request.</string>
<string name="gutenberg_native_no_application_can_handle_this_request_please_install_a_web_brows" tools:ignore="UnusedResources">No application can handle this request. Please install a Web browser.</string>
<string name="gutenberg_native_no_blocks_found" tools:ignore="UnusedResources">No blocks found</string>
Expand Down
1,767 changes: 884 additions & 883 deletions bundle/ios/App.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundle/ios/App.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions bundle/ios/GutenbergNativeTranslations.swift
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ private func dummy() {
_ = NSLocalizedString("Navigates to layout selection screen", comment: "")
_ = NSLocalizedString("Navigates to select %s", comment: "translators: %s: Select control button label e.g. Small\ntranslators: %s: Select control button label e.g. \"Button width\"")
_ = NSLocalizedString("Navigates to the previous content sheet", comment: "")
_ = NSLocalizedString("NEW", comment: "")
_ = NSLocalizedString("No application can handle this request.", comment: "")
_ = NSLocalizedString("No application can handle this request. Please install a Web browser.", comment: "")
_ = NSLocalizedString("No blocks found", comment: "")
Expand Down
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 58 files
+1 −1 docs/contributors/code/coding-guidelines.md
+1 −1 lib/compat/wordpress-6.0/class-wp-theme-json-6-0.php
+143 −1 lib/compat/wordpress-6.1/class-wp-theme-json-6-1.php
+23 −0 lib/compat/wordpress-6.1/get-global-styles-and-settings.php
+83 −0 lib/compat/wordpress-6.1/script-loader.php
+1 −11 lib/experiments-page.php
+0 −12 lib/init.php
+2 −0 lib/load.php
+0 −2 packages/block-editor/src/components/media-placeholder/index.js
+0 −2 packages/block-editor/src/components/media-replace-flow/index.js
+1 −0 packages/block-editor/src/elements/index.js
+1 −0 packages/block-editor/src/index.js
+145 −0 packages/block-library/src/button/deprecated.js
+3 −1 packages/block-library/src/button/edit.js
+3 −1 packages/block-library/src/button/save.js
+1 −1 packages/block-library/src/buttons/test/__snapshots__/edit.native.js.snap
+1 −1 packages/block-library/src/buttons/test/edit.native.js
+1 −1 packages/block-library/src/gallery/block.json
+1 −53 packages/block-library/src/image/edit.js
+2 −11 packages/block-library/src/image/image.js
+35 −5 packages/block-library/src/navigation-link/edit.js
+0 −20 packages/block-library/src/navigation-link/test/edit.js
+3 −1 packages/block-library/src/search/edit.js
+3 −0 packages/block-library/src/search/index.php
+7 −1 packages/block-library/src/table-of-contents/edit.js
+10 −8 packages/components/src/autocomplete/index.js
+6 −7 packages/components/src/search-control/index.js
+0 −1 packages/components/src/utils/hooks/index.js
+0 −28 packages/components/src/utils/hooks/use-combined-ref.ts
+342 −119 packages/core-data/src/entities.ts
+127 −0 packages/core-data/src/entity-types/entities.ts
+1 −0 packages/core-data/src/entity-types/index.ts
+4 −4 packages/e2e-tests/specs/editor/blocks/__snapshots__/buttons.test.js.snap
+52 −0 packages/e2e-tests/specs/editor/blocks/navigation.test.js
+1 −1 packages/e2e-tests/specs/editor/various/__snapshots__/inserting-blocks.test.js.snap
+17 −2 packages/edit-site/src/components/global-styles/preview.js
+1 −1 packages/editor/src/components/editor-help/move-blocks.native.js
+1 −1 packages/react-native-aztec/package.json
+1 −1 packages/react-native-bridge/package.json
+6 −0 packages/react-native-editor/CHANGELOG.md
+4 −4 packages/react-native-editor/ios/Podfile.lock
+1 −1 packages/react-native-editor/package.json
+1 −0 packages/scripts/CHANGELOG.md
+28 −0 packages/scripts/config/webpack.config.js
+1 −1 test/integration/fixtures/blocks/core__button__border_radius__deprecated-2.serialized.html
+1 −1 test/integration/fixtures/blocks/core__button__border_radius__deprecated.serialized.html
+1 −1 test/integration/fixtures/blocks/core__button__center__deprecated.serialized.html
+1 −1 test/integration/fixtures/blocks/core__button__deprecated-v10.serialized.html
+1 −1 test/integration/fixtures/blocks/core__button__squared.html
+2 −2 test/integration/fixtures/blocks/core__button__squared.parsed.json
+1 −1 test/integration/fixtures/blocks/core__button__squared.serialized.html
+3 −3 test/integration/fixtures/blocks/core__buttons.html
+4 −4 test/integration/fixtures/blocks/core__buttons.parsed.json
+2 −2 test/integration/fixtures/blocks/core__buttons.serialized.html
+2 −2 test/integration/fixtures/blocks/core__buttons__deprecated-1.serialized.html
+2 −2 test/integration/fixtures/blocks/core__buttons__deprecated-2.serialized.html
+1 −1 test/integration/fixtures/blocks/core__post-terms.json
+2 −2 test/integration/fixtures/blocks/core_buttons__simple__deprecated.serialized.html
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gutenberg-mobile",
"version": "1.76.0",
"version": "1.76.1",
"private": true,
"config": {
"jsfiles": "./*.js src/*.js src/**/*.js src/**/**/*.js",
Expand Down