Gutenberg - Version 14.0.3

Version Description

Download this release

Release Info

Developer gutenbergplugin
Plugin Icon 128x128 Gutenberg
Version 14.0.3
Comparing to
See all releases

Code changes from version 14.0.2 to 14.0.3

changelog.txt CHANGED
@@ -1,28 +1,43 @@
1
  == Changelog ==
2
 
3
- = 14.0.2 =
4
 
5
-
6
-
7
  ## Changelog
8
 
9
  ### Bug Fixes
10
 
11
- - Layout: Fix undefined index notice when attempting to check layout type. ([43756](https://github.com/WordPress/gutenberg/pull/43756))
12
- - List block: Prevent error upon pasting when list is empty. ([43761](https://github.com/WordPress/gutenberg/pull/43761))
13
-
14
-
15
- ## First time contributors
16
-
17
- The following PRs were merged by first time contributors:
18
-
19
-
20
 
21
  ## Contributors
22
 
23
  The following contributors merged PRs in this release:
24
 
25
- @andrewserong @oandregal
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
 
27
 
28
  = 14.0.1 =
1
  == Changelog ==
2
 
3
+ = 14.0.3 =
4
 
 
 
5
  ## Changelog
6
 
7
  ### Bug Fixes
8
 
9
+ - Fix GitHub Actions failure due to duplicate functions. ([44052](https://github.com/WordPress/gutenberg/pull/44052))
 
 
 
 
 
 
 
 
10
 
11
  ## Contributors
12
 
13
  The following contributors merged PRs in this release:
14
 
15
+ @t-hamano
16
+
17
+
18
+ = 14.0.2 =
19
+
20
+
21
+
22
+ ## Changelog
23
+
24
+ ### Bug Fixes
25
+
26
+ - Layout: Fix undefined index notice when attempting to check layout type. ([43756](https://github.com/WordPress/gutenberg/pull/43756))
27
+ - List block: Prevent error upon pasting when list is empty. ([43761](https://github.com/WordPress/gutenberg/pull/43761))
28
+
29
+
30
+ ## First time contributors
31
+
32
+ The following PRs were merged by first time contributors:
33
+
34
+
35
+
36
+ ## Contributors
37
+
38
+ The following contributors merged PRs in this release:
39
+
40
+ @andrewserong @oandregal
41
 
42
 
43
  = 14.0.1 =
gutenberg.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Printing since 1440. This is the development plugin for the new block editor in core.
6
  * Requires at least: 5.9
7
  * Requires PHP: 5.6
8
- * Version: 14.0.2
9
  * Author: Gutenberg Team
10
  * Text Domain: gutenberg
11
  *
@@ -13,8 +13,8 @@
13
  */
14
 
15
  ### BEGIN AUTO-GENERATED DEFINES
16
- define( 'GUTENBERG_VERSION', '14.0.2' );
17
- define( 'GUTENBERG_GIT_COMMIT', 'c0ec38ec5555ad4e9793d37157cc39a907fe8b6c' );
18
  ### END AUTO-GENERATED DEFINES
19
 
20
  gutenberg_pre_init();
5
  * Description: Printing since 1440. This is the development plugin for the new block editor in core.
6
  * Requires at least: 5.9
7
  * Requires PHP: 5.6
8
+ * Version: 14.0.3
9
  * Author: Gutenberg Team
10
  * Text Domain: gutenberg
11
  *
13
  */
14
 
15
  ### BEGIN AUTO-GENERATED DEFINES
16
+ define( 'GUTENBERG_VERSION', '14.0.3' );
17
+ define( 'GUTENBERG_GIT_COMMIT', 'c2cff36165664d463d62567dd60952fb6af18789' );
18
  ### END AUTO-GENERATED DEFINES
19
 
20
  gutenberg_pre_init();
lib/compat/wordpress-6.1/get-global-styles-and-settings.php CHANGED
@@ -8,7 +8,7 @@
8
  /**
9
  * Adds global style rules to the inline style for each block.
10
  */
11
- function wp_add_global_styles_for_blocks() {
12
  $tree = WP_Theme_JSON_Resolver_Gutenberg::get_merged_data();
13
  $block_nodes = $tree->get_styles_block_nodes();
14
  foreach ( $block_nodes as $metadata ) {
8
  /**
9
  * Adds global style rules to the inline style for each block.
10
  */
11
+ function gutenberg_add_global_styles_for_blocks() {
12
  $tree = WP_Theme_JSON_Resolver_Gutenberg::get_merged_data();
13
  $block_nodes = $tree->get_styles_block_nodes();
14
  foreach ( $block_nodes as $metadata ) {
lib/compat/wordpress-6.1/script-loader.php CHANGED
@@ -156,7 +156,7 @@ function gutenberg_enqueue_global_styles() {
156
  wp_enqueue_style( 'global-styles' );
157
 
158
  // add each block as an inline css.
159
- wp_add_global_styles_for_blocks();
160
  }
161
 
162
  remove_action( 'wp_enqueue_scripts', 'wp_enqueue_global_styles' );
156
  wp_enqueue_style( 'global-styles' );
157
 
158
  // add each block as an inline css.
159
+ gutenberg_add_global_styles_for_blocks();
160
  }
161
 
162
  remove_action( 'wp_enqueue_scripts', 'wp_enqueue_global_styles' );
readme.txt CHANGED
@@ -1,7 +1,7 @@
1
  === Gutenberg ===
2
  Contributors: matveb, joen, karmatosed
3
  Tested up to: 6.0
4
- Stable tag: 14.0.1
5
  License: GPLv2 or later
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
 
1
  === Gutenberg ===
2
  Contributors: matveb, joen, karmatosed
3
  Tested up to: 6.0
4
+ Stable tag: 14.0.2
5
  License: GPLv2 or later
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7