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

Merge release 1.58.3 to develop #3832

Merged
merged 12 commits into from
Aug 12, 2021
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ commands:
name: Restore NPM Cache
keys:
- npm-i18n-v4-cache-v{{ .Environment.CACHE_TRIGGER_VERSION }}-job-{{ .Environment.CIRCLE_JOB }}-{{ checksum "gutenberg/package-lock.json" }}
- npm-i18n-v4-cache-v{{ .Environment.CACHE_TRIGGER_VERSION }}-job-{{ .Environment.CIRCLE_JOB }}-
- run:
name: NPM Install Full
command: |
Expand Down
4 changes: 4 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Unreleased
* [*] [Android] Fix UBE's inaccessible "more" toolbar item. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3771]
* [*] Image block: Add a "featured" banner and ability to set or remove an image as featured. (iOS only) [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3449]

1.58.3
------
* [*] Fix crash when pasting OBJECT REPLACEMENT CHARACTER special character (Rich text - toTree - Add check in replacements before accessing its type) [https://github.com/WordPress/gutenberg/pull/34020]

1.58.2
------
* [*] Fix issue with text input in alt text settings [https://github.com/wordpress-mobile/gutenberg-mobile/pull/3784]
Expand Down
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 47 files
+10 −3 bin/plugin/commands/performance.js
+5 −1 bin/plugin/lib/utils.js
+211 −0 changelog.txt
+1 −1 gutenberg.php
+1 −1 lib/block-supports/dimensions.php
+2 −2 lib/global-styles.php
+25 −1 package-lock.json
+1 −1 package.json
+4 −0 packages/base-styles/CHANGELOG.md
+6 −152 packages/base-styles/_mixins.scss
+17 −0 packages/block-editor/src/components/rich-text/use-paste-handler.js
+2 −12 packages/block-editor/src/store/selectors.js
+4 −0 packages/block-library/CHANGELOG.md
+6 −0 packages/block-library/src/block/index.js
+3 −3 packages/block-library/src/common.scss
+3 −3 packages/block-library/src/editor.scss
+4 −0 packages/block-library/src/latest-comments/edit.js
+1 −1 packages/block-library/src/search/index.php
+1 −0 packages/block-library/src/site-tagline/block.json
+2 −2 packages/block-library/src/template-part/index.js
+7 −0 packages/components/src/custom-select-control/README.md
+8 −0 packages/components/src/custom-select-control/index.js
+8 −1 packages/components/src/font-size-picker/index.js
+1 −0 packages/components/src/mobile/global-styles-context/utils.native.js
+2 −9 packages/core-data/src/queried-data/selectors.js
+2 −0 packages/e2e-test-utils/package.json
+8 −0 packages/e2e-test-utils/src/index.js
+54 −0 packages/e2e-test-utils/src/plugins.js
+116 −0 packages/e2e-test-utils/src/rest-api.js
+18 −21 packages/e2e-test-utils/src/widgets.js
+15 −0 packages/e2e-tests/jest.performance.config.js
+0 −11 packages/e2e-tests/plugins/classic-widgets.php
+2 −2 packages/e2e-tests/specs/widgets/customizing-widgets.test.js
+24 −67 packages/e2e-tests/specs/widgets/editing-widgets.test.js
+64 −54 packages/edit-post/src/components/sidebar/template/actions.js
+31 −29 packages/edit-post/src/store/actions.js
+0 −2 packages/editor/src/components/local-autosave-monitor/index.js
+2 −0 packages/icons/src/index.js
+12 −0 packages/icons/src/library/symbol-filled.js
+12 −0 packages/icons/src/library/symbol.js
+3 −0 packages/react-native-editor/CHANGELOG.md
+2 −0 packages/rich-text/src/component/index.js
+40 −0 packages/rich-text/src/component/use-space.js
+1 −1 packages/rich-text/src/to-tree.js
+28 −0 phpunit/global-styles-test.php
+1 −1 readme.txt
+4 −1 tools/webpack/shared.js