Skip to content

Commit

Permalink
Merge pull request #6043 from wordpress-mobile/version-toolkit/gutenb…
Browse files Browse the repository at this point in the history
…erg/rnmobile/add-outline-to-selected-social-block

[RNMobile] Add outline around selected Social Link block
  • Loading branch information
derekblank authored Aug 17, 2023
2 parents 9b42b6a + 993dd43 commit ad71418
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Unreleased
---
* [*] Add outline around selected Social Link block [https://github.com/WordPress/gutenberg/pull/53377]
* [**] Fixed images not rendering in Help section on iOS [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6067]
* [**] Fixes font customization not getting updated on iOS [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6036]

Expand Down
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 57 files
+389 −0 changelog.txt
+1 −1 gutenberg.php
+0 −0 lib/experimental/fonts/font-face/bc-layer/class-gutenberg-fonts-api-bc-layer.php
+0 −0 lib/experimental/fonts/font-face/bc-layer/class-wp-fonts-provider-local.php
+0 −0 lib/experimental/fonts/font-face/bc-layer/class-wp-fonts-provider.php
+0 −0 lib/experimental/fonts/font-face/bc-layer/class-wp-fonts-resolver.php
+0 −0 lib/experimental/fonts/font-face/bc-layer/class-wp-fonts-utils.php
+0 −0 lib/experimental/fonts/font-face/bc-layer/class-wp-fonts.php
+0 −0 lib/experimental/fonts/font-face/bc-layer/class-wp-web-fonts.php
+0 −0 lib/experimental/fonts/font-face/bc-layer/class-wp-webfonts-provider-local.php
+0 −0 lib/experimental/fonts/font-face/bc-layer/class-wp-webfonts-provider.php
+0 −0 lib/experimental/fonts/font-face/bc-layer/class-wp-webfonts-utils.php
+0 −0 lib/experimental/fonts/font-face/bc-layer/class-wp-webfonts.php
+0 −0 lib/experimental/fonts/font-face/bc-layer/webfonts-deprecations.php
+0 −0 lib/experimental/fonts/font-face/class-wp-font-face-resolver.php
+0 −0 lib/experimental/fonts/font-face/class-wp-font-face.php
+0 −0 lib/experimental/fonts/font-face/fonts.php
+0 −0 lib/experimental/fonts/fonts-library/class-wp-font-family-utils.php
+6 −6 lib/experimental/fonts/fonts-library/class-wp-font-family.php
+0 −0 lib/experimental/fonts/fonts-library/class-wp-fonts-library.php
+4 −4 lib/experimental/fonts/fonts-library/class-wp-rest-fonts-library-controller.php
+0 −0 lib/experimental/fonts/fonts-library/fonts-library.php
+20 −20 lib/load.php
+2 −2 package-lock.json
+1 −1 package.json
+2 −0 packages/block-editor/src/components/block-lock/menu-item.js
+3 −1 packages/block-editor/src/components/block-lock/toolbar.js
+1 −1 packages/block-editor/src/store/selectors.js
+1 −0 packages/block-library/src/list/edit.js
+1 −0 packages/block-library/src/navigation/edit/inner-blocks.js
+1 −0 packages/block-library/src/quote/edit.js
+6 −2 packages/components/src/alignment-matrix-control/test/index.tsx
+3 −0 packages/edit-site/src/components/canvas-spinner/style.scss
+55 −0 phpcs.xml.dist
+0 −340 phpunit/fonts-library/class-wp-font-family-test.php
+0 −52 phpunit/fonts-library/class-wp-fonts-library-test.php
+1 −1 phpunit/fonts/font-face/wp-font-face-testcase.php
+0 −0 phpunit/fonts/font-face/wp-font-face-tests-dataset.php
+0 −10 phpunit/fonts/font-face/wpFontFace/generateAndPrint-test.php
+0 −10 phpunit/fonts/font-face/wpFontFaceResolver/getFontsFromThemeJson-test.php
+0 −10 phpunit/fonts/font-face/wpPrintFontFaces-test.php
+33 −33 phpunit/fonts/fonts-library/class-wp-rest-fonts-library-controller-test.php
+62 −0 phpunit/fonts/fonts-library/wpFontFamily/__construct-test.php
+75 −0 phpunit/fonts/fonts-library/wpFontFamily/base.php
+94 −0 phpunit/fonts/fonts-library/wpFontFamily/getData-test.php
+67 −0 phpunit/fonts/fonts-library/wpFontFamily/getDataAsJson-test.php
+42 −0 phpunit/fonts/fonts-library/wpFontFamily/getFontPost-test.php
+78 −0 phpunit/fonts/fonts-library/wpFontFamily/hasFontFaces-test.php
+248 −0 phpunit/fonts/fonts-library/wpFontFamily/install-test.php
+194 −0 phpunit/fonts/fonts-library/wpFontFamily/uninstall-test.php
+64 −0 phpunit/fonts/fonts-library/wpFontFamilyUtils/getFilenameFromFontFace-test.php
+61 −0 phpunit/fonts/fonts-library/wpFontFamilyUtils/hasFontMimeType-test.php
+51 −137 phpunit/fonts/fonts-library/wpFontFamilyUtils/mergeFontsData-test.php
+18 −0 phpunit/fonts/fonts-library/wpFontsLibrary/getFontsDir-test.php
+30 −0 phpunit/fonts/fonts-library/wpFontsLibrary/setUploadDir-test.php
+171 −0 test/php/gutenberg-coding-standards/Gutenberg/Sniffs/NamingConventions/ValidBlockLibraryFunctionNameSniff.php
+1 −0 test/php/gutenberg-coding-standards/Gutenberg/ruleset.xml

0 comments on commit ad71418

Please sign in to comment.