Skip to content
This repository was archived by the owner on Jul 9, 2026. It is now read-only.
Merged
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
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 65 files
+1 −1 README.md
+31 −0 changelog.txt
+2 −2 docs/contributors/documentation/README.md
+1 −1 docs/explanations/architecture/key-concepts.md
+1 −1 docs/explanations/user-interface/block-design.md
+1 −1 docs/how-to-guides/README.md
+1 −1 docs/how-to-guides/block-tutorial/applying-styles-with-stylesheets.md
+1 −1 docs/how-to-guides/metabox.md
+1 −1 gutenberg.php
+2 −2 package-lock.json
+1 −1 package.json
+15 −47 packages/block-editor/src/components/block-lock/toolbar.js
+1 −2 packages/block-editor/src/components/block-toolbar/index.js
+8 −0 packages/dataviews/src/add-filter.js
+6 −0 packages/dataviews/src/filter-summary.js
+4 −1 packages/dataviews/src/filters.js
+1 −1 packages/dataviews/src/view-grid.js
+6 −0 packages/dataviews/src/view-table.js
+7 −3 packages/dependency-extraction-webpack-plugin/CHANGELOG.md
+125 −5 packages/dependency-extraction-webpack-plugin/README.md
+0 −2 packages/dependency-extraction-webpack-plugin/lib/.eslintrc.json
+146 −20 packages/dependency-extraction-webpack-plugin/lib/index.js
+1 −0 packages/dependency-extraction-webpack-plugin/lib/types.d.ts
+18 −2 packages/dependency-extraction-webpack-plugin/lib/util.js
+363 −0 packages/dependency-extraction-webpack-plugin/test/__snapshots__/build.js.snap
+92 −72 packages/dependency-extraction-webpack-plugin/test/build.js
+5 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/combine-assets/webpack.config.js
+13 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/cyclic-dependency-graph/a.js
+10 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/cyclic-dependency-graph/b.js
+8 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/cyclic-dependency-graph/index.js
+8 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/cyclic-dependency-graph/webpack.config.js
+13 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/cyclic-dynamic-dependency-graph/a.js
+10 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/cyclic-dynamic-dependency-graph/b.js
+9 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/cyclic-dynamic-dependency-graph/index.js
+8 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/cyclic-dynamic-dependency-graph/webpack.config.js
+9 −1 packages/dependency-extraction-webpack-plugin/test/fixtures/dynamic-import/webpack.config.js
+9 −1 packages/dependency-extraction-webpack-plugin/test/fixtures/function-output-filename/webpack.config.js
+9 −1 packages/dependency-extraction-webpack-plugin/test/fixtures/has-extension-suffix/webpack.config.js
+7 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/module-renames/index.js
+32 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/module-renames/webpack.config.js
+5 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/option-function-output-filename/webpack.config.js
+5 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/option-output-filename/webpack.config.js
+12 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/overrides/webpack.config.js
+9 −1 packages/dependency-extraction-webpack-plugin/test/fixtures/runtime-chunk-single/webpack.config.js
+7 −1 packages/dependency-extraction-webpack-plugin/test/fixtures/style-imports/webpack.config.js
+12 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/wordpress-interactivity/index.js
+8 −0 packages/dependency-extraction-webpack-plugin/test/fixtures/wordpress-interactivity/webpack.config.js
+9 −1 packages/dependency-extraction-webpack-plugin/test/fixtures/wordpress-require/webpack.config.js
+9 −1 packages/dependency-extraction-webpack-plugin/test/fixtures/wordpress/webpack.config.js
+3 −3 packages/edit-site/src/components/global-styles/font-library-modal/font-collection.js
+44 −24 packages/edit-site/src/components/global-styles/font-library-modal/index.js
+3 −3 packages/edit-site/src/components/global-styles/font-library-modal/installed-fonts.js
+2 −2 packages/edit-site/src/components/global-styles/font-library-modal/style.scss
+9 −3 packages/edit-site/src/components/global-styles/font-library-modal/tab-panel-layout.js
+56 −14 packages/edit-site/src/components/page-patterns/dataviews-patterns.js
+1 −1 ...ative-bridge/android/react-native-bridge/src/main/java/org/wordpress/mobile/WPAndroidGlue/GutenbergProps.kt
+4 −0 packages/react-native-editor/__device-tests__/gutenberg-editor-device-actions.test.js
+0 −63 packages/react-native-editor/__device-tests__/gutenberg-editor-heading-@canary.test.js
+0 −143 packages/react-native-editor/__device-tests__/gutenberg-editor-paragraph.test.js
+333 −0 packages/react-native-editor/__device-tests__/gutenberg-editor-writing-flow-@canary.test.js
+87 −21 packages/react-native-editor/__device-tests__/pages/editor-page.js
+7 −0 packages/react-native-editor/android/app/src/main/java/com/gutenberg/MainActivity.java
+4 −1 packages/react-native-editor/ios/GutenbergDemo/GutenbergViewController.swift
+13 −0 packages/rich-text/src/create.js
+6 −0 test/e2e/specs/editor/various/block-locking.spec.js