Skip to content

Commit

Permalink
Bump gutenberg from e63b8b8 to f130e99
Browse files Browse the repository at this point in the history
Bumps [gutenberg](https://github.com/WordPress/gutenberg) from `e63b8b8` to `f130e99`.
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Commits](WordPress/gutenberg@e63b8b8...f130e99)

---
updated-dependencies:
- dependency-name: gutenberg
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Jul 22, 2024
1 parent 3fd319e commit 1b8b963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 84 files
+10 −7 .github/workflows/sync-backport-changelog.yml
+3 −0 backport-changelog/6.7/7020.md
+1 −1 docs/reference-guides/interactivity-api/api-reference.md
+40 −0 lib/compat/wordpress-6.7/block-bindings.php
+820 −0 lib/compat/wordpress-6.7/class-gutenberg-token-map-6-7.php
+187 −0 lib/compat/wordpress-6.7/html-api/class-gutenberg-html-active-formatting-elements-6-7.php
+116 −0 lib/compat/wordpress-6.7/html-api/class-gutenberg-html-attribute-token-6-7.php
+461 −0 lib/compat/wordpress-6.7/html-api/class-gutenberg-html-decoder-6-7.php
+598 −0 lib/compat/wordpress-6.7/html-api/class-gutenberg-html-open-elements-6-7.php
+3,402 −0 lib/compat/wordpress-6.7/html-api/class-gutenberg-html-processor-6-7.php
+417 −0 lib/compat/wordpress-6.7/html-api/class-gutenberg-html-processor-state-6-7.php
+56 −0 lib/compat/wordpress-6.7/html-api/class-gutenberg-html-span-6-7.php
+82 −0 lib/compat/wordpress-6.7/html-api/class-gutenberg-html-stack-event-6-7.php
+3,521 −0 lib/compat/wordpress-6.7/html-api/class-gutenberg-html-tag-processor-6-7.php
+64 −0 lib/compat/wordpress-6.7/html-api/class-gutenberg-html-text-replacement-6-7.php
+106 −0 lib/compat/wordpress-6.7/html-api/class-gutenberg-html-token-6-7.php
+115 −0 lib/compat/wordpress-6.7/html-api/class-gutenberg-html-unsupported-exception-6-7.php
+3 −0 lib/experimental/editor-settings.php
+13 −1 lib/experiments-page.php
+17 −1 lib/load.php
+5 −5 package-lock.json
+7 −0 packages/block-editor/src/components/global-styles/style.scss
+12 −3 packages/block-editor/src/components/height-control/index.js
+6 −0 packages/block-editor/src/components/inserter/style.scss
+2 −2 packages/block-library/src/button/index.php
+31 −6 packages/block-library/src/template-part/edit/placeholder.js
+18 −4 packages/block-library/src/template-part/edit/title-modal.js
+18 −5 packages/blocks/src/api/registration.js
+17 −0 packages/blocks/src/api/test/registration.js
+14 −0 packages/blocks/src/store/private-actions.js
+10 −1 packages/blocks/src/store/reducer.js
+5 −0 packages/components/CHANGELOG.md
+1 −1 packages/components/src/base-control/README.md
+1 −1 packages/components/src/base-control/types.ts
+11 −4 packages/components/src/range-control/index.tsx
+3 −1 packages/compose/src/hooks/use-viewport-match/index.js
+2 −0 packages/dataviews/src/components/dataviews-context/index.ts
+2 −0 packages/dataviews/src/components/dataviews-layout/index.tsx
+27 −1 packages/dataviews/src/components/dataviews/index.tsx
+136 −0 packages/dataviews/src/layouts/grid/density-picker.tsx
+5 −0 packages/dataviews/src/layouts/grid/index.tsx
+24 −12 packages/dataviews/src/layouts/grid/style.scss
+1 −1 packages/dataviews/src/layouts/table/index.tsx
+1 −0 packages/dataviews/src/types.ts
+13 −3 packages/e2e-tests/plugins/block-bindings.php
+3 −11 packages/edit-post/src/components/back-button/fullscreen-mode-close.js
+0 −4 packages/edit-post/src/components/back-button/style.scss
+8 −1 packages/edit-post/src/components/layout/index.js
+0 −5 packages/edit-post/src/components/layout/style.scss
+2 −0 packages/edit-post/src/index.js
+23 −4 packages/edit-site/src/components/global-styles/font-families.js
+11 −0 packages/edit-site/src/components/layout/index.js
+10 −2 packages/edit-site/src/components/layout/router.js
+86 −0 packages/edit-site/src/components/post-edit/index.js
+9 −0 packages/edit-site/src/components/post-edit/style.scss
+345 −0 packages/edit-site/src/components/post-fields/index.js
+36 −331 packages/edit-site/src/components/post-list/index.js
+1 −0 packages/edit-site/src/components/post-list/style.scss
+6 −2 packages/edit-site/src/index.js
+1 −0 packages/edit-site/src/style.scss
+2 −1 packages/editor/package.json
+31 −1 packages/editor/src/bindings/api.js
+0 −2 packages/editor/src/bindings/pattern-overrides.js
+0 −2 packages/editor/src/bindings/post-meta.js
+1 −3 packages/editor/src/components/collapsible-block-toolbar/index.js
+0 −3 packages/editor/src/components/collapsible-block-toolbar/style.scss
+1 −5 packages/editor/src/components/document-bar/style.scss
+4 −4 packages/editor/src/components/document-tools/style.scss
+4 −0 packages/editor/src/components/editor-interface/style.scss
+6 −6 packages/editor/src/components/header/back-button.js
+26 −25 packages/editor/src/components/header/index.js
+64 −21 packages/editor/src/components/header/style.scss
+1 −1 packages/editor/src/components/post-card-panel/index.js
+2 −2 packages/editor/src/components/post-comments/index.js
+5 −3 packages/editor/src/components/post-discussion/panel.js
+2 −5 packages/editor/src/components/sidebar/index.js
+2 −2 packages/editor/src/components/site-discussion/index.js
+3 −2 packages/editor/src/components/template-content-panel/index.js
+1 −1 packages/editor/src/components/visual-editor/index.js
+0 −1 packages/editor/src/components/visual-editor/style.scss
+1 −1 packages/editor/src/components/visual-editor/use-select-nearest-editable-block.js
+5 −1 packages/editor/src/private-apis.js
+38 −3 packages/editor/src/utils/media-upload/index.js
+29 −0 test/e2e/specs/editor/various/block-bindings.spec.js

0 comments on commit 1b8b963

Please sign in to comment.