Skip to content

Commit

Permalink
Merge pull request #5011 from wordpress-mobile/release/1.79.0
Browse files Browse the repository at this point in the history
Release 1.79.0
  • Loading branch information
dcalhoun authored Jul 8, 2022
2 parents 024409d + 13c85f7 commit 6cc6926
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
8 changes: 5 additions & 3 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
Unreleased
---
* [**] Prevent validation error when viewing VideoPress markup within app [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4899]
* [*] Add 'Insert from URL' option to Video block [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4941]
* [*] Image block copies the alt text from the media library when selecting an item [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4976]
* [*] Introduce "block recovery" option for invalid blocks [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4996]

## 1.79.0
- [*] Add 'Insert from URL' option to Video block [https://github.com/WordPress/gutenberg/pull/41493]
- [*] Image block copies the alt text from the media library when selecting an item [https://github.com/WordPress/gutenberg/pull/41839]
- [*] Introduce "block recovery" option for invalid blocks [https://github.com/WordPress/gutenberg/pull/41988]

## 1.78.1
---
Expand Down
2 changes: 1 addition & 1 deletion bundle/android/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ translators: %s: Select control button label e.g. "Button width" -->
<string name="gutenberg_native_post_title_s" tools:ignore="UnusedResources">Post title. %s</string>
<string name="gutenberg_native_preview_page" tools:ignore="UnusedResources">Preview page</string>
<string name="gutenberg_native_preview_post" tools:ignore="UnusedResources">Preview post</string>
<string name="gutenberg_native_problem_displaying_block" tools:ignore="UnusedResources">Problem displaying block</string>
<string name="gutenberg_native_problem_displaying_block_tap_to_attempt_block_recovery" tools:ignore="UnusedResources">Problem displaying block. \nTap to attempt block recovery.</string>
<string name="gutenberg_native_problem_opening_the_audio" tools:ignore="UnusedResources">Problem opening the audio</string>
<string name="gutenberg_native_problem_opening_the_video" tools:ignore="UnusedResources">Problem opening the video</string>
<string name="gutenberg_native_remove_as_featured_image" tools:ignore="UnusedResources">Remove as Featured Image</string>
Expand Down
2 changes: 1 addition & 1 deletion bundle/ios/GutenbergNativeTranslations.swift
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ private func dummy() {
_ = NSLocalizedString("Post title. Empty", comment: "translators: accessibility text. empty post title.")
_ = NSLocalizedString("Preview page", comment: "")
_ = NSLocalizedString("Preview post", comment: "")
_ = NSLocalizedString("Problem displaying block", comment: "")
_ = NSLocalizedString("Problem displaying block. \nTap to attempt block recovery.", comment: "")
_ = NSLocalizedString("Problem opening the audio", comment: "")
_ = NSLocalizedString("Problem opening the video", comment: "")
_ = NSLocalizedString("Remove as Featured Image", comment: "")
Expand Down
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 44 files
+26 −9 docs/contributors/code/release.md
+ docs/contributors/code/workflow-dispatch-npm-banner.png
+ docs/contributors/code/workflow-dispatch-plugin-banner.png
+7 −5 lib/compat/wordpress-6.1/script-loader.php
+0 −1 package-lock.json
+3 −15 packages/block-editor/src/components/block-pattern-setup/index.js
+3 −1 packages/block-editor/src/components/block-pattern-setup/style.scss
+1 −1 packages/block-editor/src/store/reducer.js
+1 −1 packages/block-editor/src/store/selectors.js
+1 −1 packages/block-library/src/query/editor.scss
+4 −0 packages/blocks/CHANGELOG.md
+7 −1 packages/blocks/README.md
+0 −1 packages/blocks/package.json
+6 −8 packages/blocks/src/api/factory.js
+4 −8 packages/blocks/src/api/raw-handling/index.js
+4 −8 packages/blocks/src/api/raw-handling/paste-handler.js
+72 −22 packages/blocks/src/api/raw-handling/special-comment-converter.js
+38 −0 packages/blocks/src/api/raw-handling/test/special-comment-converter.js
+0 −11 packages/blocks/src/block-content-provider/README.md
+0 −66 packages/blocks/src/block-content-provider/index.js
+21 −0 packages/blocks/src/deprecated.js
+1 −1 packages/blocks/src/index.js
+14 −14 packages/components/CHANGELOG.md
+2 −0 packages/create-block/lib/check-system-requirements.js
+2 −1 packages/docgen/lib/index.js
+17 −0 packages/docgen/lib/is-symbol-ignore.js
+4 −0 packages/dom/src/dom/is-form-element.js
+2 −0 packages/e2e-test-utils-playwright/src/admin/index.ts
+14 −0 packages/e2e-test-utils-playwright/src/admin/set-option.ts
+5 −0 packages/e2e-test-utils-playwright/src/editor/publish-post.ts
+57 −0 packages/e2e-test-utils-playwright/src/request-utils/comments.ts
+5 −0 packages/e2e-test-utils-playwright/src/request-utils/index.ts
+18 −0 packages/e2e-test-utils-playwright/src/request-utils/user.ts
+0 −131 packages/e2e-tests/specs/editor/blocks/comments.test.js
+1 −1 packages/react-native-aztec/android/build.gradle
+1 −1 packages/react-native-aztec/package.json
+1 −1 packages/react-native-bridge/package.json
+1 −0 packages/react-native-editor/CHANGELOG.md
+10 −10 packages/react-native-editor/ios/Podfile.lock
+1 −1 packages/react-native-editor/package.json
+155 −0 test/e2e/specs/editor/blocks/comments.spec.js
+83 −0 test/e2e/specs/site-editor/writing-flow.spec.js
+5 −1 test/integration/fixtures/documents/classic-out.html
+5 −1 test/integration/fixtures/documents/nested-divs-out.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.78.1",
"version": "1.79.0",
"private": true,
"config": {
"jsfiles": "./*.js src/*.js src/**/*.js src/**/**/*.js",
Expand Down

0 comments on commit 6cc6926

Please sign in to comment.